From 42efbd03b45196537c9c589a7cf45a7859d755fc Mon Sep 17 00:00:00 2001 From: Ilia Rostovtsev Date: Mon, 27 Nov 2017 15:04:05 +0300 Subject: [PATCH] Add real-time monitoring #896 --- authentic-lib.pm | 7 +- extensions/init.pm | 53 +++++++++++ extensions/stats/stats.cgi | 62 +++++++++++++ extensions/stats/stats.min.css | 0 extensions/stats/stats.min.js | 7 ++ extensions/stats/stats.src.css | 0 extensions/stats/stats.src.js | 91 +++++++++++++++++++ lang/ca.UTF-8 | 6 ++ lang/cz.UTF-8 | 6 ++ lang/da.UTF-8 | 6 ++ lang/de.UTF-8 | 6 ++ lang/en.UTF-8 | 6 ++ lang/es.UTF-8 | 6 ++ lang/fr.UTF-8 | 6 ++ lang/id.UTF-8 | 6 ++ lang/it.UTF-8 | 6 ++ lang/nl.UTF-8 | 6 ++ lang/no.UTF-8 | 6 ++ lang/pl.UTF-8 | 6 ++ lang/pt.UTF-8 | 6 ++ lang/ro_RO.UTF-8 | 6 ++ lang/ru.UTF-8 | 6 ++ lang/sq.UTF-8 | 6 ++ lang/sv.UTF-8 | 6 ++ lang/zh_CN.UTF-8 | 6 ++ unauthenticated/css/bundle.min.css | 2 +- .../css/palettes/nightrider.min.css | 2 +- unauthenticated/js/bundle.min.js | 6 +- 28 files changed, 332 insertions(+), 6 deletions(-) create mode 100644 extensions/init.pm create mode 100755 extensions/stats/stats.cgi create mode 100644 extensions/stats/stats.min.css create mode 100644 extensions/stats/stats.min.js create mode 100644 extensions/stats/stats.src.css create mode 100644 extensions/stats/stats.src.js diff --git a/authentic-lib.pm b/authentic-lib.pm index 373a91a2d..325ab3572 100644 --- a/authentic-lib.pm +++ b/authentic-lib.pm @@ -2137,6 +2137,10 @@ sub _settings '__', _settings('fa', 'info-circle', &Atext('settings_right_sysinfo_page_options_title')), + 'settings_sysinfo_real_time_status', + 'true', + 'settings_sysinfo_real_time_timeout', + '500', 'settings_sysinfo_easypie_charts', 'true', 'settings_sysinfo_easypie_charts_size', @@ -2324,6 +2328,7 @@ sub _settings $k eq 'settings_hotkey_sysinfo' || $k eq 'settings_hotkey_favorites' || $k eq 'settings_side_slider_background_refresh_time' || + $k eq 'settings_sysinfo_real_time_timeout' || $k eq 'settings_sysinfo_easypie_charts_size' || $k eq 'settings_sysinfo_easypie_charts_width' || $k eq 'settings_sysinfo_easypie_charts_scale') @@ -2341,7 +2346,7 @@ sub _settings $k eq 'settings_sysinfo_easypie_charts_width' || $k eq 'settings_sysinfo_easypie_charts_scale') ? ' width: 36px; ' : - ($k eq 'settings_sysinfo_easypie_charts_size' ? ' width: 48px; ' : ' width: 95%; '); + (($k eq 'settings_sysinfo_real_time_timeout' || $k eq 'settings_sysinfo_easypie_charts_size') ? ' width: 48px; ' : ' width: 95%; '); my $max_length = ($k =~ /settings_hotkey_toggle_key_/ || $k eq 'settings_hotkey_focus_search' || diff --git a/extensions/init.pm b/extensions/init.pm new file mode 100644 index 000000000..6b4dd1e4d --- /dev/null +++ b/extensions/init.pm @@ -0,0 +1,53 @@ +# +# Authentic Theme (https://github.com/qooob/authentic-theme) +# Copyright Ilia Rostovtsev +# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE) +# + +BEGIN {push(@INC, "..");} +use WebminCore; +use lib (dirname(__FILE__) . '/../lib'); +use JSON qw( decode_json ); + +ReadParse(); + +our %config = (); +read_file_cached(get_env('webmin_config') . "/config", \%config); + +sub get_env +{ + my ($key) = @_; + return $ENV{ uc($key) }; +} + +sub get_env_local_path +{ + my ($system, $path) = @_; + if ($system eq 'freebsd') { + return "/usr/local/$path/"; + } + +} + +sub enforce_command +{ + my ($system, $command) = @_; + if (!has_command($command)) { + if ($system eq 'freebsd') { + backquote_logged("pkg install -y $command 2>&1 new->latin1->encode(@_); +} + +sub print_json +{ + print "Content-type: text/html\n\n"; + print get_json(@_); +} + +1; diff --git a/extensions/stats/stats.cgi b/extensions/stats/stats.cgi new file mode 100755 index 000000000..efb84ac70 --- /dev/null +++ b/extensions/stats/stats.cgi @@ -0,0 +1,62 @@ +# +# Authentic Theme (https://github.com/qooob/authentic-theme) +# Copyright Ilia Rostovtsev +# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE) +# + +use File::Basename; +require(dirname(__FILE__) . '/../init.pm'); + +my %data; +if ($in{'xhr-stats'} =~ /[[:alpha:]]/) { + my $target = $in{'xhr-stats'}; + if ($target eq 'general') { + my $os = $config{'os_type'}; + if ($os =~ /-linux$/ || $os eq 'freebsd') { + + # CPU stats + my $cpu = backquote_command("vmstat 1 2 2>/dev/null"); + if (!$?) { + my @lines = split(/\r?\n/, $cpu); + my @w = split(/\s+/, $lines[$#lines]); + !length($w[0]) && shift(@w); + if ($os =~ /-linux$/) { + if ($w[8] =~ /^\d+$/ && $w[9] =~ /^\d+$/) { + $data{'io'} = [$w[8], $w[9]]; + $data{'cpu'} = int($w[12]); + } + } else { + $data{'cpu'} = int($w[16]); + } + } + + # Memory stats + my $memory = 'free'; + if ($os eq 'freebsd') { + $memory .= 'color'; + enforce_command($os, $memory); + $memory = get_env_local_path($os, 'bin') . $memory . ' -o'; + } + + my $memory = backquote_command($memory); + if (!$?) { + my @lines = split(/\s+/, $memory); + if ($lines[8] =~ /^\d+$/ && $lines[9] =~ /^\d+$/) { + $data{'mem'} = + [($lines[9] / $lines[8]) * 100, [nice_size(int($lines[8]* 1024 )), nice_size(int($lines[9]* 1024 ))]]; + } + if ($lines[15] =~ /^\d+$/ && $lines[16] =~ /^\d+$/) { + $data{'virt'} = + [($lines[16] / $lines[15]) * 100, [nice_size(int($lines[15]* 1024 ) ), nice_size(int($lines[16]* 1024 ))]]; + } + } + + # Load average + my $load_average = backquote_command("uptime 2>&1"); + $data{'cpu'} = [$data{'cpu'}, + ($load_average =~ /average(s)?:\s+([0-9\.]+),?\s+([0-9\.]+),?\s+([0-9\.]+)/i ? [$2, $3, $4] : [])]; + + } + } +} +print_json(\%data); diff --git a/extensions/stats/stats.min.css b/extensions/stats/stats.min.css new file mode 100644 index 000000000..e69de29bb diff --git a/extensions/stats/stats.min.js b/extensions/stats/stats.min.js new file mode 100644 index 000000000..261b6d981 --- /dev/null +++ b/extensions/stats/stats.min.js @@ -0,0 +1,7 @@ +/*! + * Authentic Theme (https://github.com/qooob/authentic-theme) + * Copyright Ilia Rostovtsev + * Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE) + */ +"use strict";var _slicedToArray=function(){function sliceIterator(arr,i){var _arr=[];var _n=!0;var _d=!1;var _e=undefined;try{for(var _i=arr[Symbol.iterator](),_s;!(_n=(_s=_i.next()).done);_n=!0){_arr.push(_s.value);if(i&&_arr.length===i)break}}catch(err){_d=!0;_e=err}finally{try{if(!_n&&_i["return"])_i["return"]()}finally{if(_d)throw _e}}return _arr}return function(arr,i){if(Array.isArray(arr)){return arr}else if(Symbol.iterator in Object(arr)){return sliceIterator(arr,i)}else{throw new TypeError("Invalid attempt to destructure non-iterable instance")}}}();var stats={general:{timeout:500,stopped:1,call:{},query:function query(){var _this=this;this.stopped&&function(){_this.stopped=0;_this.call={};_this.call=$.ajax({context:_this,url:v___server_extensions_path+"/stats/stats.cgi?xhr-stats=general",success:function success(data){var _this2=this;setTimeout(function(){_this2.render(data)},this.timeout);this.stopped=1},dataType:"json"})}()},render:function render(data){Object.entries(data).map(function(_ref){var _ref2=_slicedToArray(_ref,2),target=_ref2[0],data=_ref2[1];var v=parseInt(data),$pc=$('#system-status .piechart[data-charts*="'+target+'"]'),$lc=$('.info-container .'+target+'_percent');if(Number.isInteger(v)){if($pc.length){$pc.data('easyPieChart').update(v)} +if($lc.length){$lc.find('.bar').attr('style','width:'+v+'%');var $dp=$lc.find('.description'),$tx=$dp.text().split(/\s+/),$ts=void 0;$.each($tx,function(id,vd){if(vd.includes(':')){$tx[id+1]=v+'%';$ts=id}});$dp.text($tx.join(' ')).attr('title',$tx.splice($ts+2,Infinity).join(' ').slice(1,-1))}}});this.query()},kill:function kill(){var _this3=this;var abort=this.call.abort;typeof abort==="function"&&(abort.call(),this.stopped=0);setTimeout(function(){_this3.stopped=1,_this3.call={}},this.timeout+2)}}} diff --git a/extensions/stats/stats.src.css b/extensions/stats/stats.src.css new file mode 100644 index 000000000..e69de29bb diff --git a/extensions/stats/stats.src.js b/extensions/stats/stats.src.js new file mode 100644 index 000000000..e95d27f5e --- /dev/null +++ b/extensions/stats/stats.src.js @@ -0,0 +1,91 @@ +/*! + * Authentic Theme (https://github.com/qooob/authentic-theme) + * Copyright Ilia Rostovtsev + * Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE) + */ + +/* jshint esversion: 6 */ +/* jshint jquery: true */ + +// Register statistics object +const stats = { + general: { + timeout: 500, + stopped: 1, + call: {}, + + // Get data + query: function() { + + // Repeat right after success + this.stopped && (() => { + this.stopped = 0; + this.call = {}; + + this.call = $.ajax({ + context: this, + url: v___server_extensions_path + "/stats/stats.cgi?xhr-stats=general", + success: function(data) { + + // Take half a second delay, render and restart + setTimeout(() => { + this.render(data); + }, this.timeout); + + this.stopped = 1; + }, + dataType: "json", + }) + })(); + }, + + // Display changes + render: function(data) { + + // Iterate through response + Object.entries(data).map(([target, data]) => { + let v = parseInt(data), + $pc = $('#system-status .piechart[data-charts*="' + target + '"]'), + $lc = $('.info-container .' + target + '_percent'); + + if (Number.isInteger(v)) { + + // Update pie-charts + if ($pc.length) { + $pc.data('easyPieChart').update(v); + } + + // Update line-charts + if ($lc.length) { + $lc.find('.bar').attr('style', 'width:' + v + '%'); + + // Update line-charts' text + let $dp = $lc.find('.description'), + $tx = $dp.text().split(/\s+/), + $ts; + + $.each($tx, function(id, vd) { + if (vd.includes(':')) { + $tx[id + 1] = (v + '%'); + $ts = id; + } + }) + $dp.text($tx.join(' ')).attr('title', $tx.splice($ts + 2, Infinity).join(' ').slice(1, -1)); + } + } + }) + this.query(); + }, + + // Stop querying + kill: function() { + let abort = this.call.abort; + + typeof abort === "function" && (abort.call(), this.stopped = 0); + + setTimeout(() => { + this.stopped = 1, this.call = {}; + }, this.timeout + 2); + } + } +} diff --git a/lang/ca.UTF-8 b/lang/ca.UTF-8 index f9dfa8aaa..1aa4d2b34 100644 --- a/lang/ca.UTF-8 +++ b/lang/ca.UTF-8 @@ -753,3 +753,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/cz.UTF-8 b/lang/cz.UTF-8 index 282880f8a..3b5590bfc 100644 --- a/lang/cz.UTF-8 +++ b/lang/cz.UTF-8 @@ -753,3 +753,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/da.UTF-8 b/lang/da.UTF-8 index 132a9139c..3705ebb89 100644 --- a/lang/da.UTF-8 +++ b/lang/da.UTF-8 @@ -753,3 +753,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/de.UTF-8 b/lang/de.UTF-8 index 62dc8cd0c..1d3fd7542 100644 --- a/lang/de.UTF-8 +++ b/lang/de.UTF-8 @@ -745,3 +745,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/en.UTF-8 b/lang/en.UTF-8 index f18a78a19..c34d620e8 100644 --- a/lang/en.UTF-8 +++ b/lang/en.UTF-8 @@ -750,3 +750,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/es.UTF-8 b/lang/es.UTF-8 index cf331dc77..9ab53dd7a 100644 --- a/lang/es.UTF-8 +++ b/lang/es.UTF-8 @@ -753,3 +753,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/fr.UTF-8 b/lang/fr.UTF-8 index 699a81a08..172794346 100644 --- a/lang/fr.UTF-8 +++ b/lang/fr.UTF-8 @@ -753,3 +753,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/id.UTF-8 b/lang/id.UTF-8 index d2a56855c..4033d5531 100644 --- a/lang/id.UTF-8 +++ b/lang/id.UTF-8 @@ -755,3 +755,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/it.UTF-8 b/lang/it.UTF-8 index 2ccf2fc06..27bd17645 100644 --- a/lang/it.UTF-8 +++ b/lang/it.UTF-8 @@ -753,3 +753,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/nl.UTF-8 b/lang/nl.UTF-8 index 0194e3834..9d3d5b626 100644 --- a/lang/nl.UTF-8 +++ b/lang/nl.UTF-8 @@ -753,3 +753,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/no.UTF-8 b/lang/no.UTF-8 index 0122349ce..7623777a8 100644 --- a/lang/no.UTF-8 +++ b/lang/no.UTF-8 @@ -610,3 +610,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/pl.UTF-8 b/lang/pl.UTF-8 index 760da5985..36df2f7df 100644 --- a/lang/pl.UTF-8 +++ b/lang/pl.UTF-8 @@ -753,3 +753,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/pt.UTF-8 b/lang/pt.UTF-8 index e97034603..3cdfc4d48 100644 --- a/lang/pt.UTF-8 +++ b/lang/pt.UTF-8 @@ -753,3 +753,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/ro_RO.UTF-8 b/lang/ro_RO.UTF-8 index 1ec741691..277a87226 100644 --- a/lang/ro_RO.UTF-8 +++ b/lang/ro_RO.UTF-8 @@ -751,3 +751,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/ru.UTF-8 b/lang/ru.UTF-8 index 9742bfc29..aadb4dea9 100644 --- a/lang/ru.UTF-8 +++ b/lang/ru.UTF-8 @@ -756,3 +756,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/sq.UTF-8 b/lang/sq.UTF-8 index 21f43c461..3b729a276 100644 --- a/lang/sq.UTF-8 +++ b/lang/sq.UTF-8 @@ -764,3 +764,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/sv.UTF-8 b/lang/sv.UTF-8 index 7fd20934e..afc5546bd 100644 --- a/lang/sv.UTF-8 +++ b/lang/sv.UTF-8 @@ -750,3 +750,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/lang/zh_CN.UTF-8 b/lang/zh_CN.UTF-8 index e848c2d48..1f99898a7 100644 --- a/lang/zh_CN.UTF-8 +++ b/lang/zh_CN.UTF-8 @@ -750,3 +750,9 @@ theme_xhred_signing_in=Signing in theme_xhred_signing_success=Successfully signed in! theme_xhred_session_failed_password=Wrong password, please try again. theme_xhred_global_reauthenticate=Reauthenticate + + +#19.04 +settings_sysinfo_real_time_status=Enable real-time monitoring +settings_sysinfo_real_time_timeout=Interval for performing update +settings_sysinfo_real_time_timeout_description=Set desired interval for updating monitors in background. The value meant to be in milliseconds. Keep this value as low as possible to prevent loss of short-term data. diff --git a/unauthenticated/css/bundle.min.css b/unauthenticated/css/bundle.min.css index d65931bd3..45f968d21 100644 --- a/unauthenticated/css/bundle.min.css +++ b/unauthenticated/css/bundle.min.css @@ -31,4 +31,4 @@ * Authentic Theme (https://github.com/qooob/authentic-theme) * Copyright Ilia Rostovtsev * Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE) - */[class^='wbm-']:before,[class*=' wbm-']:before{font-family:'Authentic' !important;font-size:19px;font-weight:normal !important;font-style:normal !important;font-variant:normal !important;line-height:1;text-transform:none !important;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class*='wbm-cloudmin']:before{font-size:21px}[class*='wbm-webmin']:before{font-size:18px}.fa-1_25x{font-size:1.28em !important;vertical-align:-7% !important}.fa-1_50x{font-size:1.50em !important;vertical-align:-5% !important}.wbm-virtualmin-circle:before{content:'\f08d'}.wbm-virtualmin:before{content:'\f08c'}.wbm-cloudmin:before{content:'\f08b'}.wbm-webmin:before{content:'\f08a'}.wbm-sm{display:inline-block;margin-top:5px;margin-bottom:2px;margin-left:-4px;padding:0}.wbm-sm+div{margin-top:-5px}#collapse{padding-right:15px}#content.__page{position:relative;overflow:auto;height:100%;-webkit-overflow-scrolling:touch}#content.__page.progressing{overflow:hidden}.container-fluid>.panel>.panel-body{overflow:visible}iframe{overflow-y:auto;width:100%;height:99.8%;border:0;-webkit-overflow-scrolling:touch}b,strong{font-weight:500}.capitalize{text-transform:capitalize}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:normal}.table-responsive{overflow-x:initial}html[data-script-name*='virtual-server/wizard.cgi'] .table-responsive>.table>tbody>tr>td{white-space:normal}.table[data-class='no-inner-formatting'] table{border:0 !important}#hiddenopener_docs,.ui_value label{margin-right:5px}#popup>form table tr td input[name='file']{width:99% !important}#popup>form table tr td input[name='pc']{width:170px !important}#popup>.ui_form>.table-responsive table tr td.col_label button,#popup>.ui_form>.table-responsive table tr td.col_value input{margin-top:3px;margin-left:6px}#popup{padding:10px 10px !important}#popup>.ui_form>.table-responsive table tr td.col_value input{width:95% !important;min-width:95% !important;margin-right:6px !important}#popup>form center input[name='size']{min-width:178px}#sidebar{position:fixed;top:0;overflow:hidden;height:100%;min-height:100%;color:#c7d2e6 !important;background:#386386;-webkit-box-shadow:0 4px 4px rgba(0,0,0,.15);box-shadow:0 4px 4px rgba(0,0,0,.15)}#sidebar form{margin:10px}#sidebar form>select{margin-top:0}#sidebar li:not(.menu-title):not(.menu-container):not(.user-html-string){position:relative;list-style:none;color:#aaa;border-top:0;border-right:0;border-left:0;text-shadow:1px 1px 0 rgba(0,50,90,.2)}#sidebar li:not(.menu-container):not(.sub-wrapper)+ul{margin-top:0}#sidebar li:not(.menu-container):not(.sub-wrapper) .caret{text-align:right}#sidebar li:not(.menu-container):not(.sub-wrapper) a{display:block;padding:7px 10px 7px 15px;color:rgba(199,210,230,.91)}#sidebar li:not(.menu-container):not(.sub-wrapper):hover a{color:#f0f0f0}#sidebar li:not(.menu-container):not(.sub-wrapper).active a{color:#fdfdfd}#sidebar ul.user-html{list-style-type:none}#sidebar ul.user-html,#sidebar ul.user-html>li.user-html-string{margin-top:6px;text-align:center;border:0 !important;-webkit-box-shadow:none !important;box-shadow:none !important}#sidebar ul.user-html>li.user-html-string{padding:2px 6px;color:#c7d2e6}#sidebar ul.user-html>li.user-html-string kbd{padding:4px 4px 2px 4px}#sidebar ul.user-links{margin:4px 0 0 0;padding:0;list-style-type:none;text-align:center}#sidebar ul.user-links li:not(.menu-container):not(.sub-wrapper):hover{border:1px solid rgba(255,255,255,.09)}#sidebar ul.user-links li:not(.menu-container):not(.sub-wrapper){line-height:12px;display:inline-block;height:24px;max-height:24px;margin-right:2px;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;text-align:center;vertical-align:top;border:1px solid rgba(255,255,255,.06);-webkit-box-shadow:0 1px 2px rgba(0,0,0,.04);box-shadow:0 1px 2px rgba(0,0,0,.04)}.__logout-link a:hover>.text-danger{color:#e8433f}#sidebar ul.user-links>li:not(.sub-wrapper).__logout-link.__logout-link-bg{border:1px solid rgba(255,255,255,.12)}#sidebar ul.user-links>li:not(.sub-wrapper).__logout-link.__logout-link-bg:hover{border:1px solid rgba(255,255,255,.10)}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) span:hover,#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) a:hover{color:#fff}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container)>span,#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container)>a{font-size:11px;display:block;height:21px;max-height:21px;padding-top:4px;padding-right:5px;padding-left:5px;color:#c7d2e6}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container)>span i,#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container)>a i{vertical-align:text-bottom}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) span .fa,#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) a .fa{font-size:13px}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container)>a.sidebar_sysinfo_link{padding:4px 4px 0 4px}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) a .fa.fa-dashboard{font-size:14px}#sidebar li:not(.sub-wrapper):not(.menu-container) a:hover,.navigation li:not(.sub-wrapper):not(.menu-container) a:hover,.navigation li:not(.sub-wrapper):not(.menu-container) a:focus,.csf-container a{text-decoration:none}#sidebar li:not(.sub-wrapper):not(.menu-container).sub_active{border-left:4px solid #e8433f}#sidebar li:not(.sub-wrapper):not(.menu-container).sub_active a{padding-left:11px;color:#fff;text-shadow:none}#sidebar li:not(.sub-wrapper):not(.user-link):not(.has-sub):not(.navigation_module_trigger):not(.sub_active):not(.menu-title):not(.menu-container):hover a:not(.navigation_module_trigger){padding-left:15px;-webkit-transition:background-color .2s,padding-left .3s,box-shadow .4s;-webkit-transition:background-color .2s,padding-left .3s,-webkit-box-shadow .4s;transition:background-color .2s,padding-left .3s,-webkit-box-shadow .4s;transition:background-color .2s,padding-left .3s,box-shadow .4s;transition:background-color .2s,padding-left .3s,box-shadow .4s,-webkit-box-shadow .4s;color:#fff}#sidebar li:not(.sub-wrapper):not(.user-link):not(.has-sub):not(.navigation_module_trigger):not(.sub_active):not(.menu-title):not(.menu-container).active a,#sidebar li:not(.sub-wrapper):not(.user-link):not(.has-sub):not(.navigation_module_trigger):not(.sub_active):not(.menu-title):not(.menu-container):active a{padding-left:15px}#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active{background-color:#4f7291}#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active>a:after,#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub>a:after{font-family:'Authentic';font-size:11px;position:absolute;top:10px;right:20px;display:inline-block;content:'\f084';text-shadow:none !important}#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active>a:after{right:18px;content:'\f085'}#sidebar ul.sub>li>a:before{font-family:'Authentic';font-size:6px;position:absolute;top:50%;left:0;margin-top:-5px;margin-left:-6px;content:'\f086';color:#809bb3}#sidebar ul.sub li:before{position:absolute;top:0;bottom:0;left:20px;width:1px;content:'';background:#4f7291}#sidebar ul.sub>li:not(.menu-container).sub_active:before{position:absolute;top:0;bottom:0;left:16px;width:1px;content:'';background:#4f7291}#sidebar ul.sub>li.sub_active>a:before{font-family:'Authentic';font-size:6px;position:absolute;top:50%;left:0;margin-top:-5px;margin-left:-10px;content:'\f087';color:#fefefe}#sidebar ul.sub>li:not(.menu-container) a{font-size:13px;line-height:12px;position:relative;top:50%;padding-top:4px;padding-bottom:4px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}#sidebar ul.sub>li:not(.menu-container){height:26px;min-height:26px;max-height:26px;padding-left:24px}#sidebar ul{position:relative;display:block;margin:0;padding:0}#sidebar ul.navigation{font-size:14px;font-weight:normal}#sidebar li.menu-title{font-size:.85em;font-weight:normal;position:relative;margin-top:12px;padding:10px 15px;cursor:default;color:#c7d2e6;background:0}#sidebar ul li:not(.user-link) .fa{font-size:13px;padding-right:10px}#sidebar ul li:not(.user-link) .fa.scaled1{font-size:14px;margin-left:-1px}#sidebar ul li:not(.user-link) .fa.scaled1_5{font-size:15px;margin-right:-2px;margin-left:-1px}#sidebar ul li:not(.user-link) .fa.scaled2{font-size:16px;margin-right:-3px;margin-left:-1px}@-moz-document url-prefix(){#sidebar li:not(.menu-container):not(.sub-wrapper) a{padding:5.5px 10px 6.5px 15px}#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active>a:after,#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub>a:after{top:9px}}#system-status a[data-refresh='system-status']{margin:-7px -12px;padding:5px 11px;color:white}#system-status .panel-title{font-size:20px;text-align:left}#system-status .panel-title>.extra_documentation_links:first-child{margin-right:-11px !important}#system-status .panel-title>.extra_documentation_links+.extra_documentation_links,#system-status a+button+.extra_documentation_links+.extra_documentation_links{margin-right:-17px !important}#system-status .extra_documentation_links+.extra_documentation_links{margin-right:9px !important}.smaller>em,.small{font-size:12px !important}.smaller>em,.smaller{font-size:11px !important}.smaller>em,.smallest{font-size:9px !important}br.lh0{line-height:0}.graph-container{float:left;width:98.5%;height:100%;margin-left:4px}.graph-container-fw{width:100%;margin:0;padding-right:10px}.graph-container>.graph{position:relative;float:left;width:100%;margin-top:4px;padding:0;background-color:#ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);box-shadow:inset 0 1px 1px rgba(0,0,0,.2)}.graph-container>.graph>.bar{font-size:9px;line-height:12px;position:relative;display:block;max-width:100%;height:11px;padding-left:2px;color:#fff;border-right:2px solid red;background-color:#d91212;background-repeat:repeat-x;background-position:right center;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);box-shadow:inset 0 1px 1px rgba(0,0,0,.2)}.graph-container>.graph>.bar[style^='width:1%'],.graph-container>.graph>.bar[style^='width:2%'],.graph-container>.graph>.bar[style^='width:3%'],.graph-container>.graph>.bar[style^='width:4%'],.graph-container>.graph>.bar[style^='width:5%'],.graph-container>.graph>.bar[style^='width:6%'],.graph-container>.graph>.bar[style^='width:7%'],.graph-container>.graph>.bar[style^='width:8%'],.graph-container>.graph>.bar[style^='width:9%'],.graph-container>.graph>.bar[style^='width:10%'],.graph-container>.graph>.bar[style^='width:11%'],.graph-container>.graph>.bar[style^='width:12%'],.graph-container>.graph>.bar[style^='width:13%'],.graph-container>.graph>.bar[style^='width:14%'],.graph-container>.graph>.bar[style^='width:15%'],.graph-container>.graph>.bar[style^='width:16%'],.graph-container>.graph>.bar[style^='width:17%'],.graph-container>.graph>.bar[style^='width:18%'],.graph-container>.graph>.bar[style^='width:19%'],.graph-container>.graph>.bar[style^='width:20%'],.graph-container>.graph>.bar[style^='width:21%'],.graph-container>.graph>.bar[style^='width:22%'],.graph-container>.graph>.bar[style^='width:23%'],.graph-container>.graph>.bar[style^='width:24%'],.graph-container>.graph>.bar[style^='width:25%'],.graph-container>.graph>.bar[style^='width:26%'],.graph-container>.graph>.bar[style^='width:27%'],.graph-container>.graph>.bar[style^='width:28%'],.graph-container>.graph>.bar[style^='width:29%'],.graph-container>.graph>.bar[style^='width:30%'],.graph-container>.graph>.bar[style^='width:31%'],.graph-container>.graph>.bar[style^='width:32%'],.graph-container>.graph>.bar[style^='width:33%'],.graph-container>.graph>.bar[style^='width:34%'],.graph-container>.graph>.bar[style^='width:35%'],.graph-container>.graph>.bar[style^='width:36%'],.graph-container>.graph>.bar[style^='width:37%'],.graph-container>.graph>.bar[style^='width:38%'],.graph-container>.graph>.bar[style^='width:39%'],.graph-container>.graph>.bar[style^='width:40%'],.graph-container>.graph>.bar[style^='width:41%'],.graph-container>.graph>.bar[style^='width:42%'],.graph-container>.graph>.bar[style^='width:43%'],.graph-container>.graph>.bar[style^='width:44%'],.graph-container>.graph>.bar[style^='width:45%'],.graph-container>.graph>.bar[style^='width:46%'],.graph-container>.graph>.bar[style^='width:47%'],.graph-container>.graph>.bar[style^='width:48%'],.graph-container>.graph>.bar[style^='width:49%']{border-right:2px solid #4ccb4c;background-color:#4cae4c}.graph-container>.graph>.bar[style^='width:50%'],.graph-container>.graph>.bar[style^='width:51%'],.graph-container>.graph>.bar[style^='width:52%'],.graph-container>.graph>.bar[style^='width:53%'],.graph-container>.graph>.bar[style^='width:54%'],.graph-container>.graph>.bar[style^='width:55%'],.graph-container>.graph>.bar[style^='width:56%'],.graph-container>.graph>.bar[style^='width:57%'],.graph-container>.graph>.bar[style^='width:58%'],.graph-container>.graph>.bar[style^='width:59%'],.graph-container>.graph>.bar[style^='width:60%'],.graph-container>.graph>.bar[style^='width:61%'],.graph-container>.graph>.bar[style^='width:62%'],.graph-container>.graph>.bar[style^='width:63%'],.graph-container>.graph>.bar[style^='width:64%'],.graph-container>.graph>.bar[style^='width:65%'],.graph-container>.graph>.bar[style^='width:66%'],.graph-container>.graph>.bar[style^='width:67%'],.graph-container>.graph>.bar[style^='width:68%'],.graph-container>.graph>.bar[style^='width:69%'],.graph-container>.graph>.bar[style^='width:70%'],.graph-container>.graph>.bar[style^='width:71%'],.graph-container>.graph>.bar[style^='width:72%'],.graph-container>.graph>.bar[style^='width:73%'],.graph-container>.graph>.bar[style^='width:74%'],.graph-container>.graph>.bar[style^='width:75%'],.graph-container>.graph>.bar[style^='width:76%'],.graph-container>.graph>.bar[style^='width:77%'],.graph-container>.graph>.bar[style^='width:78%'],.graph-container>.graph>.bar[style^='width:79%'],.graph-container>.graph>.bar[style^='width:80%'],.graph-container>.graph>.bar[style^='width:81%'],.graph-container>.graph>.bar[style^='width:82%'],.graph-container>.graph>.bar[style^='width:83%'],.graph-container>.graph>.bar[style^='width:84%'],.graph-container>.graph>.bar[style^='width:85%']{border-right:2px solid #f0ad4e;background-color:#d58512}.graph-container>.graph>.bar[style^='width:0%'],.graph-container>.graph>.bar[style^='width: 0%'],.graph-container>.graph>.bar[style^='width:0'],.graph-container>.graph>.bar[style^='width: 0'],.graph-container>.graph>.bar[style^='width:-'],.graph-container>.graph>.bar[style^='width: -']{border-right:2px solid #ddd;background-color:#f0f0f0}.graph-container>.graph>.bar[style^='width:-'],.graph-container>.graph>.bar[style^='width: -']{color:#aaa}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.graph-container>.graph>.bar{border-right:2px solid #ddd;background-color:#f0f0f0}}.graph-container>.graph>.bar span{position:absolute;left:1em}.graph-container>.graph>.description{font-size:9px;position:absolute;z-index:100;bottom:-1px !important;width:100%;text-align:center}.form-group .form-control.sidebar-search{font-size:13px;font-weight:normal;z-index:1;padding-right:24px;color:rgba(255,255,255,.80);border:none !important;border-bottom:1px solid rgba(255,255,255,.09) !important;border-radius:0 !important;background:transparent;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}.search-form-container{display:block;margin-top:12px !important}#webmin_search_form{margin-bottom:18px !important}.right-side-tabs[data-background-style='grey'] .nav-tabs>li:hover{background-color:rgba(208,208,208,.12)}.right-side-tabs[data-background-style='grey'] .nav-tabs>li a:hover{border:1px solid transparent;background-color:transparent}.right-side-tabs[data-background-style='grey'] .nav-tabs>li:not(.active) a{font-weight:300;color:rgba(210,210,210,.50)}.right-side-tabs .nav-tabs>li:not(.active)>a{margin-bottom:-1px;padding-top:11px}.right-side-tabs .nav-tabs>li.active>a{margin-top:1px}.right-side-tabs .nav-tabs>li:first-child.active>a,.right-side-tabs .nav-tabs>li:first-child.active>a:hover,.right-side-tabs .nav-tabs>li:first-child.active>a:focus{border-left:0}.right-side-tabs .list-group-item.no-notifications{padding:13px 15px}.right-side-tabs .list-group-item .authentic_update{line-height:12px;height:15px;padding:1.5px 3px}.right-side-tabs .list-group-item .authentic_update{font-size:9px}.right-side-tabs .list-group-item.opacity-0_3 .authentic_update{display:none}@-moz-document url-prefix(){.right-side-tabs .list-group-item.no-notifications{padding:12px 15px 13px 15px}}#right-side-tabs .right-side-tabs-dismiss .fa-stack,#right-side-tabs .right-side-tabs-dismiss i{display:none}#right-side-tabs #right-side-tabs-favorites.active+.right-side-tabs-dismiss .fa-stack{display:inline}#right-side-tabs #right-side-tabs-favorites.active+.right-side-tabs-dismiss i.fa-cog,#right-side-tabs #right-side-tabs-favorites.active+.right-side-tabs-dismiss i.fa-star-o{display:inline-block}#right-side-tabs #right-side-tabs-notifications.active+div+.right-side-tabs-dismiss i.fa-trash,#right-side-tabs #right-side-tabs-notifications.active+div+.right-side-tabs-dismiss i.fa-clear-all,#right-side-tabs #right-side-tabs-notifications.active+div+.right-side-tabs-dismiss i.fa-reload{display:inline-block}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss i.fa-dashboard,#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings,#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss i.fa-reload{display:inline-block}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings .caret{position:absolute;top:10px;right:-10px;display:inline}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings.dropdown{margin-right:10px}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings.dropdown .dropdown-menu{font-size:13px;background-color:#fffd9}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings.dropdown .dropdown-menu .divider{background-color:#0001f}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings.dropdown .dropdown-menu>li>a:hover,#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings.dropdown .dropdown-menu>li>a:focus{background-color:#83838330}#right-side-tabs .right-side-tabs-notification.opacity-0_3 .badge{filter:grayscale(100%);-webkit-filter:grayscale(100%)}.right-side-tabs-dismiss i{font-size:1.7em;margin-top:3px;color:#bbb}.right-side-tabs-dismiss .right-side-tabs-favorites-ctl:hover i{color:#ddd}[data-background-style='white'] .right-side-tabs-dismiss i{color:#555}[data-background-style='white'] .right-side-tabs-dismiss i:hover,[data-background-style='white'] .right-side-tabs-dismiss .right-side-tabs-favorites-ctl:hover i{color:#000}.right-side-tabs-dismiss i.fa-cog{font-size:.45em;margin-top:10px;margin-left:3px}.right-side-tabs-dismiss i.fa-dashboard,.right-side-tabs-dismiss i.fa-star-o{font-size:1.9em;margin-top:1px;margin-left:5px;vertical-align:middle}.right-side-tabs-dismiss i.fa-dashboard{margin-top:3px}.right-side-tabs-dismiss i.fa-reload{font-size:1.5em;line-height:24%;margin-left:10px;vertical-align:middle}@-moz-document url-prefix(){.right-side-tabs-dismiss i.fa-reload{font-size:1.5em;line-height:99%;width:20px;height:20px;margin-left:10px;vertical-align:middle}.right-side-tabs .list-group-item.no-notifications{margin-top:1px !important}}.right-side-tabs-dismiss i.fa-clear-all{font-size:2.2em;margin-top:1px}.right-side-tabs-dismiss i:hover{color:#666}.right-side-tabs-dismiss{position:absolute;right:0;bottom:0;width:100%;height:40px;padding-top:7px;padding-right:9px;color:#ddd;border-top:1px solid #ebebeb;background-color:#fff}.right-side-tabs ::-webkit-scrollbar{width:3px}.right-side-tabs .tab-pane .info-container .info-list-data strong{display:inline-block;margin-top:10px}.right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data strong{color:#c2c2c2}#right-side-tabs .right_pane_favorites_link i:before{font-size:14px}#right-side-tabs .right_pane_favorites_link .right_pane_favorites_text{vertical-align:15%}#right-side-tabs .right_pane_favorites_num{font-size:8px;position:absolute;margin-top:22px;margin-left:5px;color:#777}#right-side-tabs[data-background-style='white'] .right_pane_favorites_num{color:#888}#right-side-tabs .right_pane_favorites_link{font-size:11px;display:block;overflow:hidden;padding:6px 10px 6px 20px;white-space:nowrap;text-overflow:ellipsis;color:#bbb;border-bottom:1px solid rgba(255,255,255,.03)}#right-side-tabs[data-background-style='white'] .right_pane_favorites_link{color:#444;border-bottom:1px solid rgba(5,5,5,.06)}#right-side-tabs .right_pane_favorites_link:last-child{border-bottom:1px solid rgba(255,255,255,.05)}#right-side-tabs[data-background-style='white'] .right_pane_favorites_link:last-child{border-bottom:1px solid rgba(5,5,5,.08)}#right-side-tabs .right-side-tab-notification-asterix{font-size:7px;font-weight:bold;line-height:11px;position:absolute;z-index:99999999;top:5px;right:4px;overflow:hidden;width:13px;height:12px;text-align:center;color:#eee;border-radius:10px;background-color:#d00}#right-side-tabs .info-container .graph-container-fw{cursor:pointer}html[data-background-style='nightRider'] body:not(.csf):not(.backup-config) #right-side-tabs .table-striped:not(.opener_table_style):not(.table-subtable)>tbody>tr:hover td,html:not([data-background-style='nightRider']) body:not(.csf):not(.backup-config) #right-side-tabs .table-striped:not(.opener_table_style):not(.table-subtable)>tbody>tr:hover td{background-color:rgba(213,133,18,.1) !important}.right-side-tabs .tab-pane .info-container .extended-list-data tr.thead ~ tr:last-child>td{padding:1px !important}.right-side-tabs .tab-pane .info-container .extended-list-data .collapsing{-webkit-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.001s;transition-duration:.001s}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body a{font-family:monospace;font-size:10px;color:#ccc !important}.right-side-tabs .tab-pane .info-container .extended-list-data #updates-virtual-server-collapse .ui_form_end_buttons{display:none}.right-side-tabs .tab-pane .info-container .extended-list-data #updates-virtual-server-collapse .panel-body .table-responsive a{font-family:monospace !important;font-size:11px;color:#ccc}.right-side-tabs .tab-pane .info-container .extended-list-data #updates-virtual-server-collapse .panel-body .table-responsive{color:#ccc}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body table{width:100%}.right-side-tabs .tab-pane .info-container .extended-list-data #status-virtual-server-collapse .panel-body .table-responsive i:not(.fa-check):not(.fa-minus-circle),.right-side-tabs .tab-pane .info-container .extended-list-data #updates-virtual-server-collapse .panel-body table td:nth-child(2),.right-side-tabs .tab-pane .info-container .extended-list-data #updates-virtual-server-collapse .panel-body table th:nth-child(2){display:none}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row a,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row{color:#bbb}.right-side-tabs table tr td,.right-side-tabs table tr th{font-size:11px}.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body{border-top-color:#888;border-bottom-color:#888}.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table td,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table tr,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table td,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead{border-color:#888 !important}.right-side-tabs[data-background-style='white'] .right-side-tabs-dismiss{border-top-color:#a0a0a0}.right-side-tabs[data-background-style='white'] #right-side-tabs-favorites .no-favorites_data,.right-side-tabs[data-background-style='white'] #right-side-tabs-sysinfo .no-sysinfo_data{border-bottom:1px solid #ddd}.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-body a,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead b,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-heading,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-heading h4 a:focus,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-heading h4 a:visited,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-heading h4 a:active,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-heading h4 a:hover,.right-side-tabs[data-background-style='white'] #right-side-tabs-sysinfo .no-sysinfo_data small,.right-side-tabs[data-background-style='white'] #right-side-tabs-favorites .no-favorites_data small,.right-side-tabs[data-background-style='white'] .tab-pane .list-group-item-text.text-lighter,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-body .table-responsive,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row a,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row{color:#444 !important}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead b{font-size:12px !important;font-weight:normal;color:#d2d2d2}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead td{padding-right:2px !important;padding-left:2px !important;text-align:left !important}.right-side-tabs #bw-virtual-server-collapse .panel-body .table tbody tr td:last-child,.right-side-tabs #bw-virtual-server-collapse .panel-body .table tbody tr td:last-child,.right-side-tabs #quota-virtual-server-collapse .panel-body .table tbody tr td:last-child,.right-side-tabs #quota-virtual-server-collapse .panel-body .table tbody tr td:last-child{font-size:11px;width:auto !important}.right-side-tabs #bw-virtual-server-collapse .panel-body .table tbody tr td[style*='60%'] .graph-container>.graph,.right-side-tabs #quota-virtual-server-collapse .panel-body .table tbody tr td[style*='60%'] .graph-container>.graph{margin-top:0}.right-side-tabs #bw-virtual-server-collapse .panel-body .table tbody tr td[style*='60%'],.right-side-tabs #quota-virtual-server-collapse .panel-body .table tbody tr td[style*='60%']{width:20% !important;padding-right:8px !important}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table td,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table tr,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table td,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead{border:1px solid #666 !important;background-color:transparent !important}.right-side-tabs .tab-pane .info-container .extended-list-data #ftypes-virtual-server-collapse .panel-body .table-responsive .table tbody tr td:last-child,.right-side-tabs .tab-pane .info-container .extended-list-data #status-virtual-server-collapse .panel-body .table-responsive .table tbody tr td:last-child{text-align:center}.right-side-tabs .tab-pane .info-container .extended-list-data #status-virtual-server-collapse .panel-body .table-responsive .table tbody tr td:first-child{font-size:11px}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table{margin-top:7px !important;margin-bottom:0 !important}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body{margin-bottom:-2px;padding:0;padding-bottom:7px;border-top-color:#666;border-bottom:1px solid #666;-webkit-box-shadow:none;box-shadow:none}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default{border:0;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading{padding:2px 0;color:#c2c2c2;background-color:transparent}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4{font-size:12px;font-weight:500}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:focus,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:visited,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:active,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:hover{color:#d2d2d2}.right-side-tabs .tab-pane .info-container .warning-list-data .alert b tt{font-size:11px}.right-side-tabs .tab-pane .info-container .warning-list-data .alert{padding:10px}.right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data]+strong{color:#c2c2c2}.right-side-tabs .tab-pane .info-container .info-list-data span[data-data]{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data]{color:#aaa}.right-side-tabs .tab-pane .info-container,.right-side-tabs .tab-pane .info-container .info-list-data span[data-data]+strong,.right-side-tabs .tab-pane .info-container .info-list-data span[data-data]{font-size:12px}.right-side-tabs .tab-pane .info-container .info-list-data span[data-data='package_message'] .badge{font-size:9px;line-height:10px;padding:2px 5px}.right-side-tabs .tab-pane .info-container .info-list-data span[data-data] a{font-size:12px;color:#555}.right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data] a{color:#ababab}.right-side-tabs .tab-pane .info-container .badge-cpustatus{min-width:59px}#system-status .badge-custom,.right-side-tabs .tab-pane .info-container .badge-custom{font-size:9px;line-height:10px;margin-right:6px !important;margin-bottom:3px !important;padding:1.5px 5.8px;color:#222;border-radius:1px;background-color:#ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);box-shadow:inset 0 1px 1px rgba(0,0,0,.2)}#system-status .badge-custom{font-size:10px;line-height:12px;margin-right:2px !important;padding:2.3px 4px 1.2px 4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);box-shadow:inset 0 1px 1px rgba(0,0,0,.15)}.right-side-tabs .tab-pane .info-container .description{overflow:hidden;padding-right:2px;padding-left:2px;white-space:nowrap;text-overflow:ellipsis;color:#333}.right-side-tabs .tab-pane .info-container .graph-container-fw{padding-right:0}.right-side-tabs .tab-pane .info-container{padding:10px 15px}.right-side-tabs .tab-pane{overflow-y:auto;height:400px}.right-side-tabs{position:fixed;z-index:9999;top:0;right:-302px;width:300px;height:100%;height:100.2%;margin-top:-1px;background:#fff;-webkit-box-shadow:0 4px 4px rgba(0,0,0,.15);box-shadow:0 4px 4px rgba(0,0,0,.15)}html[data-slider-fixed='1']{margin-right:300px}.right-side-tabs.right-side-tabs-fixed{right:0}.right-side-tabs .nav .tab-content .tab-pane .list-groups{margin-top:2px !important}.right-side-tabs .list-group-item-heading{font-weight:bold;color:#888}.right-side-tabs .list-group-item-heading small{font-weight:normal;color:#bbb}.right-side-tabs-toggler.opened .badge{background-color:#ddd}.right-side-tabs .list-group-item.opacity-0_3 .label,.right-side-tabs .list-group-item.opacity-0_3 .badge{background-color:#999}.right-side-tabs .list-group-item .badge{font-size:10px;padding:2px 5px}.right-side-tabs .list-group-item,.right-side-tabs .list-group-item:last-child,.right-side-tabs .list-group-item:first-child{margin-top:0;border-top:0;border-right:0;border-left:0;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.right-side-tabs:not([data-background-style='white']) .list-group-item:last-child{border-bottom:1px solid #ebebeb}.right-side-tabs .list-group-item:not(:first-child){border-top:1px solid #ebebeb}.right-side-tabs-toggler .badge{font-size:10px;font-size:9px;position:absolute;z-index:10000;top:3px;right:2px;padding:2px 4px;color:#fff;background-color:#d51b16}.right-side-tabs-toggler,.mobile-menu-toggler{position:fixed;z-index:9999;top:56px;left:0;opacity:.8;border-right:2px solid #e8433f}_:-ms-fullscreen,:root .right-side-tabs-toggler{max-width:0}_:-ms-fullscreen,:root .modal-backdrop.in{display:none}_:-ms-fullscreen,:root #headln2c .fa{position:relative !important;margin-right:10px !important}.right-side-tabs-toggler{right:0;left:initial;border-right:0;border-left:0}.alert,.right-side-tabs-toggler>.btn,.mobile-menu-toggler>.btn{border-radius:0;moz-border-radius:0}.right-side-tabs-toggler>.btn:active,.right-side-tabs-toggler>.btn{color:#ddd;border-right:0;background-color:#fff}.right-side-tabs-toggler>.btn:hover{color:silver;border-color:rgba(208,208,208,.87);background-color:rgba(228,228,228,.83)}.right-side-tabs-toggler.opened>.btn:active,.right-side-tabs-toggler.opened>.btn:focus,.right-side-tabs-toggler>.btn:focus,.right-side-tabs-toggler.opened>.btn{border-color:rgba(208,208,208,.60);border-right:0;background-color:rgba(255,255,255,1) !important}.right-side-tabs-toggler.opened{opacity:1;-webkit-box-shadow:-2px -1px 4px rgba(0,0,0,.03);box-shadow:-2px -1px 4px rgba(0,0,0,.03)}.right-side-tabs .right-side-tabs-dismiss i,.right-side-tabs .list-group>a.list-group-item div.media-body small span.authentic_update,.right-side-tabs .list-group>a.list-group-item div.media-body .fa-refresh,.right-side-tabs .list-group>a.list-group-item div.media-body>i{cursor:default}.right-side-tabs .list-group>a.list-group-item div.media-body>i:hover{color:#000}.right-side-tabs[data-background-style='grey'],.right-side-tabs[data-background-style='grey'] .list-group-item,.right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,.right-side-tabs[data-background-style='grey'] .nav-tabs,.right-side-tabs[data-background-style='grey'] .nav-tabs .active a,.right-side-tabs-toggler[data-background-style='grey']>button,.right-side-tabs-toggler[data-background-style='grey'].opened>button,.right-side-tabs-toggler[data-background-style='grey']{background:#4d5250 !important}.right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss{color:#888}.right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss i:hover{color:#eee}.right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,.right-side-tabs[data-background-style='grey'] .list-group-item:last-child{border:1px solid rgba(255,255,255,.06);border-right:0;border-left:0}.right-side-tabs[data-background-style='grey'] .list-group-item{border-top:1px solid rgba(255,255,255,.06);border-bottom:transparent}.right-side-tabs[data-background-style='grey'] .list-group-item:first-child{border-top:transparent}.right-side-tabs[data-background-style='grey'] .nav-tabs{border-bottom:1px solid rgba(255,255,255,.085)}.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:focus,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:hover,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a{border:1px solid rgba(255,255,255,.085)}.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:focus,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:hover,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:hover,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:focus{border-bottom:transparent}.right-side-tabs[data-background-style='grey'] .tab-pane .info-container,.right-side-tabs[data-background-style='grey'] div.media-body>small{color:#d2d2d2}.right-side-tabs[data-background-style='grey'] .list-group>a.list-group-item div.media-body>i,.right-side-tabs[data-background-style='grey'] a.list-group-item .list-group-item-heading,.right-side-tabs[data-background-style='grey'] button.list-group-item .list-group-item-heading,.right-side-tabs[data-background-style='grey'] .nav-tabs>li a{color:#d2d2d2}.right-side-tabs[data-background-style='grey'] #right-side-tabs-notifications .right-side-tabs-notification div.media-body>small{word-break:break-all;color:#bbb}.right-side-tabs[data-background-style='grey'] .list-group>a.list-group-item div.media-body>i:hover{color:#fff}#right-side-tabs-favorites .no-favorites_data small,#right-side-tabs-sysinfo .no-sysinfo_data small{font-size:11px;color:#aaa}#right-side-tabs-favorites .no-favorites_data,#right-side-tabs-sysinfo .no-sysinfo_data{margin-top:-1px;margin-right:-15px;margin-left:-15px;padding-bottom:13px;text-align:center;color:#555;color:#9fa0a0;border-bottom:1px solid #575c5a}#right-side-tabs-favorites .no-favorites_data{margin-top:9px}.right-side-tabs[data-background-style='grey'] .right-side-tabs-no-notifications{line-height:18px}.right-side-tabs[data-background-style='grey'] .list-group-item.no-notifications small{color:#aaa}.right-side-tabs[data-background-style='grey'] .list-group-item-heading small{margin-left:3px;color:#777}.right-side-tabs[data-background-style='grey'] ::-webkit-scrollbar{width:3px}.right-side-tabs[data-background-style='grey'] ::-webkit-scrollbar-track-piece{background-color:#444}.right-side-tabs[data-background-style='grey'] ::-webkit-scrollbar-thumb{border:2px solid #111;outline:2px solid #111}.right-side-tabs-toggler[data-background-style='grey']{border-top:1px solid #404040;border-bottom:1px solid #404040;border-left:1px solid #373737}.right-side-tabs-toggler[data-background-style='grey'].opened>button{border:0}.right-side-tabs-toggler[data-background-style='grey']>.btn:active,.right-side-tabs-toggler[data-background-style='grey']>.btn{color:#ededed;border:0;background-color:#4d5250}.right-side-tabs-toggler[data-background-style='grey']>.btn:hover{color:#fff;border-color:none;background-color:#4d5250}.right-side-tabs-toggler[data-background-style='grey'].opened>.btn:active,.right-side-tabs-toggler[data-background-style='grey'].opened>.btn:focus,.right-side-tabs-toggler[data-background-style='grey']>.btn:focus,.right-side-tabs-toggler[data-background-style='grey'].opened>.btn{border-color:0;border-right:0;background-color:#4d5250 !important}.right-side-tabs-toggler[data-background-style='grey'].opened{opacity:1;-webkit-box-shadow:none;box-shadow:none}.mobile-menu-toggler.selected{opacity:1}.mobile-menu-toggler.selected>.btn-primary{border:1px solid #386386;background-color:#386386}aside select{visibility:hidden}.select2{margin-top:4px;margin-bottom:4px}.select2-container--default .select2-results__option--highlighted[aria-selected]{color:#333 !important;background-color:#ddd}.select2-container--default .select2-results__option--highlighted[aria-selected]:active,.select2-container--default .select2-results__option:hover,.select2-container--default .select2-results__option:focus,.select2-container--default .select2-results__option[aria-disabled='true'],.select2-container--default .select2-results__option[aria-selected='true']{background-color:#bfcbd9}.select2-container--default .select2-selection--single .select2-selection__rendered{line-height:21px}.select2-container .select2-selection--single{height:24px}.select2-container--default .select2-selection--single .select2-selection__arrow{top:-1px}.select2-container--default,.select2,.select2-container{color:#c7d2e6;background-color:transparent}.select2-selection--single,.select2-selection{border:1px solid rgba(255,255,255,.12) !important;border-radius:0 !important;background:transparent !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}.select2-selection--single span,.select2-selection span{color:#c7d2e6 !important}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#ddd transparent transparent transparent}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #ddd transparent}.select2-search{border-bottom:1px solid rgba(255,255,255,.09) !important;border-radius:0 !important}.select2-search input{font-size:13px;height:20px;border:1px solid rgba(255,255,255,.09) !important;background:transparent !important}.select2-results{color:#333 !important}.select2-search input{color:#333 !important;border:1px solid rgba(0,0,0,.20) !important}.select2-results,.select2-dropdown .select2-search,.select2-search{background-color:rgba(255,255,255,.46) !important}.select2-results ul li{padding-top:2px;padding-bottom:2px;color:#333 !important}.select2-results ul li:active,.select2-results ul li:focus,.select2-results ul li:hover{color:#333 !important;background:#bfcbd9 !important}.file_chooser_button_preview,aside form{cursor:default}.select2-dropdown,.autocomplete-suggestions{border:none !important;border:2px solid transparent !important;border-radius:0 !important;background-color:rgba(255,255,255,.86) !important;-webkit-box-shadow:1px 4px 3px rgba(50,50,50,.64);box-shadow:1px 4px 3px rgba(50,50,50,.64)}.select2-dropdown{top:-1px;border:1px solid rgba(255,255,255,.10) !important}.select2-container--default .select2-results>.select2-results__options{max-height:40vh}.autocomplete-suggestion{overflow:hidden;padding:2px 5px;white-space:nowrap}.autocomplete-no-suggestion{padding:2px 5px}.autocomplete-selected{background:#bfcbd9}.autocomplete-suggestions strong{font-weight:500;color:#000}.autocomplete-suggestions{overflow:hidden;width:auto !important;min-width:237px !important;max-width:80vw !important}.autocomplete-group{padding:2px 5px}.autocomplete-group strong{font-size:16px;font-weight:500;display:block;color:#000;border-bottom:1px solid #000}.form-group .form-control.sidebar-search:focus,.form-group .form-control.sidebar-search:active,.form-group .form-control.sidebar-search.active{border-radius:0 !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}.fa-fwh{width:1.28571429em !important;height:1.28571429em !important;text-align:center}aside .form-group i.fa.fa-search{position:relative;float:right;margin-top:0;margin-bottom:-30px;padding:8px;padding-left:40px;cursor:default;color:#57779b}aside .form-control::-webkit-input-placeholder{color:#57779b}aside .form-control:-moz-placeholder{color:#57779b}aside .form-control::-moz-placeholder{color:#57779b}aside .form-control:-ms-input-placeholder{color:#57779b}aside .form-control:focus::-webkit-input-placeholder{color:#668bb5}aside .form-control:focus:-moz-placeholder{color:#668bb5}aside .form-control:focus::-moz-placeholder{color:#668bb5}aside .form-control:focus:-ms-input-placeholder{color:#668bb5}.dropup:not(.open) .caret{content:'';border-top:4px dashed;border-top:4px solid \9;border-bottom:0}#system-status .table,.popover-content .progress,#sidebar .form-group{margin-bottom:0}#system-status .table-hover td{border-top:0}.modal{z-index:11000}.modal-backdrop.fade.in{z-index:10900;opacity:.30;filter:alpha(opacity=50)}.modal.fade2 .modal-dialog{-webkit-transform:scale(0) rotate(360deg);transform:scale(0) rotate(360deg);opacity:0}.modal.fade2.in .modal-dialog{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.modal.fade3 .modal-dialog{-webkit-transform:translateZ(600px) rotateX(20deg);transform:translateZ(600px) rotateX(20deg);opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.modal.fade3.in .modal-dialog{-webkit-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translateZ(0) rotateX(0);transform:translateZ(0) rotateX(0);opacity:1}.modal.fade4 .modal-dialog{-webkit-transform:translate(30%) translateZ(600px) rotate(10deg);transform:translate(30%) translateZ(600px) rotate(10deg);opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.modal.fade4.in .modal-dialog{-webkit-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translate(0) translateZ(0) rotate(0);transform:translate(0) translateZ(0) rotate(0);opacity:1}.modal.fade5 .modal-dialog{-webkit-transition:all .3s;transition:all .3s;-webkit-transform:translateY(-200%);transform:translateY(-200%);opacity:0}.modal.fade5.in .modal-dialog{-webkit-transform:translateY(0);transform:translateY(0);opacity:1;border-radius:0 0 3px 3px}.modal.fade6 .modal-dialog{-webkit-transition:all .3s;transition:all .3s;-webkit-transform:rotateY(-70deg);transform:rotateY(-70deg);opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.modal.fade6.in .modal-dialog{-webkit-transform:rotateY(0);transform:rotateY(0);opacity:1}.modal.fade7 .modal-dialog{-webkit-transition:all .3s;transition:all .3s;-webkit-transform:rotateX(-70deg);transform:rotateX(-70deg);opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.modal.fade7.in .modal-dialog{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}.modal.fade8 .modal-dialog{-webkit-transition:all .3s;transition:all .3s;-webkit-transform:rotateX(-60deg);transform:rotateX(-60deg);-webkit-transform-origin:50% 0;transform-origin:50% 0;opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.modal.fade8.in .modal-dialog{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}.modal.fade9 .modal-dialog{-webkit-transition:all .3s cubic-bezier(.25,.5,.5,.9);transition:all .3s cubic-bezier(.25,.5,.5,.9);-webkit-transform:translateX(20%);transform:translateX(20%);opacity:0}.modal.fade9.in .modal-dialog{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.modal.fade10 .modal-dialog{-webkit-transition:all .3s;transition:all .3s;-webkit-transform:scale(.7);transform:scale(.7);opacity:0}.modal.fade10.in .modal-dialog{-webkit-transform:scale(1);transform:scale(1);opacity:1}.filter-invert{-webkit-filter:invert(100%);filter:invert(100%)}.filter-grayscale{filter:grayscale(100%);-webkit-filter:grayscale(100%)}.filter-contrast{filter:contrast(200%);-webkit-filter:contrast(200%)}.filter-blur{filter:blur(1px);-webkit-filter:blur(1px)}.filter-blur-hard{filter:blur(5px);-webkit-filter:blur(5px)}.bg-filter-blur-grayscale-opacity50{filter:opacity(50%) blur(1px) grayscale(100%) !important;-webkit-filter:opacity(50%) blur(1px) grayscale(100%) !important}.bg-filter-blur-grayscale-invert-opacity75{filter:blur(1px) grayscale(100%) invert(100%) opacity(75%);-webkit-filter:blur(1px) grayscale(100%) invert(100%) opacity(75%)}.bg-filter-grayscale-opacity50{filter:opacity(50%) grayscale(100%) !important;-webkit-filter:opacity(50%) grayscale(100%) !important}.bg-puff-out{-webkit-animation-name:puff-out;animation-name:puff-out;-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes puff-out{0{-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;opacity:1;-webkit-filter:blur(0);filter:blur(0)}100%{-webkit-transform:scale(2,2);transform:scale(2,2);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;opacity:0;-webkit-filter:blur(2px);filter:blur(2px)}}@keyframes puff-out{0{-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;opacity:1;-webkit-filter:blur(0);filter:blur(0)}100%{-webkit-transform:scale(2,2);transform:scale(2,2);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;opacity:0;-webkit-filter:blur(2px);filter:blur(2px)}}.select2-selection__rendered .menu-status-label{font-weight:500;position:absolute;right:22px;margin-top:3px;-webkit-transform:scale(.90);transform:scale(.90);opacity:.0;color:#333 !important;border-radius:1px}.select2-selection__rendered:hover .menu-status-label,.select2-selection__rendered .menu-status-label:hover{color:#fff !important}.modal-dialog{z-index:10000000}.piechart{position:relative;display:inline-block;width:110px;height:110px;margin-top:15px;margin-bottom:70px;margin-left:-30px;text-align:center}.piechart canvas{position:absolute;top:0;left:0}.piechart .percent{font-size:1.8em;z-index:2;display:inline-block;margin-top:42px;color:#777}.piechart .percent:after{font-size:.9em;margin-left:.1em;content:'%'}.piechart .label{font-size:9px;z-index:3;display:block;overflow:hidden;max-width:130px;margin-top:23px;margin-right:-18px;padding-left:20px;text-align:right;text-transform:uppercase;color:#999}.piechart .label i{vertical-align:middle}body.csf .dataTables_filter input[type='search'],body .dataTables_filter input[type='search'],.csf-container input[type='text'],.csf-container input[type='search'],.csf-container input[type='submit'],.csf-container button.input,.csf-container input[id^='CSF'],input[type='button'],input[type='reset'],input[type='submit'],input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.btn):not(.session_login){font-family:'Roboto' !important;height:34px;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;text-align:center;border:1px solid #e2e2e2;border-radius:0;text-shadow:none}body.csf .dataTables_filter input[type='search'],body .dataTables_filter input[type='search'],.csf-container input[type='text'],.csf-container input[type='search'],input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.btn):not(.session_login){font-size:13px;height:34px}body .dataTables_filter input[type='search']{max-height:24px}.dataTables_wrapper .paginate_button{vertical-align:middle}div.dataTables_wrapper div.dataTables_paginate,.dataTables_wrapper .dataTables_paginate{float:right;margin-right:1px;margin-bottom:-2px;padding-top:.25em;text-align:right}.pagination>li>a,.pagination>li>span{border-color:#eaeaea}@-moz-document url-prefix(){div.dataTables_wrapper div.dataTables_paginate,.dataTables_wrapper .dataTables_paginate{margin-right:0}}.dataTables_wrapper .dataTables_paginate .paginate_button{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;min-width:1.5em;margin-left:2px;padding:.5em 1em;cursor:pointer;text-align:center;text-decoration:none !important;color:#333 !important;border:1px solid transparent}input:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']){height:28px !important}._pen,.pointer-events-none{pointer-events:none}input[name]:not([type='image']):not(.sidebar-search):not([type='button']):not([type='checkbox']):not([type='radio']):not(.btn),.csf-container input[type='text'],.csf-container input[type='search']{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075) !important;box-shadow:inset 0 1px 1px rgba(0,0,0,.075) !important}.csf-container select[name='backup'],.csf-container select[name='profile1'],.csf-container select[name='profile2']{min-height:150px !important}.csf-container .csf_force_log_size{width:98% !important;height:100% !important}body.csf .dataTables_filter input[type='search']{font-size:12px;font-weight:normal;border-radius:0}body .dataTables_filter input[type='search']{font-size:12px;font-weight:normal;height:22px;border-radius:0;-webkit-box-shadow:none;box-shadow:none}body .dataTables_wrapper>.dataTables_filter input{border-bottom:0}body .dataTables_wrapper>.dataTables_filter{position:absolute;right:1px;display:none;margin-top:-24px}.dataTables_filter input{border-color:transparent !important}table.dataTable{border:1px solid #eaeaea !important}.dataTables_wrapper .dataTables_empty:hover,.dataTables_wrapper .dataTables_empty{background-color:#fff}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #eaeaea}table.dataTable thead .sorting{background:url(../../images/sort_both.png) no-repeat center right}table.dataTable thead .sorting_asc{background:url(../../images/sort_asc.png) no-repeat center right}table.dataTable thead .sorting_desc{background:url(../../images/sort_desc.png) no-repeat center right}table.dataTable thead .sorting_asc_disabled{background:url(../../images/sort_asc_disabled.png) no-repeat center right}table.dataTable thead .sorting_desc_disabled{background:url(../../images/sort_desc_disabled.png) no-repeat center right}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{display:none !important}table.dataTable.dtr-column.collapsed>tbody>tr>td:first-child:before,table.dataTable.dtr-column.collapsed>tbody>tr>th:first-child:before{font-family:'Roboto';font-size:10px;line-height:11px;position:absolute;top:60%;left:25%;display:block;-webkit-box-sizing:content-box;box-sizing:content-box;width:10px;height:10px;content:'+';cursor:pointer;text-align:center;color:white;border:2px solid white;border-radius:12px;background-color:#337ab7;-webkit-box-shadow:0 0 1px #888;box-shadow:0 0 1px #888}table.dataTable.dtr-column.collapsed>tbody>tr.parent>td:first-child:before,table.dataTable.dtr-column.collapsed>tbody>tr.parent>th:first-child:before{font-size:16px;line-height:8px;content:'-';background-color:#d33333}table.dataTable>tbody>tr.child span.dtr-title{font-weight:700;display:inline-block;width:35%;min-width:75px}table.dataTable>tbody>tr.child span.dtr-data{display:inline-block;float:right;overflow:hidden;width:57%;text-align:right;white-space:nowrap;text-overflow:ellipsis}table.dataTable thead th,table.dataTable thead td{border-bottom:1px solid #eaeaea}.dataTables_filter input[type='search'],.csf-container input[type='text'],.csf-container input[type='search'],.csf-container input[type='submit'],.csf-container button.input,.dataTables_filter input[type='search']{color:#333 !important}.dataTables_filter input[type='search'],.csf-container input[type='text'],.csf-container input[type='search'],input[name],input[type='text'],input[type='search']{padding-left:6px}.csf-container input[type='text']:focus,.csf-container input[type='search']:focus{padding-left:6px !important}.btn:not(.btn-xxs):not(.btn-tiny):not(.ui_link_replaced),.csf-container button.input,.csf-container input[type='submit'],input[type='button'],input[type='reset'],input[type='submit'],button.btn{font-size:14px;padding:6px 12px;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-webkit-transition:none;transition:none;text-align:center !important;-webkit-box-shadow:none;box-shadow:none}.csf-container input[type='text'],.csf-container input[type='search'],.dataTables_filter input[type='search'],input[id^='CSF'],input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.btn){text-align:left !important}.btn-tiny,.ui_link.btn.btn-inverse.btn-tiny.ui_link_replaced,.btn-inverse{cursor:default;color:#444 !important;border-color:#e2e2e2 !important;background-color:#f6f6f6 !important}.csf-container input[type='submit']:hover,.csf-container input[type='submit']:focus,.csf-container input[type='submit']:active,.csf-container input[type='submit'].active,.csf-container button.input:hover,.csf-container button.input:focus,.csf-container button.input:active,.csf-container button.input.active,.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active{color:#555;border-color:#e2e2e2;background-color:#e7e7e7}.csf-container input[type='submit']:hover,.csf-container input[type='submit']:focus,.csf-container input[type='submit']:active,.csf-container input[type='submit'].active{border-color:#cecece}.csf-container .csf-box legend+table.table.table-striped.table-condensed[align='center']{margin-top:-2px !important}.csf-container .csf-box legend+table.table.table-striped.table-condensed[align='center'] tbody tr:first-child{border-top:0 !important}.btn-tiny{font-size:12px !important;height:23px !important;padding:1.5px 8px !important}.ui_link.btn.btn-inverse.btn-tiny.ui_link_replaced:hover,.btn-inverse.btn-tiny:hover,.btn-tiny:hover{border:1px solid #ccc !important;background:#e7e7e7 !important}.btn-tiny+.btn-tiny{margin-left:-1px !important}.btn-danger{color:#fff !important;border-color:#992020 !important;background-color:#bd1e1e !important}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff !important;border-color:#992020 !important;background-color:#ad2828 !important}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none !important}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{border-color:#992020 !important;background-color:#bd1e1e !important}.btn-danger .badge{color:#bd1e1e !important;background-color:#fff !important}.btn-info{color:#fff !important;border-color:#4299b3 !important;background-color:#47b1d1 !important}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff !important;border-color:#4299b3 !important;background-color:#3e9fbd !important}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none !important}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{border-color:#4299b3 !important;background-color:#47b1d1 !important}.btn-info .badge{color:#47b1d1 !important;background-color:#fff !important}.cke_dialog_ui_button_ok,.btn-primary{color:#fff !important;border-color:#2a5c87 !important;background-color:#2671b3 !important}.cke_dialog_ui_button_ok:hover,.cke_dialog_ui_button_ok:focus,.cke_dialog_ui_button_ok:active,.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff !important;border-color:#2a5c87 !important;background-color:#266aa6 !important}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none !important}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{border-color:#2a5c87 !important;background-color:#2671b3 !important}.btn-primary .badge{color:#2671b3;background-color:#fff}.btn-success{color:#fff !important;border-color:#2c8828 !important;background-color:#349e30 !important}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff !important;border-color:#256d22 !important;background-color:#32942f !important}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none !important}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{border-color:#377d0f !important;background-color:#3f8f11 !important}.btn-success .badge{color:#3f8f11 !important;background-color:#fff !important}.btn-warning{color:#fff !important;border-color:#d6963c !important;background-color:#eba94c !important}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff !important;border-color:#d6963c !important;background-color:#db983b !important}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none !important}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{border-color:#d6963c !important;background-color:#eba94c !important}.btn-warning .badge{color:#eba94c !important;background-color:#fff !important}.btn-grey{color:#fff;border-color:#474747;background-color:#5c5c5c}.btn-grey:hover,.btn-grey:focus,.btn-grey:active,.btn-grey.active,.open .dropdown-toggle.btn-grey{color:#fff;border-color:#474747;background-color:#4a4a4a}.btn-grey:active,.btn-grey.active,.open .dropdown-toggle.btn-grey{background-image:none}.btn-grey.disabled,.btn-grey[disabled],fieldset[disabled] .btn-grey,.btn-grey.disabled:hover,.btn-grey[disabled]:hover,fieldset[disabled] .btn-grey:hover,.btn-grey.disabled:focus,.btn-grey[disabled]:focus,fieldset[disabled] .btn-grey:focus,.btn-grey.disabled:active,.btn-grey[disabled]:active,fieldset[disabled] .btn-grey:active,.btn-grey.disabled.active,.btn-grey[disabled].active,fieldset[disabled] .btn-grey.active{border-color:#474747;background-color:#5c5c5c}.btn-grey .badge{color:#5c5c5c;background-color:#fff}.btn-default{border-color:#e8e8e8}.btn-default:focus,.btn-default.active,.btn-default:active,.btn-default:hover{border-color:#e2e2e2 !important;background:#f2f2f2 !important}.btn-lg,.btn-group-lg>.btn{line-height:17px;height:36px;padding:8px 14px !important}.btn-34{line-height:10px;height:34px}.btn.btn-success:not(.btn-primary):not(.btn-xxs):not(.ui_link):not(.ui_submit),.btn.btn-success.btn-tiny:not(.btn-xxs):not(.ui_link):not(.ui_submit){border:1px solid #4c984d}.btn.btn-success:not(.btn-primary):not(.btn-xxs):not(.ui_link):not(.ui_submit):hover,.btn.btn-success.btn-tiny:not(.btn-xxs):not(.ui_link):not(.ui_submit):hover{border:1px solid #388439}.btn.btn-xs i{font-size:10px}.btn.btn-xs{font-size:11px !important;line-height:4px !important;height:18px;padding:2px 8px}.btn.btn-xxs i{font-size:10px}.btn.btn-xxs{font-size:11px;line-height:11px;height:15px;padding:0 8px}.btn-inverse:hover{background-color:#eee !important}.clearleft:after{clear:left}.clearleft:before{display:table;content:' '}.clearright:after{display:table;clear:right;content:' '}.col_label,.col_value,.table-subtable tbody tr td.no-border,.table-subtable tbody tr td.col_label,.table-subtable tbody tr td.col_value,.panel-body .table tbody,.panel-body table.table-hardcoded tbody tr td,.panel-body form table,.table table table td{border-spacing:0;border-collapse:collapse;vertical-align:middle;border:0}.panel-footer{background-color:#f6e8d4}.csf-container #CSFajax{width:auto !important;height:auto !important;padding:6px}.csf-container .paginationstyle{padding-top:6px;padding-bottom:6px}.csf-container .panel-body>h2:first-child{font-size:18px;margin-top:3px;margin-bottom:32px;text-align:center}.csf-container fieldset+p[align='center'],.table-responsive+form.ui_form,.ui_table_body table,.panel-body form+table.table-hardcoded+form{margin-top:4px !important}tr.ui_grid_row td.ui_grid_cell>form.ui_form[action^='mail_search']>input.ui_hidden+input.submitter{margin-top:4px !important}.ui_form_end_buttons td>span+span{line-height:40px}.ui_form>.table-responsive+input+input+select{margin-top:5px !important;margin-bottom:3px !important}.ui_form>input.ui_hidden+input+input+select{margin-top:6px !important;margin-bottom:5px !important}.ui_form>input.ui_hidden+input,.ui_form>input+select+input{margin-top:4px !important;margin-bottom:3px !important}button.btn-default.file_chooser_button,button.btn-default.file_chooser_button_emulate,td>select+input,input+select,select+input,select+select,input[type='submit']+select,input[type='submit']+input[type='submit'],div.table-responsive+input,div.table-responsive>select+input,div.table-responsive>input+select,div.table-responsive>input{margin-top:1px !important;margin-bottom:1px !important}td>select+input{margin:0 !important}form.ui_form>input,form.ui_form>select,form.ui_form>input+input,form.ui_form>input+select{margin-right:3px !important}.ui_table_end_submit_right{float:right;margin-top:-35px}br+.ui_form_end_submit,br+.ui_form_end_submit ~ .ui_form_end_submit,br+.end_submits,.ui_link_replaced+.end_submits,.table-responsive+.end_submits,table+.end_submits,.ui_form_end_buttons{margin-top:4px !important}.container-fluid .panel-group+.ui_form_end_buttons{margin-top:-12px !important}.table-responsive+input+.btn-group.end_submits,table+input+.btn-group.end_submits{margin-top:6px}select+.ui_form_end_submit,select+.ui_link_replaced{margin-top:0}td.td_tag>a.btn-xxs.ui_link_replaced{margin-top:0;margin-bottom:2px}body[class*='webminlog'] textarea#anno+br+.ui_form_end_submit,.file_chooser_button+.ui_form_end_submit:not(.heighter-34-force),select[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force),input[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force),input[style*='height: 28px']+.ui_form_end_submit:not(.heighter-34-force),.heighter-28+.btn-group>.btn:not(.heighter-34-force){font-size:94% !important;height:28px;min-height:28px;max-height:28px;margin-top:0;padding:4px 12px !important}.file_chooser_button+.ui_form_end_submit:not(.heighter-34-force) i,select[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force) i,input[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force) i,input[style*='height: 28px']+.ui_form_end_submit:not(.heighter-34-force) i,.heighter-28+.btn-group>.btn:not(.heighter-34-force):not(.heighter-28) i{margin-top:1px;vertical-align:middle !important}input[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force) i.fa-caret-down{margin-top:-2px}.file_chooser_button+.ui_form_end_submit:not(.heighter-34-force) i.fa-1_25x,select[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force) i.fa-1_25x,input[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force) i.fa-1_25x,input[style*='height: 28px']+.ui_form_end_submit:not(.heighter-34-force) i.fa-1_25x,.heighter-28+.btn-group>.btn:not(.heighter-34-force) i.fa-1_25x{margin-top:1px;vertical-align:middle !important}form.ui_form[action='delete_servs.cgi'] table.table-striped.table-condensed table tbody{border:0 !important}.dataTables_filter input[type='search']:focus,.dataTables_filter input[type='search']:hover,.csf-container input[type='text']:not(.dataTable-mirror):focus,.csf-container input[type='search']:focus,input[id^='CSF']:focus,input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.sidebar-search):focus{border-color:#66afe9 !important;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) !important;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) !important}.csf-container input[type='text'].dataTable-mirror,.csf-container input[type='text'].dataTable-mirror:focus{max-width:90px;border-color:transparent !important}.file-input-wrapper{position:relative;z-index:1;overflow:hidden;cursor:pointer}.file-input-wrapper input[type=file],.file-input-wrapper input[type=file]:focus,.file-input-wrapper input[type=file]:hover{position:absolute;z-index:99;top:0;left:0;cursor:pointer;opacity:0;outline:0;filter:alpha(opacity=0)}.file-input-name{margin-left:8px}label+.file-input-wrapper,b>label+input,.csf-container select+input,select+select{margin-left:3px}.panel-body{overflow:auto;padding-top:17px;padding-bottom:13px}.panel-group .panel-body{padding:15px}.panel-group .panel-body.inner{padding:0 2px}html[data-uri*='config.cgi'] ._c__op_d,.panel-group#conf-_-gr .panel-heading{text-align:center !important}html[data-uri*='config.cgi'] td .opener_trigger.opener_container_opened[id]:before,html[data-uri*='config.cgi'] td .opener_trigger[id]:before,.panel-group#conf-_-gr .panel-heading a:before{right:15px}html[data-uri*='config.cgi'] td .opener_trigger.opener_container_opened[id]:before,html[data-uri*='config.cgi'] td .opener_trigger[id]:before{right:31px}html[data-uri*='config.cgi'] td .opener_trigger.opener_container_closed[id]:before,.panel-group#conf-_-gr .panel-heading a[aria-expanded='false']:before{content:'\f084'}.panel-group#conf-_-gr .panel-heading a[aria-expanded='true']:before{right:13px}html[data-uri*='config.cgi'] td .opener_trigger.opener_container_opened[id]:before{right:29px}.refresh-timer-timeout{line-height:19px}.paginate_button.disabled{margin-left:-1px !important}.paginate_button.disabled a,.paginate_button.disabled span{border-color:#eaeaea}td>input+input[type='submit']{vertical-align:baseline}.heighter-28{vertical-align:middle}input+a[href*='help.cgi'].help_popup{line-height:30px !important;margin-left:4px !important;vertical-align:top !important}.help_popup.text-lighter{color:#ccc !important}.help_popup.text-lighter:active,.help_popup.text-lighter:focus,.help_popup.text-lighter:hover{color:#23527c !important}a[href*='help.cgi'].help_popup+.popover>.popover-content center{font-weight:500;display:inline-block;margin-bottom:2px !important;margin-bottom:3px !important;text-align:left !important}.module-help .popover-content center{font-weight:600;text-align:left !important}a[href*='help.cgi'].help_popup+.popover>.popover-content center:after{content:':'}a[href*='help.cgi'].help_popup+.popover>.popover-content center tt{padding-left:0}a[href*='help.cgi'].help_popup+.popover>.popover-title{font-size:14px;line-height:15px}a[href*='help.cgi'].help_popup+.popover>.popover-content u{display:inline-block;margin-top:-3px !important}a[href*='showpass.cgi'].help_popup+.popover>.popover-content{width:23vw;min-width:276px;max-width:23vw}h3.h3_help{font-size:14px;margin-top:5px}input[type='text'],input.ui_radio{vertical-align:middle !important}input.ui_radio+label.radio{margin:0 !important;margin-top:3px !important;margin-bottom:2px !important}input.ui_radio+label{margin:0 !important;margin-top:2px !important;margin-bottom:2px !important}.td_tag>input.ui_radio+label.radio{margin:0 !important;margin-top:6px !important;margin-right:6px !important}.data-refresh:hover{text-decoration:none;color:#333 !important}input[type='button']:not(.btn-success):not(.btn-primary):not(.btn-info):not(.btn-danger):not(.btn-warning){border-color:#e8e8e8}.btn.btn-menu-toggler:active i,.btn.btn-menu-toggler:focus i,.opened .btn.btn-menu-toggler i{color:#ddd}.csf-container .btn-filter-top-right,.csf-container .btn-toggle-top-right,.btn.btn-menu-toggler:active,.btn.btn-menu-toggler:focus,.btn.btn-menu-toggler:hover,.btn.btn-menu-toggler{border-color:#ddd !important}.panel-heading .header{width:100%}.panel-heading .header a.btn{line-height:19px;height:34px !important;border-color:#ddd}.panel-heading .header a.btn:hover{border-color:#d8d8d8}.file-input-wrapper span{font-size:13px;line-height:16px !important}.file-input-wrapper{line-height:0 !important;width:40px;height:28px;margin-bottom:2px;padding-top:5px !important;padding-right:5px !important;padding-left:5px !important}button.file_chooser_button{padding:3px 12px 6px 12px !important;vertical-align:middle}.file_chooser_button_attached{position:absolute;margin-top:8px !important;margin-left:-28px}button.file_chooser_button:hover,button.file_chooser_button:focus,button.file_chooser_button:active,button.file_chooser_button.active,button:focus>.fa-files-o{background-color:#f2f2f2 !important}input[type='button']:focus+.file_chooser_button_attached{background-color:#f2f2f2 !important}input[type='button'][disabled]+.file_chooser_button_attached{color:#888 !important}.file-input-wrapper:hover i,input:hover+.file_chooser_button_attached,.file_chooser_button:hover i,.file_chooser_button_emulate:hover,.file_chooser_button:hover,.file-input-wrapper:hover{background-color:#f2f2f2}.col_value>textarea+input[onclick][type='button']{margin-top:4px !important}.ui_buttons_row input.form-control.ui_textbox+input[onclick][type='button']{margin-top:6px !important}img[src='/empty.gif'],img[src='empty.gif'],img[src$='/timeplot/images/copyright.png'],.file-input-wrapper+br,.popover.bottom .arrow,.ui_form[action^='list_mail']>img,.ui_up_down_arrows_gap,.panel-body>.ui_form[action^='delete_recipes'] ~ a.ui_link,tr.ui_buttons_hr>td>table.table-hardcoded>tbody>tr>td>hr,body[data-current-product='usermin'] .ui_form+script+hr{display:none}.csf-container .csf-box h2{font-size:14px;margin-top:10px}.icons-row{margin:20px 5px 5px 0}.block{display:block}.inline-block{display:inline-block}.loading-sm{position:absolute;top:92px;left:45%;width:24px;height:24px;margin:0;-webkit-animation:nprogress-spinner 360ms linear infinite;animation:nprogress-spinner 360ms linear infinite;border:1px solid #44668c;border-top:1px solid #b3c6dd;border-radius:100%}.fa-loader{-webkit-animation:spin3d 1500ms infinite linear;animation:spin3d 1500ms infinite linear}.mCSB_inside>.mCSB_container{display:none !important}.mCSB_scrollTools .mCSB_draggerContainer{z-index:999;left:11px}#mCSB_1_dragger_vertical .mCSB_dragger_bar{width:5px}aside .mCustomScrollBox{padding-bottom:120px;color:transparent}.mce-fullscreen{padding:0 20px !important}.menu-row a i.fa{font-size:84px}.menu-row a.menu-link{color:#fff}.menu-row a.menu-link:hover{text-decoration:none;color:#eee}a#product-menu.dropdown-toggle.open:active,a#product-menu.dropdown-toggle.open.active,a#product-menu.dropdown-toggle:active,a#product-menu.dropdown-toggle.active,a#product-menu.dropdown-toggle:hover,.tr_tag label,.td_tag label,.table-hardcoded>tbody>tr>td.col_label b,.table-hardcoded>tbody>tr>td.col_label b a,td.col_value tt,td.col_value label,.table-hardcoded>tbody>tr>td>.table-hardcoded>tbody>tr.thead td b,.file-input-wrapper>span{background:0}.ui_checked_columns .td_tag,.navigation li,.ui_label a{cursor:pointer}.ui_checked_columns input{cursor:default}.navigation_module_trigger{cursor:pointer;text-decoration:none}.opener_container .opener_shown hr{width:99%;height:1px;border:0;border-top:1px solid #f0f0f0 !important}.opener_container .opener_shown .table.table-striped tbody tr:first-child td:first-child{vertical-align:middle !important}.thead .tdhead a.opener_trigger{vertical-align:text-top}.thead .tdhead a.opener_trigger,.opener_trigger{font-size:16px !important;font-weight:normal !important}.opener_trigger:first-child{margin-left:7px}.opener_trigger img{font-size:10px}.panel .panel-heading .panel-title a{margin-left:10px !important}td .opener_trigger[id]{margin-left:18px !important}.panel .panel-heading .panel-title a:before,td .opener_trigger[id]:before{font-family:'Authentic';position:absolute;margin-left:-10px;content:'\f088';color:#bfbfbf}.panel .panel-heading .panel-title a:not([data-toggle='collapse']):before{display:none}.panel .panel-heading .panel-title a:before{margin-left:-13px}.panel .panel-heading .panel-title a[aria-expanded='true']:before,td .opener_trigger.opener_container_opened[id]:before{margin-left:-13px;content:'\f085'}.panel .panel-heading .panel-title a[aria-expanded='true']:before{margin-left:-16px}a.opener_extra_container_a_style{padding-left:25px}a.opener_extra_container_a_style:before{position:absolute;margin-top:6px;margin-left:-13px !important;content:'\f088';color:#bfbfbf}a.opener_extra_container_a_style.opener_container_opened:before{margin-left:-15px !important;content:'\f085'}.panel-body table:not(.table-hardcoded) tr.thead+tr>td,.panel-body,.opener_container{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.050);box-shadow:inset 0 1px 1px rgba(0,0,0,.050)}.opener_container.opener_sub_container{margin-top:-1px;border:1px solid #eaeaea !important;border-top:0 !important;border-bottom:0 !important}.opener_sub_container.margined-top{border-top:1px solid #eaeaea !important;border-bottom:1px solid #eaeaea !important}.opener_hidden+.ui_form,.opener_sub_container+.ui_form{margin-top:10px}.m-w-10{max-width:10px !important}.margined-left--1{margin-left:-1px !important}.margined-left--2{margin-left:-2px !important}.margined-left--3{margin-left:-3px !important}.margined-left--5{margin-left:-5px !important}.margined-left-3{margin-left:3px !important}.margined-right-2{margin-right:2px !important}.margined-left-2{margin-left:2px !important}.margined-left-4{margin-left:4px !important}.margined-right--3{margin-right:-3px !important}.margined-right--4{margin-right:-4px !important}.margined-right-3{margin-right:3px !important}.margined-right-5{margin-right:5px !important}.margined-right-8{margin-right:8px !important}.margined-right-13{margin-right:13px !important}.margined-right--8{margin-right:-8px !important}.margined-right--10{margin-right:-10px !important}.margined-right--12{margin-right:-12px !important}.margined-right--18{margin-right:-18px !important}.margined-right--20{margin-right:-20px !important}.margined-left-8{margin-left:8px !important}.margined-left-40{margin-left:40px !important}.margined-top--1{margin-top:-1px !important}.margined-top--2{margin-top:-2px !important}.margined-top--3{margin-top:-3px !important}.margined-top--4{margin-top:-4px !important}.margined-top--5{margin-top:-5px !important}.margined-top--7{margin-top:-7px !important}.margined-top--10{margin-top:-10px !important}.margined-top--15{margin-top:-15px !important}.margined-top--20{margin-top:-20px !important}.margined-top--25{margin-top:-25px !important}.margined-top--30{margin-top:-30px !important}.margined-top-0{margin-top:0 !important}.margined-top-1{margin-top:1px !important}.margined-top-2{margin-top:2px !important}.margined-top-3{margin-top:3px !important}.margined-top-4{margin-top:4px !important}.margined-top-5{margin-top:5px !important}.margined-top-6{margin-top:6px !important}.margined-top-7{margin-top:7px !important}.margined-top-10{margin-top:10px !important}.margined-top-15{margin-top:15px !important}.margined-top-20{margin-top:20px !important}.margined-top-25{margin-top:25px !important}.margined-top-30{margin-top:30px !important}.margined-bottom-0{margin-bottom:0 !important}.margined-bottom-1{margin-bottom:1px !important}.margined-bottom-3{margin-bottom:3px !important}.margined-bottom-10{margin-bottom:10px !important}.margined-bottom-20{margin-bottom:20px !important}.margined-bottom--2{margin-bottom:-2px !important}.margined-bottom--3{margin-bottom:-3px !important}.margined-bottom--4{margin-bottom:-4px !important}.shifted-top--10{top:-10px !important}.shifted-top--20{top:-20px !important}.shifted-top--40{top:-40px !important}.shifted-top--50{top:-50px !important}.shifted-top--60{top:-60px !important}.shifted-top--70{top:-70px !important}.panel{position:relative;color:#333;border-color:rgba(228,228,228,.83);border-top-width:4px}.panel-group .panel{border-top-width:1px}.panel-body .tab-content .ui_form+.ui_form,.panel-body .tab-content form.ui_form+form.ui_form,.panel-body .tab-content form.ui_form+script+form.ui_form{margin-top:25px}.ui_form>.ui_grid_table.table-hardcoded:not(.sub_table_container):not(.ui_radio_table):not(.ui_grid_table),.panel-body .ui_form table.table .opener_shown table tbody tr,.panel-body .table-responsive table.table-subtable tbody tr td.col_value table.table,.panel-body>form>table:not(.table-hardcoded)>tbody>tr,.panel-body>form>table>tbody,.table table,table.ui_grid_table tbody{border:1px solid #eaeaea}.panel-body .tab-content .ui_form>.ui_grid_table.table-hardcoded{border:0}.panel-body .ui_table tbody tr td{padding:10px 5px}.panel-body>.tab-content .tab-pane>form.ui_form{margin-top:4px}.panel-body>.table.table-striped+.ui_link:active,.panel-body>.table.table-striped+.ui_link.active,.panel-body>.ui_link:active,.panel-body>.ui_link.active,input[type='reset']:active,input[type='button']:active,input[type='submit']:active,input[type='reset'].active,input[type='button'].active,input[type='submit'].active,input.btn-primary:active,input.btn-primary.active,.open>.dropdown-toggleinput.btn-primary,input.btn-success:active,input.btn-success.active,.open>.dropdown-toggleinput.btn-success,input.btn-info:active,input.btn-info.active,.open>.dropdown-toggleinput.btn-info,input.btn-warning:active,input.btn-warning.active,.open>.dropdown-toggleinput.btn-warning,input.btn-danger:active,input.btn-danger.active,.open>.dropdown-toggleinput.btn-danger{background-image:none}.panel-body>.table.table-striped+.ui_link:hover,.panel-body>.table.table-striped+.ui_link:focus,.panel-body>.table.table-striped+.ui_link:active,.panel-body>.table.table-striped+.ui_link.active,.panel-body>.ui_link:hover,.panel-body>.ui_link:focus,.panel-body>.ui_link:active,.panel-body>.ui_link.active,input[type='reset']:hover,input[type='button']:hover,input[type='submit']:hover,input[type='reset']:focus,input[type='button']:focus,input[type='submit']:focus,input[type='reset']:active,input[type='button']:active,input[type='submit']:active,input[type='reset'].active,input[type='button'].active,input[type='submit'].active{color:#333;border-color:#adadad;background-color:#f2f2f2}.panel-body>.ui_table>tbody tr:first-child:not(.ui_grid_row) td b,.ui_table_head td b{font-size:16px;font-weight:normal}.panel-body>.ui_table>tbody tr:first-child:not(.ui_grid_row) td,.ui_table_head td{height:38px;vertical-align:middle}.panel-body>.ui_table>tbody tr:first-child:not(.ui_grid_row),.ui_table_head{text-align:center;color:#333;border-color:#eaeaea;border-right:1px solid #eaeaea;border-left:1px solid #eaeaea;background-color:#f6f6f6}.panel-body form+table.table-hardcoded>tbody>tr.thead>td>b{font-size:16px;font-weight:normal;line-height:26px;padding-left:3px;text-align:center}.panel-body form+table.table-hardcoded>tbody>tr:not(.thead)>td{padding-left:6px}.panel-body form>.table-hardcoded,.panel-body form.ui_form[action^='index']>.table-hardcoded tr td *:not(.awobject):not(.btn-tiny){margin:0 !important}tr>td.col_value>table.ui_grid_table.table-hardcoded+b,tr>td.col_value>br+b,table>thead>tr>th{font-size:14px;font-weight:normal !important}.panel-body form table tbody tr.thead td{font-size:16px !important;line-height:16px;padding:3px 5px !important;text-align:left;vertical-align:initial;color:#333;border-color:#eaeaea;border-bottom:1px solid #eaeaea;background:0;background-color:#f6f6f6}.panel-body form table tbody tr.thead td b,.table-title b{font-weight:normal}.table-title b>tt{clear:both}.table-title tt{font-size:17px !important}.thead .tdhead{text-align:center !important}table.table-hardcoded>tbody>tr[bgcolor].thead>td>b{font-size:14px !important}form>table.table-hardcoded>tbody>tr[bgcolor].thead>td>b{font-size:18px !important;line-height:24px !important}.panel-body form table.ui_form_end_buttons tbody,.panel-body form table.ui_form_end_buttons tbody tr,.ui_form[action$='.cgi']>table.table-hardcoded>tbody,.ui_grid_table.table-hardcoded tbody,#popup>.ui_form>.table-responsive>table>tbody>tr>td,#popup>.ui_form>.table-responsive>table>tbody>tr,#popup>.ui_form>.table-responsive>table,#popup>.ui_form>.table-responsive{border:0}a.btn.ui_link:first-child,.panel-body form.ui_form table table table.ui_multi_select tbody tr.ui_multi_select_row td *,.ui_form[method='get'] table table table tbody tr td[valign='top'],.table-hardcoded>tbody>tr.ui_grid_row>td.ui_grid_cell,.panel-body>table.ui_buttons_table tr.ui_buttons_row>td.ui_buttons_label input[type='radio']{vertical-align:top !important}.panel-body form.ui_form table.table tbody tr td.opener_container div.opener_shown table:not(.table-hardcoded) tr td{border-right:1px solid #eaeaea}td.opener_container{border-right:1px solid #f0f0f0;border-left:1px solid #f0f0f0}.panel-body form.ui_form[action^='save_assignment'] .ui_table tbody tr td{padding:3px 5px 0}.panel-body p>a[href^='edit_part.cgi'],a[href^='edit_part.cgi']{margin-top:3px;margin-bottom:3px}.panel-body p>a[href^='edit_part.cgi'],table+a[href^='edit_part.cgi'],.panel-body>.table.table-striped+.ui_link,.panel-body>.ui_link,input[type='button'],input[type='reset'],input[type='submit']{font-size:14px;font-weight:normal;line-height:1.42857143;display:inline-block;margin-bottom:0;padding:6px 12px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-align:center;vertical-align:middle;white-space:nowrap;color:#333;border:1px solid transparent;border-color:#e2e2e2;border-radius:0;background-color:#fff;background-image:none}tt{font-size:12px !important;font-style:italic;padding-right:2px;padding-left:2px}.panel-body p>a[href^='edit_part.cgi'].disabled,table+a[href^='edit_part.cgi'].disabled,.panel-body>.table.table-striped+.ui_link.disabled,.panel-body>.table.table-striped+.ui_link[disabled],.panel-body>.ui_link.disabled,.panel-body>.ui_link[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;-webkit-box-shadow:none;box-shadow:none;filter:alpha(opacity=65)}.panel-body p>a[href^='edit_part.cgi']:active,.panel-body p>a[href^='edit_part.cgi'].active,table+a[href^='edit_part.cgi']:active,table+a[href^='edit_part.cgi'].active,.panel-body>.table.table-striped+.ui_link:active,.panel-body>.table.table-striped+.ui_link.active,.panel-body>.ui_link:active,.panel-body>.ui_link.active,input[type='button']:active,input[type='submit']:active,input[type='button'].active,input[type='submit'].active{border-color:#e2e2e2;outline:0;background-color:#f2f2f2;background-image:none}.panel-body p>a[href^='edit_part.cgi']:focus,.panel-body p>a[href^='edit_part.cgi']:active:hover,.panel-body p>a[href^='edit_part.cgi'].active:hover,table+a[href^='edit_part.cgi']:focus,table+a[href^='edit_part.cgi']:active:hover,table+a[href^='edit_part.cgi'].active:hover,.panel-body>.table.table-striped+.ui_link:focus,.panel-body>.table.table-striped+.ui_link:active:focus,.panel-body>.table.table-striped+.ui_link.active:focus,.panel-body>.ui_link:focus,.panel-body>.ui_link:active:focus,.panel-body>.ui_link.active:focus,input[type='button']:focus,input[type='submit']:focus,input[type='button']:active:focus,input[type='submit']:active:focus,input[type='button'].active:focus,input[type='submit'].active:focus{border-color:#e2e2e2}.panel-body p>a[href^='edit_part.cgi']:hover,.panel-body p>a[href^='edit_part.cgi']:focus,table+a[href^='edit_part.cgi']:hover,table+a[href^='edit_part.cgi']:focus,.panel-body>.table.table-striped+.ui_link:hover,.panel-body>.table.table-striped+.ui_link:focus,.panel-body>.ui_link:hover,.panel-body>.ui_link:focus,input[type='button']:hover,input[type='submit']:hover,input[type='button']:focus,input[type='submit']:focus{text-decoration:none;color:#333;border-color:#e2e2e2;background-color:#f2f2f2}.panel-body table tbody tr td table{border:0;border-color:transparent;background-color:transparent}.panel-body table.table table table.table td{padding:1px;border-left:1px solid #eaeaea}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr:not(.ui_checked_columns)>td,.table>tfoot>tr>td{vertical-align:middle}.panel-body table.table tbody tr td.col_value table{border-spacing:0;border-collapse:collapse;border:0;border-color:transparent}.popover-content ul,.table-subtable .table,h3.ui_subheading+form.ui_form>select[name^='parentuser'] ~ .dataTables_wrapper>table.table.table-striped,h3.ui_subheading+form.ui_form>select[name^='parentuser'] ~ table.table.table-striped{margin:10px 0}.popover-title{font-size:14px;font-weight:500;line-height:21px;padding-top:6px;padding-bottom:6px;background-color:#f7f7f7 !important}.popover-title button{margin-top:2px;margin-right:-4px}.popover-content{font-size:13px}.popover.bottom{width:270px;margin-top:10px}.popover-content{overflow-y:auto;max-height:300px}.popover-content table>thead>tr>th.head{font-weight:500 !important}.popover-content h5,.popover-content table>tbody>tr>td h5,.popover-content table>tbody>tr>td,.popover-content table>thead>tr>th{font-size:12px}.popover-content table>tbody>tr>td,.popover-content table>thead>tr>th{padding-top:3px;padding-bottom:3px}.popover.bottom .popover-title,.list-group .title,#about,.menu-row,a.opener_trigger,.opener_trigger{text-align:center}.row.icons-row div:after{display:table;clear:both;content:' '}.sub_table_container *{font-size:13px;line-height:1.42857143}html:not([data-background-style='nightRider']) .sub_table_container:not(.xcontent-force-no-styling) *:not(em):not(tt):not(a):not(.popover):not(.popover-title):not(.popover-content):not(.close-popover-trigger):not(.arrow):not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th):not(textarea):not(select):not(.opener_table_cell_style_small):not(.link_hover_effect):not(pre){color:#333;background-color:#fff !important}.container-fluid>.panel>.panel-body>pre:not([data-cm-viewer]):not(.comment),.container-fluid>.panel>.panel-body>ul>pre:not([data-cm-viewer]):not(.comment),.container-fluid>.panel>.panel-body .table-responsive>.table .sub_table_container td>pre,body.server-manager[data-uri*='shell.cgi'] .sub_table_container:not(.xcontent-force-no-styling) *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th),body.shell .sub_table_container:not(.xcontent-force-no-styling) *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th){color:#eeeeec;background-color:#292929}body.server-manager[data-uri*='shell.cgi'] pre,body.shell pre{border:0}body:not(.mysql):not(.postgresql) tr.thead ~ tr:last-child>td{padding:4px !important;-webkit-box-shadow:none !important;box-shadow:none !important}.sub_table_container.xcontent-force-no-styling tr.ui_checked_columns td,.sub_table_container.xcontent-force-no-styling tr.ui_checked_columns{background-color:#fff}body.syslog .CodeMirror{height:65vh}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected,.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#494662 !important}.CodeMirror-focused .CodeMirror-selected,.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#494662 !important}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#494662 !important}.CodeMirror-line>span,.CodeMirror-line>span>span{background:transparent !important}.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span::-moz-selection{background:#494662 !important}.CodeMirror-line>span::selection,.CodeMirror-line>span::-moz-selection{background:#494662 !important}.sub_table_container pre,.CodeMirror *,.sub_table_container .CodeMirror *{font-family:monospace;font-size:12px}.CodeMirror.cm-s-elegant,.panel-body>form>.CodeMirror.cm-s-elegant{border:1px solid #efefef}.CodeMirror-wrap,.panel-body>form>.CodeMirror{border:0}.CodeMirror-gutters{border-right:1px dotted #efefef}.submitter,.submitter+.submitter{margin-right:3px !important}.switch-toggle a,.switch-light span span{display:none}.switch-toggle{position:fixed;z-index:999;top:0;left:0;display:none;height:56px;padding:0 !important;table-layout:fixed}.switch-toggle *{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .13s ease-out;transition:all .13s ease-out}.switch-toggle label[for='open_dashboard'] i{font-size:19px}.switch-toggle a{display:block}.switch-toggle label,.switch-toggle>span{line-height:1.6em;vertical-align:middle}.switch-toggle *{font-size:1em}.switch-toggle input{position:absolute;opacity:0}.switch-toggle input+label{position:relative;z-index:2;display:table-cell;width:50%;margin:0;padding:0 .5em;text-align:center}.switch-toggle a{position:absolute;z-index:1;top:0;left:0;width:50%;height:100%;padding:0}.switch-toggle input:last-of-type:checked ~ a{left:50%}.switch-toggle.switch-3 label,.switch-toggle.switch-3 a{width:33.3333333333%}.switch-toggle.switch-3 input:checked:nth-of-type(2) ~ a{left:33.3333333333%}.switch-toggle.switch-3 input:checked:last-of-type ~ a{left:66.6666666667%}.switch-toggle.switch-4 label,.switch-toggle.switch-4 a{width:25%}.switch-toggle.switch-4 input:checked:nth-of-type(2) ~ a{left:25%}.switch-toggle.switch-4 input:checked:nth-of-type(3) ~ a{left:50%}.switch-toggle.switch-4 input:checked:last-of-type ~ a{left:75%}.switch-toggle.switch-5 label,.switch-toggle.switch-5 a{width:20%}.switch-toggle.switch-5 input:checked:nth-of-type(2) ~ a{left:20%}.switch-toggle.switch-5 input:checked:nth-of-type(3) ~ a{left:40%}.switch-toggle.switch-5 input:checked:nth-of-type(4) ~ a{left:60%}.switch-toggle.switch-5 input:checked:last-of-type ~ a{left:80%}.switch-mins{text-align:center;color:#c7d2e6;border-radius:0;background-color:rgba(11,11,11,.9)}.switch-mins label[for^='reserve_empty']{cursor:default}.switch-mins label{font-size:15px;font-weight:normal;cursor:pointer;opacity:.3;color:#c7c7c7;border-bottom:1px solid rgba(255,255,255,.09)}.switch-mins label[for='open_dashboard']{opacity:1}.switch-mins label[for='open_dashboard']>i.fa-dashboard,.switch-mins label[for='open_dashboard']>span{opacity:.3}.switch-mins input:checked+label[for='open_dashboard']>i.fa-dashboard,.switch-mins input:checked+label[for='open_dashboard']>span{opacity:1}.switch-mins input:checked+label{font-weight:500;opacity:1;color:#fff;border-bottom:1px solid transparent}.switch-mins a{border-radius:0;background-color:#386386}.switch-mins label i+span{display:block !important;margin-top:-5px;margin-bottom:0}.switch-mins label i.wbm-webmin{margin-top:2px;margin-bottom:6px}.switch-mins label i.wbm-webmin+span{margin-top:-7px}.switch-mins label i.fa-dashboard{margin-top:-6px}.switch-mins label i.fa-dashboard+span{margin-top:-8px}@-moz-document url-prefix(){.switch-mins label i.wbm-webmin+span{margin-top:-6px}.switch-mins label i.fa-dashboard{margin-top:-7px}}.__logo{position:fixed;z-index:999;bottom:-100px;left:0;height:70px;max-height:70px;padding:0 !important;table-layout:fixed;text-align:center;pointer-events:none;opacity:.4}.__logo.inited{-webkit-transform:translate(0,-140px) !important;transform:translate(0,-140px) !important}.strike-out{text-decoration:line-through}.opacity-0{cursor:default;opacity:0}.opacity-0_2{cursor:default;opacity:.2}.opacity-0_3{cursor:default;opacity:.3}.opacity-0_4{cursor:default;opacity:.4}.opacity-0_5{cursor:default;opacity:.5}.opacity-0_6{cursor:default;opacity:.6}.opacity-0_7{cursor:default !important;opacity:.7}input[type='range']{border:1px solid transparent !important;-webkit-appearance:none}input[type='range']::-webkit-slider-runnable-track{height:3px;border:0;border-radius:3px;background:#ddd}input[type='range']::-webkit-slider-thumb{width:10px;height:10px;margin-top:-3px;border:0;border-radius:50%;background:#aaa;-webkit-appearance:none}input[type='range']:focus{outline:0}input[type='range']:focus::-webkit-slider-runnable-track{background:#ccc}input[type='range']::-moz-range-track{height:3px;border:0;border-radius:3px;background:#ddd}input[type='range']::-moz-range-thumb{width:10px;height:10px;border:0;border-radius:50%;background:#aaa}input[type='range']:-moz-focusring{outline:1px solid transparent !important;outline-offset:-1px}input[type='range']::-ms-track{height:3px;color:transparent;border-width:6px 0;border-color:transparent !important;background:transparent}input[type='range']::-ms-fill-lower{border-radius:10px;background:#777}input[type='range']::-ms-fill-upper{border-radius:10px;background:#ddd}input[type='range']::-ms-thumb{width:10px;height:10px;border:0;border-radius:50%;background:#aaa}input[type='range']:focus::-ms-fill-lower{background:#888}input[type='range']:focus::-ms-fill-upper{background:#ccc}.webmin .at-help{max-width:420px}.module-help ul,.webmin .at-help ul{padding-left:25px}.webmin .at-help ul li h5{margin-bottom:0}tr.atshover:hover td kbd,tr.atshover:hover td code,tr.atshover:hover td div,tr.atshover:hover td span:not(.awobject),tr.atshover:hover td{background-color:#f5f5f5 !important}.atshover.settings_option_padded td.col_label b,.atshover.settings_option_padded td.col_label .smaller,.atshover.settings_navigation_color_rows td.col_label b,.atshover.settings_navigation_color_rows td.col_label .smaller,.atshover.settings_background_color_rows td.col_label b,.atshover.settings_background_color_rows td.col_label .smaller{margin-left:10px}.col_value.atssection div.smaller{margin-top:-2px !important;padding-right:5%}.col_value.atssection div.smaller sup.fa{font-size:90% !important}.col_value.atssection div.smaller i:not(.text-normal.no-padding){font-size:10px;color:#555}.col_label.atscontent>div.smaller.text-normal.no-padding em,.col_value.atssection div.smaller.text-normal.no-padding i{font-size:11px !important;background-color:transparent !important}.col_value.atssection div.smaller a{font-size:10px;color:#1d599d}.col_value.atscontent{width:40%}.col_label.atscontent{width:60%;padding-left:5px !important}.col_label.atscontent b{font-size:13px;font-weight:500}.col_value.atscontent *{font-size:13px}.col_label.atscontent div.smaller.text-normal.no-padding{margin-top:-2px !important;padding-right:5%;padding-left:1px}.col_value.atscontent span>input[name='settings_side_slider_background_refresh_time']{min-width:48px}.col_label.atscontent div.smaller.text-normal>code,.col_value.atssection div.smaller.text-normal>code{font-size:11px;color:#555}tr.atshover .col_value>a.file-input-wrapper span,tr.atshover .col_value>label,.col_value.atscontent span>label{background:transparent !important}tr.atshover:hover td.atscontent span{background-color:transparent !important}.va-tb{vertical-align:text-bottom !important}.vertical-align{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.vertical-align>[class^='col-'],.vertical-align>[class*=' col-']{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;align-items:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.row.icons-row .small-icons-container.grayscaled:not(.highlighted),.row.icons-row .icons-container.grayscaled:not(.highlighted){-webkit-filter:grayscale(100%);filter:grayscale(100%)}.row.icons-row .small-icons-container.grayscaled:not(.highlighted):hover,.row.icons-row .icons-container.grayscaled:not(.highlighted):hover{-webkit-filter:grayscale(1%);filter:grayscale(1%)}.row.icons-row .small-icons-container:not(.highlighted),.row.icons-row .icons-container:not(.highlighted){background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fdfdfd),to(#f3f3f3)) repeat scroll 0 0 transparent;background:linear-gradient(to bottom,#fdfdfd 0,#f3f3f3 100%) repeat scroll 0 0 transparent}.row.icons-row .small-icons-container.highlighted,.row.icons-row .icons-container.highlighted{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#ffffe9),to(#ffffc1)) repeat scroll 0 0 transparent;background:linear-gradient(to bottom,#ffffe9 0,#ffffc1 100%) repeat scroll 0 0 transparent}.row.icons-row.inline-row .small-icons-container,.row.icons-row.inline-row .icons-container{overflow:visible;min-width:37px;max-width:37px;min-height:37px;max-height:37px;margin:4px;margin:4.9px;margin-left:25px;padding-top:6px}.row.icons-row.inline-row div.small-icons-container>span.hidden-forged.hidden-forged-6,.row.icons-row.inline-row div.icons-container>span.hidden-forged.hidden-forged-6{display:inline !important;margin-left:-31px}.row.icons-row.inline-row div.small-icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:before,.row.icons-row.inline-row div.small-icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:after,.row.icons-row.inline-row div.icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:before,.row.icons-row.inline-row div.icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:after{top:1px}.row.icons-row.inline-row div.small-icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:after,.row.icons-row.inline-row div.icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:after{left:-2px}.row.icons-row.inline-row .small-icons-container:not(.forged-xx-skip) img,.ui_form .row.icons-row.inline-row .small-icons-container:not(.forged-xx-skip) img{margin-top:0}.row.icons-row.inline-row .small-icons-container img,.row.icons-row.inline-row .icons-container img{max-width:23px;max-height:23px}.row.icons-row .small-icons-container,.row.icons-row .icons-container{overflow:hidden;min-width:92px;max-width:92px;min-height:123px;max-height:123px;margin:8px;margin:8.3px;padding:3px;cursor:pointer;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;-webkit-transition-duration:.1s;transition-duration:.1s;-webkit-transition-property:transform;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transform:translateZ(0);transform:translateZ(0);text-align:center;border:1px solid #eaeaea;border-bottom:1px solid #ddd;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.06);box-shadow:0 1px 1px rgba(0,0,0,.06);-webkit-backface-visibility:hidden;backface-visibility:hidden;-moz-osx-font-smoothing:grayscale}@supports(-ms-ime-align:auto){.row.icons-row .small-icons-container,.row.icons-row .icons-container{-webkit-transition-duration:.01s;transition-duration:.01s;-webkit-transform:none;transform:none}}.row.icons-row .icons-container-stretched{margin:20px 8px 20px 8px;margin:20px 8.3px 20px 8.3px}.row.icons-row .icons-container img{max-width:42px;max-height:42px}.row.icons-row .small-icons-container{min-width:53px;max-width:53px;min-height:53px;max-height:53px;margin:11.5px;padding-top:17px}.row.icons-row .small-icons-container img{max-width:30px;max-height:30px}form .row.icons-row .small-icons-container{padding-top:7px}.row.icons-row .small-icons-container a,.row.icons-row .icons-container a{overflow:hidden;word-break:normal}body[data-language='ru'] .row.icons-row .small-icons-container a,body[data-language='ru'] .row.icons-row .icons-container a{word-wrap:break-word}@-moz-document url-prefix(){form .row.icons-row .small-icons-container{padding-top:10px}.row.icons-row .small-icons-container{padding-top:11px}.row.icons-row .small-icons-container img{max-width:30px;max-height:30px}.vertical-align>[class^='col-'].small-icons-container,.vertical-align>[class*=' col-'].small-icons-container{display:inline-block}}.ui_form .row.icons-row .small-icons-container img{padding-top:0}.ui_form .row.icons-row .small-icons-container:not(.forged-xx-skip) img{margin-top:9px}.row.icons-row:not(.inline-row) .small-icons-container.animated:hover,.row.icons-row:not(.inline-row) .small-icons-container.animated:focus,.row.icons-row:not(.inline-row) .small-icons-container.animated:active,.row.icons-row:not(.inline-row) .icons-container.animated:hover,.row.icons-row:not(.inline-row) .icons-container.animated:focus,.row.icons-row:not(.inline-row) .icons-container.animated:active{-webkit-transform:translateY(5px);transform:translateY(5px)}.row.icons-row .ui_icon{margin-bottom:8px}.row.icons-row .icon_link{margin-bottom:5px;text-align:center !important;color:#666;text-shadow:0 1px 0 #fff}.tab-content>.tab-pane.active>div.row.icons-row{margin-top:25px !important}.table-hardcoded>tbody>tr>td>.table-hardcoded+p{margin-top:5px;margin-bottom:0}.table-hardcoded>tbody>tr>td>.table-hardcoded>tbody>tr.thead b{font-size:13px}.table-hardcoded>tbody>tr>td.col_value b{line-height:14px}.table-hardcoded tbody tr>td[nowrap]{padding-top:3px}tr>form[action='edit_field.cgi']+input.ui_hidden+input.ui_hidden+td[nowrap]{padding-top:0}tr>form[action='edit_field.cgi']+input.ui_hidden+input.ui_hidden+td[nowrap] ~ td>input:first-child{margin-left:7px}.table-striped>tbody>tr:nth-child(odd){background-color:#f7f7f7}table.dataTable tbody th,table.dataTable tbody td,.table-subtable tbody tr td{padding:0}tr.thead b,.table-title b,.panel-body form+table.table-hardcoded>tbody>tr.thead>td b{line-height:28px}tr.thead,.table-title,.panel-body form+table.table-hardcoded>tbody>tr.thead>td{font-size:18px !important;height:35px;padding:1px 10px 3px 10px !important;text-align:center;vertical-align:baseline !important;color:#282828 !important;border-top:solid #eaeaea !important;border-top-width:2px !important;border-top-color:#f0f0f0 !important;border-right-color:#f0f0f0 !important;border-bottom:1px solid rgba(216,216,216,.24) !important;border-left-color:#f0f0f0 !important;background-color:#f6f6f6 !important}.col_header.opener_table_cell_style_small{background-color:#f6f6f6 !important}tr.thead td b{font-size:18px !important;line-height:25px !important}tr.thead{border-right:1px solid #eaeaea !important;border-left:1px solid #eaeaea !important}td[bgcolor='#99CCFF']{background-color:transparent}tr.thead+tr[bgcolor='#feffff']:last-child{border:1px solid #eaeaea}form .table .table-hardcoded tr.thead,form .sub_table_container .table-hardcoded tr.thead{height:auto}.table-title.left{text-align:left !important}.clear-formatting *,.clear-formatting{font-size:inherit !important}table.table.table-striped.table-condensed>thead>tr:first-child,table.dataTable{border-top:2px solid #f2f2f2 !important;border-right:1px solid #eaeaea !important;border-left:1px solid #eaeaea !important}td.col_value>table.table.table-striped.table-condensed>thead>tr{border-top:2px solid #f0f0f0 !important}.custom_table_head,td.col_value>table.table.table-striped.table-condensed>thead>tr>th{font-size:14px;font-weight:normal !important;line-height:14px;background-color:#f6f6f6}.panel-body form table.table.table-striped.table-condensed{margin-top:2px}body:not(.csf) table+br{display:block;margin-top:0;content:''}button[type='button'][onclick^='multi_']+br+button[type='button'][onclick^='multi_']{margin-top:-1px}button[type='button'][onclick^='multi_']{margin-right:10px;margin-left:10px}.ui_table,.table{margin-top:4px !important;margin-bottom:4px !important}.table>thead>tr>th{border-bottom:0}tr[bgcolor='#feffff']>td:last-child{padding-right:2px}.table.table-striped>tbody,.table-hardcoded>tbody>tr>td>.table-hardcoded>tbody,.table.table-striped.table-condensed .opener_container .table-hardcoded table,.panel-body form+table.table-hardcoded tbody tr[bgcolor='#feffff'],.panel-body form+table.table-hardcoded tbody tr[bgcolor='#ffffff']{border:1px solid #eaeaea !important}.table-hardcoded>tbody>tr>td.col_value>.table-hardcoded>tbody,.table-hardcoded>tbody>tr>td.col_label>.table-hardcoded>tbody{border:1px solid transparent !important}.table.table-striped.table-condensed .opener_container .table-hardcoded table,.ui_table,.ui_table_body,.ui_table_row,.ui_value{overflow-x:auto;overflow-y:hidden;width:100%;border-spacing:0;border-collapse:collapse;vertical-align:middle !important;border:0;border-color:transparent;-ms-overflow-style:0;-webkit-overflow-scrolling:touch}.table.table-striped.table-condensed tbody tr td.opener_container .table-hardcoded tr,.table.table-striped.table-condensed tbody tr td.opener_container .table-hardcoded tr>td.col_label,.table.table-striped.table-condensed tbody tr td.opener_container .table-hardcoded tr>td.col_value,.col_label,.col_value,.table-subtable tbody tr td.no-border,.table-subtable tbody tr td.col_label,.table-subtable tbody tr td.col_value,.panel-body .table tbody,.table table table td{border-spacing:0;border-collapse:collapse;vertical-align:middle;border:0;border-color:transparent}.ui_buttons_hr>td>table.table-hardcoded>tbody>tr>td[nowrap]{font-size:22px;padding:10px 0 4px;text-align:center;color:#333;border:none !important;background:none !important}.ui_buttons_label,.ui_buttons_value,.table table tbody tr td.col_label *:not(i):not(.btn):not(.awobject):not(input):not(code):not(.ui_select):not(.form-control):not([type='button']),.table table tbody tr td.col_value *:not(i):not(.btn):not(.awobject):not(input):not(code):not(.ui_select):not(.form-control):not([type='button']),.ui_value table tr td{vertical-align:baseline}.ui_buttons_row{height:46px}.ui_buttons_row button{margin-right:6px}.ui_buttons_value table tr td{padding-bottom:4px;padding-left:4px}.ui_checked_checkbox{width:auto !important;vertical-align:middle}.ui_form>.table-responsive>.table.table-subtable>tbody>tr>td>table>tbody tr{font-size:16px;padding:2px 5px;color:#333;border-color:#f0f0f0;background:0;background-color:#f5f5f5}.ui_form[action^='delete_mons'] tr.ui_checked_columns>td:last-child{padding-top:2px;padding-left:20px}.ui_form[action^='reply_mail']>input+select,.ui_form[action^='reply_mail']>input+input,.ui_form[action^='delete_mail']>input+select,.ui_form[action^='delete_mail']>input+input{margin:auto 2px}.ui_form[action^='send_mail'] table.table-hardcoded>tbody>tr>td.col_value b,.ui_form[action^='savekey'] table.table-hardcoded>tbody>tr>td.col_value b{font-size:13px;font-weight:normal}.ui_grid_cell:first-child .ui_form{padding-top:6px;padding-left:4px}.ui_grid_cell:not(:first-child) .table{padding-left:2px}.ui_grid_row{height:10px}.ui_grid_table,.ui_form table.table{width:100%}.ui_label{padding:10px 5px;border-collapse:collapse;text-align:left;vertical-align:middle;white-space:nowrap}.ui_label b,.ui_buttons_table.table-hardcoded tbody>tr.ui_buttons_row td.ui_buttons_label{padding-right:10px}.ui_table td,.ui_table tbody{margin:0;padding:4px 0;border-spacing:0}.ui_table thead>tr>th,.ui_table tbody>tr>th,.ui_table tfoot>tr>th,.ui_table thead>tr>td,.ui_table tbody>tr>td,.ui_table tfoot>tr>td{line-height:1.42857143;padding:8px;border-spacing:0;vertical-align:middle !important;border-top:1px solid #eaeaea}table.table thead tr th{padding-top:8px;padding-bottom:8px}.ui_table_row{margin:0;padding:0;border-spacing:0;border-collapse:collapse}.ui_up_down_arrows_down{margin-bottom:2px}.ui_up_down_arrows_down,.ui_up_down_arrows_up{margin-left:10px}.ui_up_down_arrows_up{margin-bottom:-4px}.ui_up_down_arrows_up,.ui_up_down_arrows_down{max-width:24px;max-height:24px}.ui_value{width:100%;text-align:left;vertical-align:middle;white-space:nowrap}.ui_value label:last-child{margin-right:15px}::-moz-focus-inner{border:0 !important}:focus,:active{outline:none !important}a#hiddenopener_docs+a+br+div.opener_shown>table.table-hardcoded{margin-bottom:7px;border:1px solid #eaeaea}a#hiddenopener_docs+a+br+div.opener_shown>table.table-hardcoded>tbody>tr>td{padding:4px 10px}a#product-menu{padding:0}.text-force-link,.text-force-link-hover:hover{color:#1d599d !important}a,.ui_checked_checkbox,.panel-body .ui_table tbody tr td a b{text-decoration:none;color:#1d599d}i[data-port-href]{cursor:alias}.badge-success{color:#fff !important;border-color:#2c8828 !important;background-color:#349e30 !important}.badge-danger{color:#fff !important;border-color:#c9302c !important;background-color:#d51b16 !important}.bg-dark-red{background-color:#c9302c}.bg-dark-red:hover{background-color:#ba2421}.bg-dark-yellow{background-color:#a46813}.bg-dark-yellow:hover{background-color:#966013}.bg-light-grey{background-color:#eee}.bg-light-grey:hover{background-color:#eee}.bg-white{background-color:#fff}.bg-white:hover{background-color:#fff}.bg-semi-transparent{background-color:rgba(74,74,74,.17) !important}.bg-primary{background-color:#3391e2 !important}.bg-success{background-color:#dff0d8 !important}.bg-info{background-color:#d9edf7 !important}.bg-warning{background-color:#fcf8e3 !important}.bg-danger{background-color:#f2dede !important}.bg-primary-dark{background-color:#698ba8 !important}.bg-success-dark{background-color:#b3cbaa !important}.bg-info-dark{background-color:#95abb6 !important}.bg-warning-dark{background-color:#b0a878 !important}.bg-danger-dark{background-color:#c29393 !important}.badge{padding:2px 7px 3px 7px}.badge-custom{font-size:12px;line-height:1;display:inline-block;min-width:10px;padding:2px 7px 3px 7px;text-align:center;vertical-align:baseline;white-space:nowrap;color:#444;border-radius:10px;background-color:#f0f0f0}tr:hover .badge-drivestatus{color:#333;background-color:#fff}.background--bordered{border-top:4px solid rgba(0,0,0,.20)}.background-success{background-color:#1e8e04}.background-primary{background-color:#1886bd}.background-info{background-color:#4fa7c1}.background-warning{background-color:#b5791c}.background-danger{background-color:#be3c39}.modal-header.background-success button,.modal-header.background-success h4,.modal-header.background-primary button,.modal-header.background-primary h4,.modal-header.background-info button,.modal-header.background-info h4,.modal-header.background-warning button,.modal-header.background-warning h4,.modal-header.background-danger button,.modal-header.background-danger h4{color:#f7f7f7}.text-black{color:#000 !important}.text-white{color:#fff}.text-lighter{color:#ccc}.text-light{color:#999}.text-semi-light{color:#888}.text-semi-dark{color:#777}.text-dark{color:#444}.text-darker{color:#333}.text-semi-dark.text-dark-hoverd:hover,.text-dark.text-dark-hoverd:hover{color:#d43f3a}.text-normal,a.text-normal{color:#666}.sub_table_container.table-hardcoded tr td[width='25%']>a,a.opener_trigger,a:focus,a:hover,a.text-normal a:focus,a.text-normal:hover{color:#1d599d}a.ui_link[href^='create_form']:not(.ui_link_replaced),a.ui_link[href^='edit_log']:not(.ui_link_replaced){margin:7px auto}a:focus,a:hover{text-decoration:none;outline:0}a.link_hover_effect{color:#333}a.link_hover_effect.active,a.link_hover_effect:active,a.link_hover_effect:hover{color:#1d599d}a:hover,a:active{color:#1d599d}a.no_effect,a.no_effect.active,a.no_effect:active,a.no_effect:hover{color:#333}.font-size-120p{font-size:120%}.font-size-90p{font-size:90%}.font-size-80p{font-size:80%}.font-size-75p{font-size:75%}.font-style-normal{font-style:normal !important}html:not(.session_login),body:not(.session_login){font-size:13px;line-height:1.42857143;color:#333;background-color:#f0f0f0}.messenger-message-inner,.file-manager .jsPanel-hdr h3,body:not(.session_login),html:not(.session_login),.tooltip,.popover{font-family:'Roboto'}.font-family-default{font-family:'Roboto'}body,html{height:100%;margin:0;padding:0}body[data-current-product='usermin'] .ui_grid_table.table-hardcoded.table.table-striped.table-condensed.table-subtable,body[data-current-product='usermin'] .ui_buttons_table.table-hardcoded.table.table-striped.table-condensed.table-subtable{border:none !important}body[data-current-product='usermin'] table.ui_grid_table tr.ui_grid_row,body[data-current-product='usermin'] table.ui_buttons_table tr.ui_buttons_row{background:0}textarea+br+input[type='submit'].btn,.table-hardcoded .table-condensed input[type='radio']+label.radio{margin-top:5px !important}input.submitter+input.submitter,form.ui_form>.dataTables_wrapper>table.table.table-striped>tbody tr.ui_checked_columns>td[valign='top']>input[type='checkbox'],form.ui_form>table.table.table-striped>tbody tr.ui_checked_columns>td[valign='top']>input[type='checkbox']{margin-left:3px !important}form.ui_form>table.table>table>tbody>tr>td .ui_select{margin:0 4px}html,body{height:100%;-webkit-overflow-scrolling:touch}html{overflow:hidden}body{overflow:auto}html>head+body.modal-open{overflow:hidden !important}img{max-width:100%}img[src$='empty.gif']{padding:0 7px 0 4px}img[src='/images/close.gif']:before,img[src='/images/closed.gif']:before{font-family:'Authentic';font-size:15px;content:'\f088';text-decoration:none;color:#666}img[src='/images/close.gif']:before{content:'\f085'}img[src='/images/open.gif'],img[src='/images/close.gif'],img[src='/images/closed.gif']{content:' '}img[src='/images/open.gif']:before{font-family:'Authentic';font-size:15px;content:'\f088';text-decoration:none;color:#666}body.virtual-server img[src*='images/tick.gif']{visibility:hidden;pointer-events:none}input.btn-danger{color:#fff;border-color:#d43f3a;background-color:#d9534f}input.btn-danger .badge{color:#d9534f;background-color:#fff}.ui_radio_columns>td[nowrap]>label[for]>.ui_img{width:8px}input.btn-danger.disabled,input.btn-danger[disabled],fieldset[disabled] input.btn-danger,input.btn-danger.disabled:hover,input.btn-danger[disabled]:hover,fieldset[disabled] input.btn-danger:hover,input.btn-danger.disabled:focus,input.btn-danger[disabled]:focus,fieldset[disabled] input.btn-danger:focus,input.btn-danger.disabled:active,input.btn-danger[disabled]:active,fieldset[disabled] input.btn-danger:active,input.btn-danger.disabled.active,input.btn-danger[disabled].active,fieldset[disabled] input.btn-danger.active{border-color:#d43f3a;background-color:#d9534f}input.btn-danger:hover,input.btn-danger:focus,input.btn-danger:active,input.btn-danger.active,.open>.dropdown-toggleinput.btn-danger{color:#fff;border-color:#ac2925;background-color:#c9302c}input.btn-info{color:#fff;border-color:#46b8da;background-color:#5bc0de}input.btn-info .badge{color:#5bc0de;background-color:#fff}input.btn-info.disabled,input.btn-info[disabled],fieldset[disabled] input.btn-info,input.btn-info.disabled:hover,input.btn-info[disabled]:hover,fieldset[disabled] input.btn-info:hover,input.btn-info.disabled:focus,input.btn-info[disabled]:focus,fieldset[disabled] input.btn-info:focus,input.btn-info.disabled:active,input.btn-info[disabled]:active,fieldset[disabled] input.btn-info:active,input.btn-info.disabled.active,input.btn-info[disabled].active,fieldset[disabled] input.btn-info.active{border-color:#46b8da;background-color:#5bc0de}input.btn-info:hover,input.btn-info:focus,input.btn-info:active,input.btn-info.active,.open>.dropdown-toggleinput.btn-info{color:#fff;border-color:#269abc;background-color:#31b0d5}input.btn-primary{color:#fff;border-color:#357ebd;background-color:#428bca}input.btn-primary .badge{color:#428bca;background-color:#fff}input.btn-primary.disabled,input.btn-primary[disabled],fieldset[disabled] input.btn-primary,input.btn-primary.disabled:hover,input.btn-primary[disabled]:hover,fieldset[disabled] input.btn-primary:hover,input.btn-primary.disabled:focus,input.btn-primary[disabled]:focus,fieldset[disabled] input.btn-primary:focus,input.btn-primary.disabled:active,input.btn-primary[disabled]:active,fieldset[disabled] input.btn-primary:active,input.btn-primary.disabled.active,input.btn-primary[disabled].active,fieldset[disabled] input.btn-primary.active{border-color:#357ebd;background-color:#428bca}input.btn-primary:hover,input.btn-primary:focus,input.btn-primary:active,input.btn-primary.active,.open>.dropdown-toggleinput.btn-primary{color:#fff;border-color:#285e8e;background-color:#3071a9}b.btn.btn-success.btn-tiny{color:#fff !important;border-color:#2c8828 !important;background-color:#349e30 !important}b.btn.btn-success.btn-tiny:hover{color:#fff !important;border-color:#256d22 !important;background-color:#32942f !important}input.btn-success{color:#fff;border-color:#2c8828 !important;background-color:#349e30 !important}input.btn-success .badge{color:#5cb85c;background-color:#fff}input.btn-success.disabled,input.btn-success[disabled],fieldset[disabled] input.btn-success,input.btn-success.disabled:hover,input.btn-success[disabled]:hover,fieldset[disabled] input.btn-success:hover,input.btn-success.disabled:focus,input.btn-success[disabled]:focus,fieldset[disabled] input.btn-success:focus,input.btn-success.disabled:active,input.btn-success[disabled]:active,fieldset[disabled] input.btn-success:active,input.btn-success.disabled.active,input.btn-success[disabled].active,fieldset[disabled] input.btn-success.active{border-color:#4cae4c;background-color:#5cb85c}input.btn-success:hover,input.btn-success:focus,input.btn-success:active,input.btn-success.active,.open>.dropdown-toggleinput.btn-success{color:#fff;border-color:#398439;background-color:#449d44}input.btn-warning{color:#fff;border-color:#eea236;background-color:#f0ad4e}input.btn-warning .badge{color:#f0ad4e;background-color:#fff}input.btn-warning.disabled,input.btn-warning[disabled],fieldset[disabled] input.btn-warning,input.btn-warning.disabled:hover,input.btn-warning[disabled]:hover,fieldset[disabled] input.btn-warning:hover,input.btn-warning.disabled:focus,input.btn-warning[disabled]:focus,fieldset[disabled] input.btn-warning:focus,input.btn-warning.disabled:active,input.btn-warning[disabled]:active,fieldset[disabled] input.btn-warning:active,input.btn-warning.disabled.active,input.btn-warning[disabled].active,fieldset[disabled] input.btn-warning.active{border-color:#eea236;background-color:#f0ad4e}input.btn-warning:hover,input.btn-warning:focus,input.btn-warning:active,input.btn-warning.active,.open>.dropdown-toggleinput.btn-warning{color:#fff;border-color:#d58512;background-color:#ec971f}.btn-link-bordered:hover,.btn-link-bordered:focus,.btn-link-bordered:active,.btn-link-bordered.active,.btn-link-bordered{border:1px solid rgba(51,122,183,.25)}.btn-link-bordered:hover,.btn-link-bordered:focus{text-decoration:none;border:1px solid rgba(51,122,183,.45)}.ui_checked_columns:hover a,.ui_checked_columns:hover .btn{cursor:default !important}.btn-transparent:active{-webkit-box-shadow:none;box-shadow:none}.btn.btn-transparent-link{color:#333}.btn.btn-transparent-link:hover{color:#1d599d}.btn.btn-transparent-link-inverse{color:#1d599d}.btn.btn-transparent-link-inverse:hover{color:#333}.btn.btn-transparent-link-force,.btn.btn-transparent-link-force:hover{color:#1d599d}input.form-control{padding-left:6px;background:#fff}input[name='add1'],input[name='add2']{margin-top:2px;margin-bottom:2px}input[name='cipher_list']{min-width:99%}.awobject,.awobject label,.awobject label:after,.awobject label:before{cursor:default !important}input[name='jump']{max-width:50px !important}input[name]:not([type='checkbox']):not([type='radio']):not([type='image']){min-height:28px}.ui_select+input[type='image']{height:14px;border:0}input[type='radio'],input[type='checkbox']{margin:0}label[for='script_whmcs']{margin-right:20px}input[name^='sizefile_'],input[name^='size']{max-width:90px !important}label.radio+input[type='text'].form-control,label.checkbox+input.form-control{margin-left:0}li>a[target='page']{font-size:14px}pre{font-family:monospace;font-size:12px;overflow:auto;margin:0;white-space:pre;word-wrap:normal;border:0;border:1px solid #e4e4e4;border-radius:0}pre+form,form+pre{margin-top:10px;margin-bottom:10px}pre+center{margin-top:6px}.clear-formatting pre{white-space:pre-wrap}select+input{height:28px;margin-top:-3px;margin-left:3px}select#CSFlognum,select.ui_select,select{font-size:13px;display:inline-block;max-height:28px;padding:3px 4px 4px 4px;cursor:pointer;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;vertical-align:middle !important;color:#333;border:1px solid #e8e8e8;border-radius:0;outline:0;background:#f8f8f8;background-color:#fff;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}select.input-sm:not(.heighter-34){padding:2px 4px 3px 4px}[data-uri*='settings-upload.cgi'] button.file_chooser_button_preview{display:inline;width:40px;height:28px;margin-right:0 !important;margin-bottom:2px !important;margin-left:2px;vertical-align:bottom}[data-uri*='settings-upload.cgi'] button.file_chooser_button_preview i{font-size:12px;pointer-events:none}.file_chooser_button_preview.disabled,.file_chooser_button_preview.disabled i,.file-input-wrapper.disabled,.file-input-wrapper.disabled i,select[disabled]{background-color:#eee !important}input[type='submit']+select{font-size:14px;height:34px;max-height:34px}select#CSFlognum:focus,select.ui_select:focus,select:focus{border-color:#66afe9 !important;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) !important;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) !important}select.ui_select:not(multiple),select:not(multiple){min-height:28px}select[multiple]{min-height:120px !important}select[multiple][size='7'].ui_select,select[multiple][size='7']{min-height:144px !important}select[multiple][size='12'].ui_select,select[multiple][size='12']{min-height:228px !important}label.select-styled.fstreched,label.select-styled.fstreched select{width:100%}label.select-styled select{font-size:13px;display:inline-block;height:28px;min-height:auto;max-height:auto;margin:0;padding:0 6px;cursor:pointer;color:#888;border:1px solid #e8e8e8;border-radius:0;outline:0;background:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}label.select-styled select option{font-size:13px}@media screen and (-webkit-min-device-pixel-ratio:0){label.select-styled select{padding-right:18px}}label.select-styled{font-weight:normal;position:relative}label.select-styled:after{font:10px monospace;position:absolute;top:7px;right:4px;padding:0 0 2px;content:'<>';-webkit-transform:rotate(90deg);transform:rotate(90deg);pointer-events:none;color:#bbb;border-bottom:1px solid #e8e8e8}label.select-styled:before{position:absolute;top:0;right:6px;display:block;width:20px;height:20px;content:'';pointer-events:none;background:transparent}label.select-styled.select-styled-small select option,label.select-styled.select-styled-small select{font-size:11px}label.select-styled.select-styled-small select{line-height:20px;height:22px;padding:0 6px}label.select-styled.select-styled-small:after{font:9px monospace;top:5px;right:4px}label.select-styled.select-styled-no-border select{border:1px solid transparent}label.select-styled.select-styled-small.select-styled-no-icon:after{display:none}span>.submitter+span>.submitter,.submitter+.submitter{margin-right:0 !important;margin-left:0 !important}font[color='#000000'],font[color='0000FF']{color:#333}table tbody tr td.col_value .ui_opt_textbox{height:28px}table tr:not([role='row']) td.td_tag{word-break:break-all;-ms-word-break:break-all;-webkit-hyphens:auto;hyphens:auto;-ms-hyphens:auto}form[action='view_table.cgi'] table tr:not([role='row']) td.td_tag{word-break:normal;-ms-word-break:normal}form[action='view_table.cgi'] table tr:not([role='row']) td.td_tag>.table-hardcoded{width:100%}form[action='view_table.cgi'] table tr:not([role='row']) td.td_tag>.table-hardcoded .thead td{text-align:left !important}table tr td input{margin-right:0;border:0}table tr td label{font-weight:normal;color:#333}.ui_checked_columns td[nowrap]>label{padding-right:2px}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{padding-left:20px;background-position:left center}.panel-body>h3{font-size:16px;font-weight:normal}table.table table table.table tbody td{border-top:1px solid #eaeaea}table.table tbody tr td>table tbody tr td[nowrap] p br,.sub_table_container.table-hardcoded tr td.col_value select.ui_select+br{line-height:30px}table.ui_buttons_table>tbody>tr.ui_buttons_row>td.ui_buttons_label>img{margin-right:10px}td.ui_buttons_label input.ui_textbox+input[onclick^='ifield'],td.ui_buttons_label input.ui_textbox+input[onclick^='window.ifield']{margin-bottom:5px !important}.sub_table_container+.opener_sub_container .opener_shown{margin-top:-1px !important}.sub_table_container+.opener_sub_container{margin-top:0 !important}.opener_sub_container .table-hardcoded{background-color:#fff !important}.opener_sub_container .table-hardcoded tr{border:0 !important}input[type='submit'].btn{margin-top:1px !important;margin-bottom:1px !important}.mysql td[align='right'] button[type='button'].btn.ui_form_end_submit,.postgresql td[align='right'] button[type='button'].btn.ui_form_end_submit,.firewall td[align='right'] input[type='submit'].btn,.firewall6 td[align='right'] input[type='submit'].btn{margin-top:2px !important}@-moz-document url-prefix(){.mysql td[align='right'] button[type='button'].btn.ui_form_end_submit,.postgresql td[align='right'] button[type='button'].btn.ui_form_end_submit,.firewall td[align='right'] input[type='submit'].btn,.firewall6 td[align='right'] input[type='submit'].btn{margin-top:0 !important}}.postgresql[data-uri*='view_table.cgi'] input[name='for'],.mysql[data-uri*='view_table.cgi'] input[name='for']{margin-right:3px;vertical-align:inherit}.postgresql[data-uri*='view_table.cgi']>.ui_form_end_submit,.mysql[data-uri*='view_table.cgi']>.ui_form_end_submit{line-height:10px !important}.table-hardcoded td.col_value>input.form-control.ui_textbox+select.ui_select{vertical-align:middle !important}hr.menu{width:92%;height:0;border:0;border-bottom:1px solid rgba(255,255,255,.09) !important}td.ui_grid_cell>form.ui_form[action^='search_form.cgi'],td.ui_grid_cell>form.ui_form[action^='delete_all.cgi'],td.ui_grid_cell>form.ui_form[action^='list_mail']{margin-top:5px;margin-right:5px}textarea,textarea.form-control{font-size:13px;width:100%;min-height:10em;padding-left:6px;color:#333 !important;border:1px solid #eaeaea}textarea[name='data']{font-family:monospace;line-height:normal;width:100%;min-width:100%}textarea[name='to'],textarea[name='cc'],textarea[name='bcc']{max-width:60%;height:2.5em;min-height:2.5em;max-height:2.5em}tr.tr_tag>td.td_tag>label{height:26px;vertical-align:middle}tr.ui_buttons_hr>td>table.table-hardcoded>tbody{border:none !important;border-bottom:1px solid #eaeaea !important}table.table-hardcoded tr[bgcolor]>td[nowrap]>p>input,table.table-hardcoded tr[bgcolor]>td[nowrap]>input,table.table-hardcoded tr[bgcolor]>td[nowrap],table.table-hardcoded tr[bgcolor]>td[nowrap]>p{font-size:13px !important}tr.ui_grid_row>td.ui_grid_cell input[type='checkbox'],tr.ui_grid_row>td.ui_grid_cell input[type='radio'],tr.tr_tag>td.td_tag>input{height:14px}tr.tr_tag>td.td_tag>textarea{margin-top:2px}td.ui_buttons_label>input.submitter.ui_submit+select,td.ui_buttons_label>input.submitter.ui_submit{margin-top:2px !important;margin-bottom:2px !important}td.opener_container,td.ui_grid_cell{padding:0;vertical-align:middle !important}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:0}#update_notice ul>li>hr{margin-top:6px;margin-bottom:6px}.radio,.checkbox{margin-top:2px;margin-bottom:2px}.container,.container-fluid{margin-top:15px}.container-fluid-loading{margin-top:15px;margin-right:auto;margin-left:auto;padding-right:15px;padding-left:15px;cursor:progress}.container-fluid-loading .fa{font-size:28px;position:absolute;margin-top:3px;margin-left:-34.5px;cursor:progress}.container-fluid-loading:before,.container-fluid-loading:after{display:table;content:' '}.container-fluid-loading:after{clear:both}.panel-loading{margin-bottom:20px;border:1px solid transparent;border-top-width:4px;border-radius:4px;background-color:#fff}.panel-loading .cspinner{position:relative;top:40%;left:49%}.panel-loading .cspinner .cspinner-icon{width:16px;height:16px;margin-right:7px}.panel-default-loading{border-color:rgba(150,150,150,.45);border-top-color:rgba(228,228,228,.83);border-radius:0;-webkit-box-shadow:1px 2px 2px rgba(0,0,0,.02);box-shadow:1px 2px 2px rgba(0,0,0,.02)}.panel-heading-loading{padding:10px 15px;border-bottom:1px solid transparent;border-radius:0 !important;border-top-left-radius:3px;border-top-right-radius:3px}.panel-default-loading>.panel-heading-loading{color:#333;border-color:#ddd;background-color:#f5f5f5}.panel-default-loading>.panel-heading-loading span{font-size:24px;margin-left:.5px}.panel-body-loading{overflow:auto;padding-top:12px;padding-bottom:7px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.050);box-shadow:inset 0 1px 1px rgba(0,0,0,.050)}body .container-fluid{pointer-events:none;opacity:0}::-webkit-scrollbar-track-piece{-webkit-border-radius:0;background-color:#f0f0f0}::-webkit-scrollbar{width:9px;height:9px}::-webkit-scrollbar-thumb{height:50px;border:2px solid #ddd;-webkit-border-radius:4px;outline:2px solid #ddd;outline-offset:-2px;background-color:#bbb}::-webkit-scrollbar-thumb:hover{height:50px;-webkit-border-radius:4px;background-color:#6180a9}select.ui_select:not(.heighter-34)+button[type='button'],input[onclick*='ajaxterm'],.file_chooser_button+input,.form-control.ui_textbox+input,.table-hardcoded tbody tr td .submitter,select+input[type='button'],.heighter-28:not(.ui_form_end_submit),.heighter-28-force,.ui_form_end_submit.heighter-28-force,.ui_form_end_submit.heighter-28{font-size:13px !important;line-height:17px !important;height:28px !important;max-height:28px !important;padding-top:0 !important;padding-bottom:2px !important}.heighter-28-force{line-height:0}.heighter-28-force span.cspinner_container{font-size:21px}.ui_form_end_submit.heighter-28>span.cspinner_container+span[data-entry],.ui_form_end_submit.heighter-28>span.cspinner_container+span[data-entry],.ui_form_end_submit.heighter-28>span:not([data-entry]),.ui_form_end_submit.heighter-28 i+span[data-entry],.ui_form_end_submit.heighter-28 i,.ui_form_end_submit.heighter-28 span[data-entry],.ui_form_end_submit>span[data-entry]{vertical-align:baseline !important}.ui_form_end_submit>span.cspinner_container+span[data-entry],.ui_form_end_submit>span.cspinner_container+span[data-entry],.ui_form_end_submit>span:not([data-entry]),.ui_form_end_submit i+span[data-entry],.ui_form_end_submit i{vertical-align:middle !important}input.btn.heighter-34:not(.btn-lg):not(.ui_form_end_submit),.btn.heighter-34:not(.btn-lg):not(.ui_form_end_submit),.table-hardcoded tbody tr td .submitter.heighter-34:not(.btn-lg):not(.ui_form_end_submit),.heighter-34:not(.btn-lg):not(.ui_form_end_submit):not([data-command='true']):not(.sidebar-search){font-size:14px !important;line-height:18px !important;height:34px !important;min-height:34px !important;max-height:34px !important}label+select,label+input[type='text']{max-width:40%}iframe[src*='proxy.cgi']{height:600px !important;min-height:600px !important}.panel-body form.ui_form[action='save_pass.cgi'] .table-responsive .table-subtable tr td .sub_table_container tbody tr td.col_value br+input+label>br{display:none}td[nowrap] input[type='radio'],td[nowrap] input[type='checkbox']{margin-top:3px !important;margin-bottom:3px !important}label+input:not([style*='width: 100%']){margin-left:4px !important}label.radio+input[style*='width: auto']{width:100% !important;margin-left:0 !important}form>.heighter-34:not(.btn-lg):not(.ui_form_end_submit)+.file_chooser_button_attached{margin-top:16px;margin-left:-30px}td>.heighter-34:not(.btn-lg):not(.ui_form_end_submit),form>.heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-right:2px !important;margin-left:0 !important}td>.heighter-34:not(.btn-lg):not(.ui_form_end_submit)+.file_chooser_button_attached{margin-top:18px;margin-left:-28px}input.heighter-34:not(.btn-lg):not(.ui_form_end_submit)+select.heighter-34{margin-left:3px !important}input[name]:not([type='checkbox']):not([type='radio'])+.awobject,input[type='text']+.awobject{margin-left:4px}.btn.heighter-34:not(.btn-lg):not(.ui_form_end_submit)+.awobject,select+.awobject,.file_chooser_button+.awobject{margin-left:10px}form[action*='send_mail.cgi'] div.table-responsive+div.table-responsive{margin-top:10px}form[action*='send_mail.cgi'] .col_value>textarea+input[onclick*='chooser']{min-height:34px;margin-top:3px !important}form[action*='send_mail.cgi'] textarea+input[onclick*='chooser']+.file_chooser_button_attached{margin-top:16px !important}form[action*='delete_mail.cgi'] input.heighter-34[name='mfolder1']:not(.btn-lg):not(.ui_form_end_submit)+input[onclick*='chooser']+.file_chooser_button_attached{margin-top:18px !important}form[action*='reply_mail.cgi'] input.heighter-34:not(.btn-lg):not(.ui_form_end_submit)+select[name='mode2']{margin-top:3px !important}form[action='save_categories.cgi'] .td_tag>label.radio{margin-top:3px !important;margin-bottom:-3px !important}label{margin-bottom:0}.mce-container.mce-panel{border:0 !important}#mceu_2-open>i{vertical-align:top !important}#mceu_2-open>span{vertical-align:baseline !important}.mce-btn button>span{font-size:13px !important;line-height:0 !important}.mce-btn button{max-height:28px !important;padding:4px 8px !important}.mce-ico{font-size:14px !important;line-height:14px !important;width:14px !important;height:14px !important}#DataTables_Table_0>tbody>tr.ui_checked_columns>td.ui_checked_checkbox>div.awobject{margin-top:-1px !important}.col_value>table .tr_tag .td_tag .awobject{margin-top:-5px !important}table table .col_value>table .tr_tag{background-color:#fff !important}table table .col_value>table .tr_tag .td_tag table{width:auto !important}.panel-body td b .awobject{font-weight:normal !important;margin-bottom:4px !important}td.ui_checked_checkbox{text-align:left !important}.favorites-menu-close{position:fixed;z-index:11011;top:0;right:100%;width:200px;height:200px;cursor:pointer;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:top right;transform-origin:top right;background:#c9302c}.favorites-menu-close .favorites-menu-bar{position:absolute;width:100%;height:1px;-webkit-transform-origin:center;transform-origin:center;background:rgba(250,250,250,1)}.favorites-menu-close .favorites-menu-bar:first-child{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.favorites-menu-close .favorites-menu-bar:last-child{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.favorites-menu-close .favorites-menu-icon{top:36px;right:6px;left:auto;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.favorites-menu-icon{position:absolute;z-index:11003;top:58px;left:15px;width:16px;pointer-events:none}.favorites-menu-outer{position:fixed;z-index:11000;top:0;left:100%;overflow:hidden;width:100%;height:100%;background:#334111}.favorites-menu-outer>nav.favorites-menu ul{top:2%}.favorites-menu-outer.hover{left:0;overflow:auto;margin-left:0;background:rgba(56,99,134,.90)}.favorites-menu-outer.hover>nav.favorites-menu ul{left:0}.favorites-menu-outer.hover ~ .favorites-menu-close{margin-right:-50px}nav.favorites-menu ul{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}nav.favorites-menu li{margin-top:5px;margin-bottom:5px;padding:5px 20px 5px 20px;list-style:none;text-align:center}.file-manager .tabs-top>ul.nav li.sortable-placeholder,nav.favorites-menu li.sortable-placeholder{height:54px;border:1px dashed #ccc}.file-manager .tabs-top>ul.nav li.sortable-placeholder{width:80px;height:28px}.file-manager .tabs-top>ul.nav li.sortable-dragging,nav.favorites-menu li.sortable-dragging{border:1px dashed #ccc;background:0}nav.favorites-menu li span.f__c{padding-right:12px}nav.favorites-menu li>span:not(.f__c),nav.favorites-menu li a{font-size:2em;display:block;margin:0 auto;color:rgba(255,255,255,.8)}nav.favorites-menu li a:not(.disabled):hover{color:#e93f3a}nav.favorites-menu ul{position:absolute;left:10%;width:100%;padding:0}nav.favorites-menu .favorites-menu-content{font-weight:300 !important;color:white}nav.favorites-menu .favorites-menu-content>li>h1{font-weight:300 !important;margin-left:-30px}.favorites-menu-content li.favorites-title sup{display:inline !important}.favorites-border{border:2px dotted #386386}#headln2l{width:25%;text-align:left}#headln2r a,#headln2l a{margin-bottom:3px}#headln2l a+a,#headln2r a+a{margin-bottom:1px}#headln2c{font-size:14px;width:50%;text-align:center}#headln2c span[data-main_title]{font-size:24px;display:inline-block}#headln2c span[data-main_title]+br{display:block;margin-top:-3px;content:''}#headln2c>i.favorites{position:absolute;margin-top:3px;margin-left:-35px}.browser_safari #headln2c>i.favorites{position:relative}.xcustom-favorites.fa.fa-star,#headln2c>.fa.fa-star{color:#eaa747 !important}.xcustom-favorites.fa-star:not(.dummy):hover:before,#headln2c .favorites.fa-star:not(.dummy):hover:before{content:'\f091';color:#5c5c5c}.xcustom-favorites.fa-star-o:not(.dummy):hover,#headln2c .favorites.fa-star-o:not(.dummy):hover{color:#eba94c}#headln2r{width:25%;text-align:right}.menu-exclude-link>[class^='wbm-']:before,.menu-exclude-link>[class*=' wbm-']:before{font-size:24px;vertical-align:middle}.-helper.__helper,.cursor-pointer,.cursor-pointer a.ui_link{cursor:pointer !important}.cursor-alias{cursor:alias !important}.cursor-na{cursor:not-allowed !important}.sub_table_container.table-hardcoded tr,.sub_table_container.table-hardcoded td{cursor:default}.cursor-default{cursor:default !important}label.checkbox+span+.file_chooser_button,label.radio+span+.file_chooser_button{margin-left:-1px}.file_chooser_button>.fa.fa-files-o{margin-top:-2px}span+.file_chooser_button>.fa.fa-files-o{margin-top:-2px !important}form[action='save_uconfigs.cgi'] label.radio+input[style*='width: auto']{max-width:20%}span+input[type='button']+.fa-files-o.file_chooser_button_attached{margin-top:12px !important}span+input[type='button']+.fa-calendar.file_chooser_button_attached{margin-top:10px !important}span.ui_data+input[type='button']+.fa-calendar.file_chooser_button_attached{margin-top:10px !important}.hl-aw{background-color:#ffffe9 !important}.xqcontent-forced .hl-aw{background-color:initial !important}form[action='save_newshells.cgi'] .hl-aw{background-color:transparent !important}form[action='save_newshells.cgi'] .hl-aw:nth-of-type(odd){background-color:#f7f7f7 !important}table>form[action='list_logins.cgi']+tbody>tr.ui_buttons_row td{width:50% !important}.panel-body>form[action='change_session.cgi']>.table-hardcoded input[name='blockuser_failures'],.panel-body>form[action='change_session.cgi']>.table-hardcoded input[name='blockhost_failures'],.panel-body>form[action='change_session.cgi']>.table-hardcoded input[name='blockuser_time'],.panel-body>form[action='change_session.cgi']>.table-hardcoded input[name='blockhost_time']{max-width:10%}.file-input-wrapper+br+.aradio,.file-input-wrapper+br+.acheckbox{margin-left:10px}form[action='change_ssl.cgi'] .table-hardcoded .awobject+input:last-child{min-width:100% !important;margin-left:0 !important}select[multiple][disabled] option{background-color:#eee !important}b>.acheckbox+a[href*='help.cgi'],b>.aradio+a[href*='help.cgi'],b>a>.acheckbox+label,b>a>.aradio+label{margin-left:6px !important}.awobject+b>a.help_popup,.awobject+a.help_popup{margin-right:10px;margin-left:-8px !important}tr.ui_grid_row .awobject+.ui_link{margin-top:0 !important;margin-bottom:0 !important;margin-left:0}.awobject{margin-right:6px}.lawobject:before,.lawobject:after{pointer-events:none}tr.ui_checked_columns td>.awcheckbox,td.ui_checked_checkbox>.awcheckbox{display:inline-block;margin-top:-1px;margin-left:2px;vertical-align:top}tr.ui_checked_columns td:not(.ui_checked_checkbox):not(.td_tag.cursor-pointer)>.awcheckbox{margin-top:-11px}body[class*='init'][data-uri*='edit_upstart.cgi'] tr.ui_checked_columns td:not(.ui_checked_checkbox)>.awcheckbox{margin-top:0}@-moz-document url-prefix(){tr.ui_checked_columns td>.awcheckbox,td.ui_checked_checkbox>.awcheckbox{margin-left:-1px}}.awcheckbox label{position:relative;display:inline-block;padding-left:2px;vertical-align:baseline}.awcheckbox label::before{position:absolute;top:3px;left:-1px;display:inline-block;width:14px;height:14px;margin-left:-15px;content:'';-webkit-transition:border .15s ease-in-out,color .15s ease-in-out;transition:border .15s ease-in-out,color .15s ease-in-out;border:1px solid #ddd;border-radius:0;background-color:#fff}.awcheckbox label::after{font-size:10px;line-height:1em !important;position:absolute;top:3px;left:-1px;display:inline-block;width:13px;height:13px;margin-top:1px;margin-left:-13px;padding-left:0;pointer-events:none;color:#555}.awcheckbox input[type='checkbox']{z-index:1;vertical-align:middle;opacity:0}.awcheckbox input[type='checkbox']:focus+label::before{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.awcheckbox input[type='checkbox']:checked+label::after{font-family:'Authentic';content:'\f08f'}.awcheckbox input[type='checkbox']:indeterminate+label::after{display:block;width:10px;height:3px;margin-top:7px;margin-left:-16.5px;content:'';border-radius:2px;background-color:#555}.awcheckbox input[type='checkbox']:disabled{opacity:0}.awcheckbox.pointer-events-none input[type='checkbox']+label,.awcheckbox input[type='checkbox']:disabled+label{opacity:.65}.awcheckbox input[type='checkbox']:disabled+label::before{cursor:not-allowed;background-color:#eee}.awcheckbox.awcheckbox-circle label::before{border-radius:50%}.awradio label{position:relative;display:inline-block;margin-top:0 !important;margin-bottom:0 !important;padding-left:0;vertical-align:baseline}.awradio label::before{position:absolute;top:3px;left:0;display:inline-block;width:12px;height:12px;margin-left:-16px;content:'';-webkit-transition:border .15s ease-in-out;transition:border .15s ease-in-out;border:1px solid #ccc;border-radius:50%;background-color:#fff}.awradio label::after{position:absolute;top:6px;left:0;display:inline-block;width:6px;height:6px;margin-left:-13px;content:' ';-webkit-transition:-webkit-transform .1s cubic-bezier(.8,-.33,.2,1.33);transition:-webkit-transform .1s cubic-bezier(.8,-.33,.2,1.33);transition:transform .1s cubic-bezier(.8,-.33,.2,1.33);transition:transform .1s cubic-bezier(.8,-.33,.2,1.33),-webkit-transform .1s cubic-bezier(.8,-.33,.2,1.33);-webkit-transform:scale(0,0);transform:scale(0,0);pointer-events:none;border-radius:50%;background-color:#555}.awradio input[type='radio']{z-index:1;opacity:0}.awradio input[type='radio']:focus+label::before{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.awradio input[type='radio']:checked+label::after{-webkit-transform:scale(1,1);transform:scale(1,1)}.awradio input[type='radio']:disabled{opacity:0}.awradio.pointer-events-none input[type='radio']+label,.awradio input[type='radio']:disabled+label{opacity:.65}.awradio input[type='radio']:disabled+label::before{cursor:not-allowed}.ui_checked_columns td:not(.ui_checked_checkbox):first-child .awcheckbox label::before,.ui_checked_checkbox .awcheckbox label::before{top:2px;width:15px;height:15px}.ui_checked_columns td:not(.ui_checked_checkbox):first-child .awcheckbox label::after,.ui_checked_checkbox .awcheckbox label::after{font-size:11px;top:3px;width:15px;height:15px}.opener_shown .ui_checked_checkbox .awcheckbox label::after{left:-1px}form[action='save_restrict.cgi'] .table-hardcoded>tbody,form[action^='install_pack.cgi'] table.table-hardcoded tbody,form[action='save_user.cgi'] table[width='100%'][border].table-hardcoded+table[width='100%'].table-hardcoded tbody,form[action='add.cgi'] table tbody{border:0}a.opener_trigger{color:#333}a.opener_trigger:hover{color:#1d599d}table[width='100%'][border].table-hardcoded{border:1px solid #ddd}form[action='save_owner.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value,form[action='save_plan.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value,form[action='backup_sched.cgi'] table.table:nth-child(3) .table-hardcoded tr td.col_value,form[action='backup.cgi/backup.tgz'] table.table:nth-child(3) .table-hardcoded tr td.col_value,form[action='restore.cgi'] table.table:nth-child(3) .table-hardcoded tr td.col_value{border:1px solid #eaeaea !important}form[action='save_owner.cgi'] table.table:nth-child(4) .table-hardcoded tr:nth-child(2) td.col_value b,form[action='save_plan.cgi'] table.table:nth-child(4) .table-hardcoded tr:first-child td.col_value b{text-transform:capitalize}form[action='save_owner.cgi'] table.table:nth-child(4) .table-hardcoded tr:nth-child(2) td.col_value b,form[action='save_owner.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value table+b,form[action='save_plan.cgi'] table.table:nth-child(4) .table-hardcoded tr:first-child td.col_value b,form[action='save_plan.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value table+b{font-size:14px !important;font-weight:500 !important}.td_tag .acheckbox+label,.td_tag .aradio+label{display:inline}form[action='export_mod.cgi/theme.ubt.gz']>table.table-hardcoded #file{max-width:30% !important}label+input[style*='width: auto;']{max-width:25%}input[src='/images/ok.gif']{visibility:hidden;width:initial !important;height:initial !important;margin-top:-3px !important;margin-left:10px;vertical-align:middle !important}.ui_radio_columns:hover input[src='/images/ok.gif']{visibility:visible}.opener_container .fa.fa-fw.fa-calendar.file_chooser_button_attached{margin-top:12px !important}.opener_table_style{margin-bottom:6px !important;border-collapse:separate !important;border:0 !important;border-bottom:1px solid #ececec !important}.opener_shown{padding-right:1px;padding-left:1px}.opener_table_style_small{margin-bottom:6px !important;border-collapse:separate !important;border:0 !important}.opener_table_style_small .opener_container.margined-top{border-bottom:1px solid #ececec !important}.opener_table_cell_style_small{line-height:30px;height:35px;text-align:left;vertical-align:middle;border:0;border-right:1px solid #ececec;border-left:1px solid #ececec;border-top-left-radius:0;border-top-right-radius:0;background:#f5f5f5}.opener_table_cell_style_small_exclusion_border_top{border-top:1px solid #ececec !important;border-bottom:1px solid #ececec !important}.link_hover_effect_style{font-size:16px;font-weight:400 !important;padding-left:12px;background:#f5f5f5 !important}.link_hover_effect_style_extra{font-size:16px;font-weight:400 !important;line-height:20px !important;padding-left:3px}.opener_extra_container_style{line-height:34px;height:35px;text-align:left;vertical-align:middle;border:0;border-top:1px solid #ececec;border-right:1px solid #ececec;border-bottom:1px solid #ececec !important;border-left:1px solid #ececec;border-top-left-radius:0;border-top-right-radius:0;background:#f5f5f5}html:not([data-background-style='nightRider']) a.opener_extra_container_a_style:before{margin-top:6px}div.opener_extra_container.opener_extra_container_style>div.opener_extra_container.opener_extra_container_style{border:0 !important;border-bottom:1px solid #f0f0f0 !important}p+.opener_container.opener_sub_container.margined-top{margin-top:-6px;margin-bottom:10px;padding:5px}.opener_extra_container_a_style{font-size:16px;font-weight:400 !important;line-height:20px;padding-left:12px;background:#f5f5f5 !important}._c__op_d{line-height:22px !important;height:35px;text-align:left;vertical-align:middle;border:0;border-top:1px solid #ececec !important;border-right:1px solid #ececec;border-left:1px solid #ececec;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.02);box-shadow:0 1px 1px rgba(0,0,0,.02)}html[data-script-name='/virtual-server/view_domain.cgi'] ._c__op_d{line-height:20px !important}.kbd-success{background-color:#349e30 !important}.kbd-danger{color:#333;background:rgba(229,163,163,.27)}.kbd-info{color:#333;background:rgba(171,222,249,.23)}.hidden-forged{display:none !important}.vertical-align .gl-icon-container .gl-icon-selected,.vertical-align .gl-icon-container .gl-icon-select,.vertical-align .gl-icon-container .gl-icon-edit{position:absolute;top:5px;display:none}body form>div.vertical-align>div>span.hidden-forged-7>a>i.fa-edit,.vertical-align .gl-icon-container .gl-icon-edit{font-size:14px;top:4px;cursor:default}.vertical-align .gl-icon-container .gl-icon-edit{right:0}.vertical-align .gl-icon-container .gl-icon-selected,.vertical-align .gl-icon-container .gl-icon-select{left:0}.vertical-align .gl-icon-container:hover .gl-icon-selected,.vertical-align .gl-icon-container:hover .gl-icon-select,.vertical-align .gl-icon-container:hover .gl-icon-edit{display:inline-block;cursor:default}.vertical-align .small-icons-container.gl-icon-container .gl-icon-selected,.vertical-align .small-icons-container.gl-icon-container .gl-icon-select,.vertical-align .small-icons-container.gl-icon-container .gl-icon-edit{font-size:13px;top:3px}body form>div.vertical-align>div.small-icons-container>span.hidden-forged-7>a>i.fa-edit,.vertical-align .small-icons-container.gl-icon-container .gl-icon-edit{font-size:10px;top:2px}body form>div.vertical-align>div.small-icons-container>span.hidden-forged-7>a>i.fa-edit{display:block;margin-top:4px}.inline-row .gl-icon-container .gl-icon-selected,.inline-row .gl-icon-container .gl-icon-select,.inline-row .gl-icon-container .gl-icon-edit{display:none}input[name='dest0_file'],input[name='dest1_file'],input[name='dest2_file'],input[name='dest3_file'],input[name='dest4_file'],input[name='dest5_file'],input[name='dest6_file'],input[name='dest7_file'],input[name='dest8_file'],input[name='dest9_file'],input[name='dest10_file'],input[name='dest11_file'],input[name='dest12_file']{min-width:30%}body.squid form[action='acl_save.cgi'] input[name^='from_'],body.squid form[action='acl_save.cgi'] input[name^='to_']{min-width:140px}.disable-animations *,.disable-animations *:after,.disable-animations *:before{-webkit-transition:none !important;transition:none !important}html,body,.container,.loader-container,.input-group-addon{background-color:#ededed !important}.form-signin-banner,.form-signin{-webkit-box-shadow:none;box-shadow:none}#nprogress .bar{z-index:91040 !important;height:2px;background:#e8433f}#nprogress .peg{-webkit-box-shadow:0 0 2px #e8433f,0 0 5px #e8433f;box-shadow:0 0 2px #e8433f,0 0 5px #e8433f}#nprogress .spinner{top:15px;right:25px;display:none}html[data-slider-fixed='1'] #nprogress .spinner{right:325px}#nprogress .spinner-icon{width:22px;height:22px;border:2px solid rgba(133,167,194,.25);border-top:1px solid #437ba8;border-radius:100%}body[data-progress='0'] #nprogress{display:none}.cspinner{position:absolute;z-index:91031;display:inline-block}.cspinner .cspinner-icon{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;width:18px;height:18px;-webkit-animation:nprogress-spinner 400ms linear infinite;animation:nprogress-spinner 400ms linear infinite;border:solid 2px transparent;border-top-color:#bbb;border-left-color:#bbb;border-radius:50%}.cspinner .cspinner-icon.small{width:14px;height:14px}.cspinner .cspinner-icon.smaller{width:12px;height:12px}.cspinner .cspinner-icon.smallest{width:10px;height:10px}.cspinner.in-btn-md{top:1px}.cspinner .cspinner-icon.white{border-top-color:#fff;border-left-color:#fff}.cspinner .cspinner-icon.grey{border-top-color:#888;border-left-color:#888}.cspinner .cspinner-icon.dark{border-top-color:#444;border-left-color:#444}.session_login [class^='wbm-']:before,.session_login [class*=' wbm-']:before{font-size:37px;font-weight:normal !important;font-style:normal !important;font-variant:normal !important;line-height:1;text-transform:none !important;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.session_login *:focus,.session_login *:active{outline:none !important}.session_login *::-moz-focus-inner{border:0 !important}.session_login .btn{line-height:23px;width:46%;padding-top:6px;padding-bottom:5px}.session_login input[name='twofactor'],.session_login input[name='pass'],.session_login input[name='user']{font-size:13px}html.session_login,body.session_login,form.session_login,.container.session_login{font-family:'Roboto' !important;background-color:#f0f0f0}.session_login .form-signin-banner,.session_login .form-signin{position:relative;max-width:320px;margin:80px auto 0;padding:30px 30px 32px 30px;text-align:center;color:#444;border:1px solid #ddd;border-radius:0;background-color:#fff;-webkit-box-shadow:1px 1px 7px rgba(0,0,0,.10);box-shadow:1px 1px 7px rgba(0,0,0,.10)}.session_login .form-signin .form-group.form-signin-group{margin-bottom:-2px}.session_login .form-signin .form-group.form-signin-group .btn{width:100%;margin-bottom:1px}.session_login .form-signin .form-group.form-signin-group .btn>.cspinner_container{position:absolute;display:inline-block;width:18px;height:14px}.session_login .form-signin .form-group.form-signin-group .btn>.cspinner_container>.cspinner{margin-top:2px;margin-left:-22px}.session_login .form-signin-banner{font-family:monospace,'Roboto' !important}.session_login .form-signin-banner{margin-top:40px !important;color:#c22c29}.session_login .input-group-addon{border-radius:0;background-color:#f0f0f0}.session_login .input-group.form-group>input{margin-left:-1px !important}.session_login .form-signin-heading{font-size:33px;font-weight:normal;display:inline}.session_login .form-signin-heading span{vertical-align:top}.session_login .awobject .lawobject{font-weight:400}.session_login .awcheckbox label::before{left:0}.session_login .form-signin-paragraph{margin-top:3px;margin-bottom:7px}.session_login .alert{margin-top:10px;margin-bottom:-40px;padding-left:30px}.session_login .alert span{cursor:pointer}.session_login .alert{padding-right:30px}.session_login .alert-inverse{color:#fff;background:rgba(51,51,51,.9);-webkit-box-shadow:0 0 5px rgba(51,51,51,.5);box-shadow:0 0 5px rgba(51,51,51,.5)}.session_login .alert-inverse a{color:#fff}body.virtual-server form>table.table.table-striped.table-condensed>tbody>tr>td input[type='image']{max-width:22px;max-height:18px}body[class^='servers'] .dataTables_wrapper thead tr th:first-child{cursor:default;opacity:0}body[class^='servers'] .dataTables_wrapper tbody tr td table.table-hardcoded tbody tr:first-child{background-color:transparent}.col_value.col_header,.col_header{padding-left:2px !important}.col_header_custom,form[action='save_check.cgi']>b,body:not([data-module*='man']) .col_header b{font-size:16px !important;font-weight:normal !important;line-height:26px !important;display:inline-block;width:100%;height:33px;margin-bottom:4px !important;padding:2px 0 !important;text-align:center !important;border:1px solid #f1f1f1 !important;border-right-color:#eaeaea !important;border-left-color:#eaeaea !important;background-color:#f7f7f7 !important}body:not([data-module*='man']) .col_header b.text-left{text-align:left !important}html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_header b[data-first-child]{border-top:0 !important}html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_header b{border-right:0 !important;border-left:0 !important}html[data-uri*='/virtual-server/cert_form.cgi?dom='] pre{white-space:pre-wrap}html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_value .settings_background_color_reset,html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_value .settings_background_color_toggle,html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_value .settings_navigation_color_reset,html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_value .settings_navigation_color_toggle{display:none}.col_header b+br{display:none}.col_value>b+br+table{margin-top:3px}body form[action='save_sql.cgi'] .col_header table tbody tr td b,body.server-manager form[action='save_failover.cgi'] td.col_header table tbody tr td b,body.server-manager form[action='save_repl.cgi'] td.col_header table tbody tr td b,body.virtual-server form[action='wizard.cgi'] td.col_header b,body.proc form[action='index_search.cgi'] td.col_header b,form[action='rollback.cgi'] .col_header b{font-size:13px !important;font-weight:500 !important;line-height:14px !important;display:inline;margin-top:2px !important;margin-bottom:2px !important;padding:0 !important;text-align:left !important;border:0 !important;border-top:0 !important;background-color:transparent !important}.btn,button.btn,.csf-container input[type='submit'],.csf-container button.input,input[type='submit']{border-radius:0 !important}select,body.csf .dataTables_filter input[type='search'],body .dataTables_filter input[type='search'],.csf-container input[type='text'],.csf-container input[type='search'],.csf-container input,.csf-container select,input[id^='CSF'],input[type='button'],input[type='reset'],input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.btn):not(.session_login),input[name]:not([type='image']):not(.sidebar-search):not([type='button']):not([type='checkbox']):not([type='radio']):not(.btn),.csf-container input[type='text'],.csf-container input[type='search'],.file_chooser_button,.form-control{border-color:#e8e8e8;border-radius:0 !important;-webkit-box-shadow:none !important;box-shadow:none !important}@-moz-document url-prefix(){.csf-container .col_header_custom:not(.big_big){width:100.45% !important}}.dropdown-menu,.pagination,.breadcrumb{border-radius:0 !important}.dropdown-menu li a{cursor:pointer}.pagination>li>a,.pagination>li>span{font-size:12px;padding:6px 10px}.nav-tabs>li>a{color:rgba(32,85,146,.91);border-radius:0}.nav-tabs>li.active>a{font-weight:normal}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid rgba(221,221,221,.60)}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{border-radius:0 0 1px 1px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:rgba(221,221,221,.60);border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent rgba(221,221,221,.60) rgba(221,221,221,.60) rgba(221,221,221,.60)}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:1px 0 0 1px}.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 1px 1px 0}.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent}.tabs-right-fixed>.nav-tabs{position:absolute;right:-101px;margin-top:35px;border:1px solid #ccc;border-left:0;-webkit-box-shadow:2px 2px 2px rgba(153,153,153,.10);box-shadow:2px 2px 2px rgba(153,153,153,.10)}.tabs-right-fixed>.nav-tabs>li>a{overflow:hidden;min-width:100px;max-width:100px;white-space:nowrap;text-overflow:ellipsis;border-left:1px solid transparent}.tabs-right-fixed>.nav-tabs>li{margin-top:-3px}.tabs-right-fixed>.nav-tabs>li>a{margin-left:-2px;border-radius:0 1px 1px 0}.tabs-right-fixed>.nav-tabs li:not(.active)>a{color:#888;border-top:1px solid #ececec;border-left:1px solid #ececec;background:#f6f6f6}.tabs-right-fixed>.nav-tabs .active>a,.tabs-right-fixed>.nav-tabs .active>a:hover,.tabs-right-fixed>.nav-tabs .active>a:focus{border-color:transparent;border-top:1px solid #ececec}.tabs-right-fixed>.nav-tabs>li:not(.active)>a:hover,.tabs-right-fixed>.nav-tabs>li:not(.active)>a:focus{border-color:transparent;border-top:1px solid #ececec;border-left:1px solid #ececec}.tabs-right-fixed>.nav-tabs li a i{position:absolute;top:2px;right:0;display:none}.tabs-right-fixed>.nav-tabs li:hover a i{display:inline-block;color:#ccc}.tabs-right-fixed>.nav-tabs li:hover a i:hover{display:inline-block;cursor:default;color:#333}.fa.fa-paperclip,.fa.fa-files-o{color:#555}ul.messenger.messenger-fixed{z-index:100000}ul.messenger-theme-air .messenger-message.message-warning:hover,ul.messenger-theme-air .messenger-message.message-warning{background-color:#f0ad4e}ul.messenger-theme-air .messenger-message.message-info:hover,ul.messenger-theme-air .messenger-message.message-info{background-color:#5bc0de}ul.messenger-theme-air .messenger-message.message-success:hover,ul.messenger-theme-air .messenger-message.message-success{background-color:rgba(33,140,33,.82)}ul.messenger-theme-air .messenger-message.message-error:hover,ul.messenger-theme-air .messenger-message.message-error{background-color:rgba(208,22,18,.82)}ul.messenger-theme-air .messenger-message:hover,ul.messenger-theme-air .messenger-message{font-size:12px;padding:12px 30px 12px 20px;color:#f7f9fd;border:0;border-radius:0;background-color:rgba(56,99,134,.82);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.20);box-shadow:0 1px 1px rgba(0,0,0,.20)}ul.messenger-theme-air .messenger-message .messenger-close{height:100%}ul.messenger-theme-air .messenger-message .messenger-close{color:#f7f9fd}ul.messenger-theme-air .messenger-message .messenger-close:hover{color:#fff}ul.messenger-theme-air .messenger-message .messenger-message-inner:before{display:none}ul.messenger .messenger-message-inner ul{margin:3px 10px 0}@media(max-width:768px){ul.messenger.messenger-fixed.messenger-on-top,ul.messenger.messenger-fixed.messenger-on-bottom{left:15%;width:70%}}ul.messenger .messenger-message{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.messenger-message-inner{font-size:12px;margin-left:24px;padding-left:12px;border-left:1px solid rgba(255,255,255,.38)}.messenger-message-inner i{position:absolute;top:37%;left:2%}.file-manager .container-fluid .dataTables_length{margin-top:-4px;margin-bottom:-1px}.file-manager .container-fluid .tabs-top>.nav-tabs{position:absolute;z-index:1;right:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;overflow:hidden;max-width:80%;margin-top:-5px;margin-right:15px;border-bottom-color:#e9e9e9}.file-manager .container-fluid .tabs-top>.nav-tabs>li{overflow:hidden;border-bottom:1px solid #eee}.file-manager .container-fluid .tabs-top>.nav-tabs>li>a{margin-right:-1px;padding:4px 13px;white-space:nowrap;color:#444;border:1px solid #e9e9e9;background:#fff}.file-manager .container-fluid .tabs-top>.nav-tabs>li>a:hover{border:1px solid #d9d9d9;background:#eee}.file-manager .container-fluid .tabs-top>.nav-tabs>li:last-child>a{margin-right:0}.file-manager .container-fluid .tabs-top>.nav-tabs>li.active>a{padding:3px 13px 5px 13px;border:1px solid #e9e9e9;border-top:2px solid #4a90d9;border-bottom:1px solid #fff;background:#f6f6f6}.file-manager .container-fluid .tabs-top>.nav-tabs>li>a>i{font-size:13px;position:absolute;margin-top:-7px;margin-left:-17px;padding:0;cursor:default;color:#bd1e1e}.file-manager .container-fluid .btn-group.pull-right>.btn-group>button.btn-inverse,.file-manager .container-fluid .btn-group.pull-right>button.btn-inverse{background-color:#fbfbfb !important}.file-manager .container-fluid .btn-group.pull-right>.btn-group>button.btn-inverse:hover,.file-manager .container-fluid .btn-group.pull-right>button.btn-inverse:hover{border:1px solid #ddd;background-color:#eee !important}.file-manager .container-fluid .tab-content .row:nth-child(3) .col-sm-7{margin-top:-7px !important;margin-bottom:2px !important}.file-manager .container-fluid .tab-content .row:nth-child(3) .col-sm-5{margin-top:-10px !important;margin-bottom:10px !important}.file-manager .container-fluid .label.label-warning.total_size{margin-left:6px}.file-manager .container-fluid .modal-dialog.modal-image-editor-dialog{width:95%;height:93%;padding:0}.file-manager .container-fluid .modal-content.modal-image-editor-content{height:100%}.file-manager .container-fluid #searchForm .form-inline{margin-left:-2px}.file-manager .container-fluid #searchForm .form-inline .form-group{width:50%}.file-manager .container-fluid #searchForm .form-inline .form-group:first-child{width:49%}.file-manager .container-fluid #searchForm .form-inline .form-group input{width:100%}.file-manager .container-fluid #searchForm .form-inline label{margin-left:2px}.file-manager .container-fluid #searchForm .form-inline .awcheckbox{display:inline-block;margin-top:10px;margin-left:4px}.file-manager .container-fluid .table-striped{width:100%}.file-manager .container-fluid .table-striped>thead>tr th:nth-child(1),.file-manager .container-fluid .table-striped>tbody>tr:not(.directory_go_up) td:nth-child(1),.file-manager .container-fluid .table-striped>thead>tr th:nth-child(2),.file-manager .container-fluid .table-striped>tbody>tr:not(.directory_go_up) td:nth-child(2){overflow:hidden;width:20px !important;min-width:20px !important;max-width:20px !important}.file-manager .container-fluid form:not([action='save_config.cgi']).table-striped>tbody>tr td:nth-child(2){width:40px;max-width:40px;text-align:right}.file-manager .container-fluid .table-striped>tbody>tr td:nth-child(2) a{float:right}.file-manager .container-fluid .table-striped>tbody>tr td:nth-child(2) img{margin-right:15px}.file-manager .container-fluid .table-striped>tbody>tr td:nth-child(3){min-width:15vw !important;max-width:30vw !important;white-space:pre}.file-manager .container-fluid .table-striped>tbody>tr>td{overflow:hidden;white-space:wrap;text-overflow:ellipsis}.file-manager .container-fluid .table-striped>tbody>tr{height:23px}.file-manager .table-striped>tbody>tr:nth-of-type(odd){background-color:#fff}.file-manager .table-striped>tbody>tr:nth-of-type(even){background-color:#f9f9f9}.file-manager .container-fluid .ui_checked_columns.directory_go_up.hl-aw td{background:#fff}.file-manager .container-fluid .directory_go_up td i.fa{margin-left:-2px;color:#aaa}.file-manager .container-fluid form table .ui_checked_columns .ui_checked_checkbox .awobjectm{margin-left:5px !important}@-moz-document url-prefix(){.file-manager .container-fluid form table .ui_checked_columns .ui_checked_checkbox .awobjectm{margin-left:2px !important}.file-manager .container-fluid tr.ui_checked_columns td>.awcheckbox,.file-manager .container-fluid td.ui_checked_checkbox>.awcheckbox{margin-top:-1px}}.file-manager .container-fluid .panel-body tr.ui_checked_columns td{padding:0 2px !important}.file-manager .container-fluid .btn.disabled_no_styling:hover i.fa{pointer-events:none;color:#ccc}.file-manager .container-fluid .ui_checked_columns td label,.file-manager .container-fluid .ui_checked_columns:not(.directory_go_up){cursor:context-menu}.file-manager .container-fluid .btn-group.pull-right button[onclick='invertSelection()']+button.btn.btn-inverse,.file-manager .container-fluid .btn-group.pull-right button[onclick='invertSelection()'],.file-manager .container-fluid .btn-group.pull-right button[onclick='selectAll()']{padding:6px 10px}.file-manager .container-fluid .btn-group.pull-right i.fa:not(.fa-trash-o):not(.fa-star-o){font-size:90%}.file-manager .container-fluid .modal .form-group label+input{margin-left:-2px !important}.file-manager .container-fluid .modal .modal-body form .form-group>label{margin-right:2px}.file-manager .container-fluid .modal .modal-body form .form-group+table{margin-bottom:15px !important}.file-manager .container-fluid .modal .modal-body form .form-group+table tbody tr td:not(:first-child){padding-left:20px !important}.file-manager .container-fluid .autocomplete-suggestions{overflow:auto}.file-manager .container-fluid #chconForm input{width:280px}.file-manager .container-fluid .modal#chconDialog .modal-body form .form-group>input,.file-manager .container-fluid .modal#chattrDialog .modal-body form .form-group>input,.file-manager .container-fluid .modal#chownDialog .modal-body form .form-group>input{margin-bottom:10px !important}.file-manager .container-fluid .modal#chownDialog .modal-body form .form-group>.acheckbox{line-height:20px}.file-manager .container-fluid .btn-group.pull-right .btn-group>.btn,.file-manager .container-fluid .btn-group.pull-right>.btn{z-index:1000;margin-left:-2px !important}.file-manager .container-fluid .btn-group.pull-right>.btn-group:hover{z-index:1000}.file-manager .container-fluid .btn-group.pull-right>.btn-danger{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.__o__f_m-search-results-data{display:inline-block;max-height:16px}.__o__f_m-search-results-data.cursor-pointer:hover samp{text-decoration:line-through}.file-manager .container-fluid .file-input-wrapper .fa-paperclip{margin-top:6px}.file-manager .container-fluid .file-manager-remove-bookmark{position:absolute;right:0;display:none;margin-top:5px;margin-right:5px;cursor:default;color:#c6c6c6}.file-manager .container-fluid .file-manager-remove-bookmark:hover{color:#333}.file-manager .container-fluid #__f__c__m{z-index:11000}.file-manager .container-fluid #__f__c__m .file-manager-remove-bookmark{margin-top:3px;margin-right:1px}.file-manager .container-fluid .dropdown-menu:not(#__f__c__m)>li:hover .file-manager-remove-bookmark{display:block}.file-manager .container-fluid .dataTables_filter{display:none}.file-manager .container-fluid .breadcrumb{padding:7px 15px}.file-manager .container-fluid .breadcrumb i{font-size:15px}.file-manager .container-fluid .breadcrumb>li.fm___root__>a>i{vertical-align:-8%}.file-manager .container-fluid .breadcrumb>li.fm___root__+li:before{padding:0 5px 0 10px}.file-manager .container-fluid td>a>img{margin:0;-webkit-transform:scale(.82);transform:scale(.82)}.file-manager .container-fluid .table tbody tr td{vertical-align:middle}.dropdown-menu>li.bm_e__me>span{cursor:default}.dropdown-menu>li>span{font-weight:normal;line-height:1.42857143;display:block;clear:both;padding:3px 20px;white-space:nowrap;color:#333}.dropdown-menu>li>span:hover,.dropdown-menu>li>span:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>span,.dropdown-menu>.active>span:hover,.dropdown-menu>.active>span:focus{text-decoration:none;color:#fff;outline:0;background-color:#337ab7}.file-manager .jsPanel .dropdown{position:absolute;top:4px;right:85px}@-moz-document url-prefix(){.file-manager .jsPanel .dropdown{top:3px}}.file-manager .jsPanel .dropdown-menu{top:24px;min-width:200px}.file-manager .jsPanel .dropdown-menu li{text-align:right}.file-manager .jsPanel .dropdown-menu li a{padding:1.4px 8px}.file-manager .jsPanel .dropdown-menu .divider{margin:1px 0}.file-manager .jsPanel:not(.jspShown){opacity:0 !important}.file-manager .jsPanel-hdr{height:28px;border-top:1px solid #e6e6e6}.file-manager .jsPanel-hdr h3{font-variant:initial;margin:1px 5px 10px 8px;text-overflow:inherit}.file-manager .jsPanel-hdr h3 i{font-size:1em !important}.file-manager .jsPanel-hdr h3 strong{font-size:80% !important;display:inline-block;padding:1px 4px 1px 4px}.file-manager ._filemanager_file_editor_save .cspinner{top:-1px;left:2px;margin-left:4px}@-moz-document url-prefix(){.file-manager .breadcrumb{padding:7px 15px 6px 15px}}.file-manager #jsPanel-min-container{bottom:4px}.jsPanel-controlbar .jsPanel-btn{margin-top:-10px}.jsPanel-controlbar .jsPanel-btn .jsglyph-close{margin-right:5px}.jsPanel-controlbar .jsPanel-btn-minimize{margin-top:-3px}.jsPanel-controlbar .jsPanel-btn-save{margin-top:-10px;margin-right:37px}.jsPanel-controlbar .jsPanel-btn-help{margin-right:4px}.jsPanel-controlbar .jsPanel-btn-save i:hover{color:#8a8a8a}.file-manager .jsPanel .jsPanel-hdr .fa-edit{margin-right:2px;vertical-align:-9%}#jsPanel-replacement-container,.jsPanel-minimized-box{z-index:1000}.file-manager .jsPanel-replacement{height:28px !important;margin-right:-1px !important;margin-bottom:3px !important;margin-left:5px !important;-webkit-box-shadow:0 0 2px rgba(0,33,50,.1),0 2px 25px rgba(17,38,60,.3);box-shadow:0 0 2px rgba(0,33,50,.1),0 2px 25px rgba(17,38,60,.3)}.file-manager .jsPanel-replacement .jsPanel-controlbar{margin-top:-6px;margin-right:-6px;-webkit-transform:scale(.82);transform:scale(.82)}.file-manager .jsPanel-replacement .jsPanel-titlebar h3{font-size:12px;margin:4px 2px 10px 2px}.file-manager .jsPanel-replacement .jsPanel-hdr .fa-edit{display:none !important}.file-manager .jsPanel-btn-save>.fa-floppy-o{display:block !important}.jsPanel .jsPanel-content{border-top-color:#f5f5f5 !important}.file-manager .jsPanel div[data-encoding-label]{margin-top:-12px;margin-right:13px}@-moz-document url-prefix(){.file-manager .jsPanel div[data-encoding-label]{margin-top:-10px}}.file-manager .jsPanel-replacement div[data-encoding-label]{display:none;overflow:hidden;max-width:1px;pointer-events:none}.file-manager .jsPanel-state-minimized .jsPanel-title{margin-top:-1px}.file-manager .jsPanel.jsPanel-theme-light{background:#f5f5f5;-webkit-box-shadow:0 0 6px rgba(0,33,50,.1),0 7px 25px rgba(17,38,60,.3);box-shadow:0 0 6px rgba(0,33,50,.1),0 7px 25px rgba(17,38,60,.3)}.file-manager .jsPanel-hdr.jsPanel-theme-light{font-family:'Roboto';font-weight:normal;color:#222;background:#f5f5f5}.file-manager .jsPanel-hdr.jsPanel-theme-light h3{color:#222}.file-manager .jsPanel-hdr.jsPanel-theme-light h3 small{font-size:65%;color:#222}.file-manager .jsPanel-content{background:#272822}.file-manager .jsPanel-theme-light .ui-icon-gripsmall-diagonal-se{color:#222}.file-manager .popover:not(.file-manager-help) .popover-title{font-size:13px;line-height:18px;padding-top:8px;padding-bottom:7px}.file-manager .file-manager-help{max-width:330px}.file-manager .breadcrumb a.fa.fa-keyboard-o{visibility:hidden}.file-manager .breadcrumb .fa.fa-caret-down+.cspinner,.file-manager .breadcrumb .fa.fa-caret-right+.cspinner{margin-top:2px;margin-left:-13px}.file-manager .breadcrumb .fa.fa-caret-right,.file-manager .breadcrumb .fa.fa-caret-down{font-size:13px;padding:2px 1px 2px 2px;vertical-align:middle;color:#666;border:1px solid transparent}@-moz-document url-prefix(){.file-manager .breadcrumb .fa.fa-caret-right,.file-manager .breadcrumb .fa.fa-caret-down{padding:1px 0 2px 2px}}.file-manager .breadcrumb .fa.fa-caret-down{color:#1d599d}.file-manager .breadcrumb .fa.fa-caret-right:hover,.file-manager .breadcrumb .fa.fa-caret-down:hover{color:#222;border-color:#888}.file-manager .at-o__f_m-favorites-dropdown a,.file-manager .breadcrumb>li a{white-space:nowrap}.file-manager .breadcrumb>li a+span[data-tree]{position:absolute;z-index:99999;overflow:auto;width:280px;min-width:280px;max-width:280px;max-height:200px;margin-top:14px;margin-left:-15px;white-space:pre;border:1px solid rgba(0,0,0,.2);border-radius:1px;background:rgba(251,251,251,.90);background-clip:padding-box;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.file-manager .breadcrumb.pull-right>li a+span[data-tree]{margin-left:-280px}.file-manager .breadcrumb>li a+span[data-tree] a:hover{background-color:rgba(235,242,252,.50)}.file-manager .breadcrumb>li a+span[data-tree] a{display:block;padding:2px 10px;color:#333}.file-manager .popover-path-data{opacity:0;border-radius:1px}.file-manager .popover-path-data .input-group-sm>.input-group-btn button{height:32px;margin-bottom:0;margin-left:-3px;padding-top:4px}.file-manager .popover-path-data .input-group-sm>.input-group-btn button:hover i{color:#337ab7}.file-manager .popover-path-data .input-group-sm>input{height:32px !important;margin-left:-1px}.file-manager .file-manager-help table h5{margin-top:1px;margin-bottom:4px}.btn.btn-primary.btn-menu-toggler{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}tr.thead+script+tr.thead,tr.thead+tr.thead{border:0 !important}tr.thead+script+tr.thead td,tr.thead+tr.thead td{background:#fff !important}input[name^='address6']{width:260px !important}form[action='history.cgi'] a,form[action='one_history.cgi'] a{color:#333 !important}form[action*='save_user.cgi']>table tbody,form[action*='save_poll']>table tbody,form[action*='mgetty']>table tbody,form[action='save_secret.cgi']>table tbody,form[action='save.cgi']>table>tbody,form[action='start.cgi']>table tbody{border:0 !important}form[action='edit_html.cgi'] table input[name='editok']+input[name='textok']{display:none}img.scale-08,.scale-08{-webkit-transform:scale(.80) !important;transform:scale(.80) !important}.dhcpd select[name='parent']{min-height:100px}.hl-ow,html:not([data-background-style='nightRider']) body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td b,html:not([data-background-style='nightRider']) body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td a,html:not([data-background-style='nightRider']) body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td,html:not([data-background-style='nightRider']) body:not(.csf):not(.backup-config) .table-striped:not(.opener_table_style):not(.table-subtable)>tbody>tr:hover td,html[data-script-name*='settings-user.cgi'] div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form#settings_>div>table>tbody>tr>td>table>tbody>tr:hover td:not([colspan='2']),#atsettings>form>div>table>tbody>tr>td>table>tbody>tr.atshover:hover td div,#atsettings>form>div>table>tbody>tr>td>table>tbody>tr.atshover:hover td,.table-hover>tbody>tr.ui_checked_columns:hover,.table-hover>tbody>tr:not(.tr_tag):hover{background-color:#ebf2fc !important}#list_form tbody tr:hover.m-not-active{background:transparent !important}body[class*='file-manager'] #list_form tbody tr.checked:hover,body[class*='file-manager'] #list_form tbody tr:hover,#list_form tbody tr.checked:hover.m-active.m-not-active,#list_form tbody tr:hover.m-active.m-not-active,#list_form tbody tr.m-active{background-color:#ebf2fc !important}#list_form tbody tr.hl-aw.m-not-active:not(.m-active){background-color:#ffffe9 !important}.file-manager #__f__c__m.dropdown-menu .divider{margin:6px 0}.file-manager .dropdown-menu>li>a{padding:2px 28px;padding:1.4px 28px}.file-manager #__f__c__m .dropdown-menu>li>span,.file-manager #__f__c__m.dropdown-menu>li>span,.file-manager #__f__c__m .dropdown-menu>li>a,.file-manager #__f__c__m.dropdown-menu>li>a{font-size:13px;padding:2px 20px;padding:1.4px 20px}.file-manager .tooltip-inner{max-width:100%}.file-manager #headln2r .btn-group>a.btn{padding:6px 12px}.file-manager span[data-attributes='s']{font-family:monospace !important;font-size:11px;white-space:nowrap}.file-manager .container-fluid{margin-bottom:80px}.file-manager[data-uri*='config.cgi'] #headln2l a{display:none}html.single_tab,html.single_tab body{height:99%}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-10px;margin-left:-6px;border-radius:0}.dropdown-submenu.right>.dropdown-menu{right:99.8%;left:auto}.dropdown-submenu>.dropdown-menu.dropdown-submenu-bookmarks{top:-44px}.dropdown-submenu:hover>.dropdown-menu.dropdown-submenu-bookmarks a i{display:none}.dropdown-submenu:hover>.dropdown-menu.dropdown-submenu-bookmarks li:hover a i{display:inline-block;padding-top:3px;opacity:.4}.dropdown-submenu>.dropdown-menu.dropdown-submenu-properties{top:-97px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu.right:hover>.dropdown-menu{display:table}.dropdown-submenu>.dropdown-menu li a{height:22px}.dropdown-submenu.right>.dropdown-menu li a{height:24px}.dropdown-submenu>a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;content:' ';border-width:5px 0 5px 5px;border-style:solid;border-color:transparent;border-left-color:#ccc}.dropdown-submenu:hover>a:after{border-left-color:#333}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:0}.label-inverse{color:#333;background:#ddd}.label-transparent-50{background-color:rgba(255,255,255,.5)}.label-transparent-35{background-color:rgba(255,255,255,.35)}.label-transparent-15{background-color:rgba(255,255,255,.15)}.vertical-align-text-bottom{vertical-align:text-bottom !important}.vertical-align-bottom{vertical-align:bottom !important}.vertical-align-baseline{vertical-align:baseline !important}.vertical-align-top{vertical-align:top !important}.vertical-align-middle{vertical-align:middle !important}.vertical-align-inherit{vertical-align:inherit !important}body.init div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr.ui_checked_columns>td.col_label{width:12%}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control,.sub_table_container button[disabled],.sub_table_container select[disabled],.sub_table_container input[disabled]{border-color:#f1f1f1 !important;background-color:#fafafa !important}.bootstrap-tagsinput{max-width:96%;padding:0 6px;border:1px solid #e0e0e0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-tagsinput>input{max-height:26px !important;background-color:transparent !important}.atshover:hover .bootstrap-tagsinput,.atshover .bootstrap-tagsinput:hover{background-color:#fff !important}.atshover:hover .bootstrap-tagsinput .label,.atshover .bootstrap-tagsinput:hover .label{background-color:#eee !important}.bootstrap-tagsinput .label{font-size:90% !important;font-weight:normal !important;padding-top:0;padding-bottom:1px;color:#444 !important;background-color:#eee !important}.bootstrap-tagsinput input{margin-top:0 !important;margin-bottom:0 !important}.bootstrap-tagsinput .tag{vertical-align:baseline !important}.atshover .bootstrap-tagsinput .tag span[data-role='remove']{font-size:11px;display:inline-block;margin-top:-2px}.atshover .bootstrap-tagsinput:hover .tag [data-role='remove'],.atshover:hover .bootstrap-tagsinput .tag [data-role='remove']{background-color:#eee !important}.atshover .bootstrap-tagsinput:hover .tag [data-role='remove'],.atshover:hover .bootstrap-tagsinput .tag [data-role='remove'],.bootstrap-tagsinput .tag [data-role='remove']{background-color:#eee !important}.bootstrap-tagsinput .tag [data-role='remove']:hover{color:red !important}.bootstrap-tagsinput .tag [data-role='remove']:hover:active,.bootstrap-tagsinput .tag [data-role='remove']:hover{-webkit-box-shadow:inset 0 1px 0 transparent,0 1px 2px transparent;box-shadow:inset 0 1px 0 transparent,0 1px 2px transparent}.panel,.panel-heading,.panel-group,.panel-group .panel,.well,.modal-content{border-radius:0 !important}.panel-heading{padding:9px 15px 8px 15px}._c__op_d,.panel-group .panel-heading[data-toggle='collapse']{cursor:pointer}.panel-group .panel-heading[aria-static='true'],.panel-group [aria-static='true'] .panel-heading{pointer-events:none}.panel-group [aria-static='true'] a:before{display:none}.container-fluid ._c__op_d:hover>a:last-child,.container-fluid .panel-heading:hover h4>a{color:#1d599d}.table-hover ._c__op_r:hover,.table-hover ._c__op_d:hover,.table-hover ._c__op_r,.table-hover ._c__op_d{background-color:#f7f7f7}._c__op_r ._c__op_r ._c__op_d{height:32px !important;padding:0 3px !important}._c__op_r ._c__op_r ._c__op_d a{font-size:15px !important}._c__op_d.tdhead{text-align:left !important}.table-hover tr[bgcolor='#ffffff']._c__op_r+tr[bgcolor='#feffff']:hover{background-color:#fff !important}.xcontent-force-no-styling .awobject{margin-left:5px}.col_value.col_header .fa-question-circle.-helper{right:20px;margin-top:-25px}.xcontent-force-no-styling .col_value.col_header .fa-question-circle.-helper{margin-top:-30px}.xcontent-force-no-styling .fa-question-circle.-helper{font-size:17px !important;right:21px;margin-top:-25px}.fa-question-circle.-helper{position:absolute;z-index:999;right:15px;margin-top:-20px}html[data-script-name*='settings-editor_read.cgi'] .fa-question-circle.-helper{margin-top:-21px}.fa-question-circle.-helper:hover{color:#333}.popover._helper{z-index:9999;max-width:320px}.popover.module-help{opacity:0}.pointer-events-none{pointer-events:none}.postgresql[data-uri*='view_table.cgi'] .table>tbody>tr>td,.mysql[data-uri*='view_table.cgi'] .table>tbody>tr>td{line-height:15px}.postgresql form[action='delete_fields.cgi']+script+.table-hardcoded,.mysql form[action='delete_fields.cgi']+script+.table-hardcoded{margin-top:2px}.postgresql form[action='table_form.cgi'],.mysql form[action='table_form.cgi']{margin-top:4px}.postgresql form[action='table_form.cgi'] input[name='db']+.ui_form_end_submit,.mysql form[action='table_form.cgi'] input[name='db']+.ui_form_end_submit{margin-right:6px !important}.postgresql select.ui_select.heighter-34[name='type'],.mysql select.ui_select.heighter-34[name='type']{margin-top:1px !important;margin-left:-3px !important}.postgresql .dataTable thead tr th:first-child,.mysql .dataTable thead tr th:first-child{cursor:default;opacity:0}.postgresql .table-hardcoded>tbody>tr>td>*,.mysql .table-hardcoded>tbody>tr>td>*{vertical-align:middle !important}body[class*='postgresql']:not(.__non_res__) .container-resizeable-head,body[class*='mysql']:not(.__non_res__) .container-resizeable-head{z-index:999998;height:23px;margin-bottom:2px;border-top:1px solid #e6e6e6;border-right:1px solid #eee;border-bottom:1px solid #eee;background:rgba(233,242,255,.7)}body[class*='postgresql']:not(.__non_res__)>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>a:nth-child(9) body[class*='postgresql']:not(.__non_res__)>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>a:nth-child(10),body[class*='mysql']:not(.__non_res__)>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>a:nth-child(9),body[class*='mysql']:not(.__non_res__)>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>a:nth-child(10){margin-top:5px}body[class*='postgresql']:not(.__non_res__) form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed th,body[class*='mysql']:not(.__non_res__) form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed th{border-right:1px dotted #f1f1f1}body[class*='postgresql'] form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed td,body[class*='mysql'] form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed td{overflow:hidden;max-width:110px;padding-right:8px !important;padding-left:7px !important;white-space:nowrap;text-overflow:ellipsis}td.selectable,td.selectable label{cursor:default}td.selectable label:not(.lawobject){overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ui_checked_checkbox{width:40px !important;min-width:40px !important;max-width:40px !important}td.col-no-styling:hover,td.col-no-styling{border:0 !important;background-color:white !important}.long-table-wrapper{position:relative;overflow:hidden}.long-table-scroll{overflow:auto;max-height:60vh}.long-table-scroll-maxHeight .long-table-scroll{max-height:100% !important}.db_editor_collapse:hover{color:#333}.background-empty-lines-light-grey{background:repeating-linear-gradient(45deg,rgba(0,0,0,.07),rgba(0,0,0,0) 10px,rgba(0,0,0,.16) 10px,rgba(0,0,0,.17) 20px)}body[class*='mysql'][data-uri*='edit_cnf.cgi'] .file_chooser_button{margin-top:6px !important}form[action='change_users.cgi'] a[href*='edit_user.cgi?']:not([href*='edit_user.cgi?new'])>i{color:#d80a0a}.text-decoration-none{text-decoration:none !important}.text-left{text-align:left !important}.text-right{text-align:right !important}.btn-accordion-filter label,.btn-filter-top-right label{display:none;overflow:hidden;width:120px;margin:-10px 10px -10px -10px}.btn-accordion-filter .filter_mirror_clear,.btn-filter-top-right .filter_mirror_clear{position:absolute;top:10px;left:8px}.btn-accordion-filter input,.btn-filter-top-right input{max-width:80px;background:transparent}form[action='delete_pack.cgi'] ~ td>button{margin-left:3px !important}.table-responsive .table .sub_table_container table td>.file-input-wrapper{margin-bottom:2px}.ui_form>b+.ui_select.heighter-34+.ui_form_end_submit{margin-top:0}.ui_form>.table-condensed td.td_tag span>input[type='text']{margin-top:2px !important;margin-bottom:2px !important}.panel-body>br+.btn-tiny.ui_link_replaced,.panel-body>p>.btn-tiny.ui_link_replaced{vertical-align:baseline}#att_install>form>div>table>tbody>tr>td>table>tbody>tr:nth-child(1)>td.col_value>table>tbody>tr:nth-child(4)>td:nth-child(1)>b>a,.awobject+a[target='_new']{margin-left:3px;vertical-align:bottom !important}.awobject+a.help_popup{vertical-align:bottom !important}.ui_form .table-hardcoded tr td .lawobject>b,.lawobject>b{vertical-align:baseline !important}.lawobject>tt{vertical-align:initial !important}input.dataTable-mirror,.lawobject tt{font-size:12px}.dataTable thead th a.ui_link{pointer-events:none;color:inherit}.ui_buttons_table .ui_buttons_row .ui_buttons_value .table-hardcoded tbody tr td b{margin-right:3px;margin-left:3px}form[action='edit_dump.cgi'] input+input[name='dir']{vertical-align:middle}body:not(.software) .panel-body hr+h3{font-size:15px;margin-left:5px}.ui_form_end_submit{max-height:34px}body[class*='proc'][data-uri*='edit_proc.cgi?'] .table-responsive+.table-hardcoded tbody tr td[nowrap] button.ui_form_end_submit:nth-child(10){margin-left:-5px !important}body[class*='proc'][data-uri*='edit_proc.cgi?'] .table-responsive+.table-hardcoded tbody tr td[nowrap] button.ui_form_end_submit:nth-child(6){margin-left:-5px !important}body[class*='proc'][data-uri*='edit_proc.cgi?'] .table-responsive+.table-hardcoded tbody tr td[align='right']{vertical-align:bottom}body[class*='proc'][data-uri*='edit_proc.cgi?'] td[nowrap]>select[name='signal'],body[class*='proc'][data-uri*='edit_proc.cgi?'] .table-responsive+.table-hardcoded tbody tr td[align='right'] button.ui_form_end_submit{margin-left:-3px !important}body[class*='proc'][data-uri*='index_search.cgi'] #files{width:50% !important}.btn-group.end_submits+select.ui_select{height:34px !important}.heighter-34+.ui_form_end_submit{margin-top:0}table.dataTable tbody tr .table-hardcoded tbody tr{background-color:initial}form[action='save_check.cgi']>b+br+table.ui_grid_table{margin-top:-5px !important;border:1px solid #eee}form[action='save_check.cgi']>b+br+table.ui_grid_table .ui_grid_cell{padding-left:6px !important}form[action='save_check.cgi']>b+br{display:none}.ui_form_end_submit{line-height:0;height:34px}.ui_form .table-responsive .table-subtable .table.table-striped.table-hover.table-condensed thead tr th{text-align:center;background-color:#f6f6f6 !important}.ui_multi_select tbody tr td .ui_select{min-width:200px}form[action='delete_jobs.cgi']{margin-top:6px}body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small .link_hover_effect.btn-tiny.btn-default,body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small input{margin-left:2px !important}body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small{border:1px solid #eee !important;background-color:transparent}body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small .link_hover_effect_style{font-size:13px;padding:0;background-color:transparent !important}body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small span{line-height:20px !important}body[data-uri*='virtual-server/backup_form'] .table-condensed.opener_table_style.opener_table_style_small>tbody>tr._c__op_r>td{line-height:18px !important;border-bottom:1px solid #eee !important}body[class*='proftpd'] form[action*='save'] input[type='submit']{margin-top:10px !important}body[class*='proftpd'][data-uri*='ftpaccess.cgi'] input[name='dir'],body[class*='proftpd'][data-uri*='ftpaccess.cgi'] input[name='file'],body[class*='proftpd'][data-uri*='edit_global.cgi'] input[name='ScoreboardPath'],body[class*='proftpd'][data-uri*='edit_global.cgi'] input[name='PidFile'],body[class*='proftpd'][data-uri*='edit_global.cgi'] input[name='SystemLog']{vertical-align:middle}body[class*='spam'][data-uri*='edit_report.cgi'] form[action='save_report.cgi'] .sub_table_container.table-hardcoded .table.table-striped.table-condensed tbody>tr>td select,body[class*='spam'][data-uri*='edit_report.cgi'] form[action='save_report.cgi'] .sub_table_container.table-hardcoded .table.table-striped.table-condensed tbody>tr>td input:not([type='checkbox']):not([type='radio']),body[class*='spam'][data-uri*='edit_simple.cgi'] select,body[class*='spam'][data-uri*='edit_simple.cgi'] input:not([type='checkbox']):not([type='radio']),body[class*='spam'][data-uri*='edit_header.cgi'] select,body[class*='spam'][data-uri*='edit_header.cgi'] input:not([type='checkbox']):not([type='radio']),body[class*='spam'][data-uri*='edit_white.cgi'] select,body[class*='spam'][data-uri*='edit_white.cgi'] input:not([type='checkbox']):not([type='radio']){width:100% !important;vertical-align:middle}body[class*='spam'][data-uri*='edit_simple.cgi'] input[name*='regexp']:not([type='checkbox']):not([type='radio']),body[class*='spam'][data-uri*='edit_simple.cgi'] input[name*='flags']:not([type='checkbox']):not([type='radio']){width:49.7% !important}body[class*='spam'][data-uri*='edit_simple.cgi'] input[name*='flags']:not([type='checkbox']):not([type='radio']){float:right}body[class*='sshd'][data-uri*='edit_host.cgi'] form[action='save_host.cgi'] .sub_table_container.table-hardcoded .table.table-striped.table-condensed tbody>tr>td input:not([type='checkbox']):not([type='radio']){width:100% !important;vertical-align:middle}body[class*='custom'] .table-title b{line-height:24px}body[class*='custom'][data-uri*='edit_cmd.cgi'] input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:7px !important}form[action*='edit_mon.cgi']:first-child{margin-bottom:10px}body[class*='server-manager'][data-uri*='login.cgi'] iframe+br,body[class*='server-manager'][data-uri*='login.cgi'] iframe+br+input,body[class*='server-manager'][data-uri*='login.cgi'] iframe+br+input ~ p,body[class*='ajaxterm'] iframe+br,body[class*='ajaxterm'] iframe+br+input,body[class*='ajaxterm'] iframe+br+input ~ p{display:none}body[class*='firewall'] .select_invert+br+.table-hardcoded{margin-top:8px !important}body[class*='firewall'] .table-hardcoded input[type='submit']+input[name='chain'],body[class*='firewall'] .table-hardcoded input[type='submit']{vertical-align:middle}body[class*='pptp-client'] form[action*='save'] input[type='submit']{margin-top:10px !important}body[class*='pam'] form[action*='create_pam'] input[type='submit']{margin-top:10px !important}body[class*='usermin'][data-uri*='edit_logout.cgi'] form table td select,body[class*='usermin'][data-uri*='edit_logout.cgi'] form table td input{width:100% !important}body[class*='package-updates'] form>table.ui_grid_table tr:first-child td,body[class*='package-updates'][data-uri*='index.cgi'] form>table.ui_grid_table tr:first-child td{padding-bottom:20px !important}.table-subtable tbody tr td,.panel-body .table-subtable tr th,.panel-body .table-subtable tr td,.table-subtable tbody tr td,.panel-body tr th,.panel-body tr td{padding:1px !important}.table-hardcoded table .table-hardcoded tr:first-child:not(.ui_multi_select_row) td{padding-top:2px !important}.table-hardcoded table.ui_radio_table .table-hardcoded tr:last-child:not(.ui_multi_select_row) td{padding-bottom:2px !important}.table-subtable tbody tr td.col_header,.panel-body td.col_header,.table-subtable tbody tr td.col_header,.panel-body .table-subtable td.col_header{padding:0 !important}.panel-body .table-subtable tr th:not(.table-title),.panel-body tr th:not(.table-title){padding:6px 22px !important}.table-subtable>tbody>tr:nth-child(odd){background-color:#fff}.usermin tr>td.col_value>br+b{font-size:13px}.panel-body>.nav.nav-tabs+.tab-content{margin-top:2px}.nav-tabs>li>a{margin-right:0}.table>tbody>tr>td>label>img{margin-top:2px;margin-bottom:-2px}form input[style*='height: 28px']+.btn:not(.heighter-34-force) span,.sub_table_container td span>input,.table>tbody>tr>td{vertical-align:middle}.td_tag>img{margin-top:-2px}html[data-script-name*='sysinfo.cgi'] #system-status table tr td{padding-top:5px !important;padding-bottom:5px !important;padding-left:5px !important}.badge.fa.fa-github span,.badge.background-info.fa.fa-twitter span{margin-left:-7px}.badge.fa.fa-github,.badge.background-info.fa.fa-twitter{font-size:11px}.badge.fa.fa-github:hover{background-color:rgba(22,22,22,.73)}.badge.background-info.fa.fa-twitter:hover{background-color:#4193aa}.panel-title{line-height:16px;margin-top:-1px;margin-bottom:2px}form[action*='edit_manual.cgi']+script+p+form[action*='save_manual.cgi'] .table thead,form[action*='edit_manual.cgi']+script+p{display:none}._c__op_r+tr>td.opener_container table table{margin-top:1px !important;margin-bottom:1px !important}input+br+.awobject+.file-input-wrapper{margin-top:1px}.htaccess-htpasswd .awobject+input[type='text']+br+.awobject+input[type='text'],br+.awobject+select{margin-top:2px}.awobject+textarea{margin-top:4px}body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container,body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']{margin-bottom:10px}body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container+div+p>a{border-bottom:1px solid #ddd !important}body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container+div+p+div>div>form{padding:8px}body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container+div+p+div>div>form .ui_form_end_submit{margin-top:4px}body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container+div+p{margin-top:4px}#att_simple .table tbody tr:first-child td:first-child{border-top:0}#att_simple .table tbody tr:first-child td:first-child>table:first-child{margin-top:-2px;border:1px solid #eaeaea}.ui_form_end_buttons,form>.table-hardcoded tbody tr td:first-child .table{margin-left:-2px}body.virtual-server form[action='edit_newfeatures.cgi']+script+form[action='edit_newtmpl.cgi']{margin-top:10px}body[class*='usermin'] .ui_grid_table+.ui_link_replaced,body[class*='usermin'] .ui_grid_table+.ui_link_replaced ~ .ui_link_replaced,body[class*='usermin'][data-uri*='edit_session.cgi'] #extauth{margin-top:2px !important}a.select_invert{margin-right:5px}body[class*='usermin'][data-uri*='edit_restrict.cgi'] .awobject+font[color='#ff0000']{margin-left:-9px}body[class*='webminlog'] textarea#anno+br+.ui_form_end_submit{margin-top:-1px !important;margin-bottom:2px;margin-left:2px}body[data-module='bind8'] .ui_form_end_submit+input.hidden+.awcheckbox{margin-left:10px !important;vertical-align:middle}body[class*='bind8'][data-uri*='edit_zonekey.cgi'] .panel-body>p:first-child{margin-bottom:5px}body[class*='bind8'] div>div>div.panel-body>form>div.table-responsive>table.table-subtable>tbody>tr>td>table>tbody>tr>td>span.awradio{vertical-align:sub}font[color='#ff4400'],font[color='#ff0000']{color:#e8433f !important}font[color='#00aa00']{color:#0a0 !important}font[color='#0000ff']{color:#4771e2 !important}body[class='servers'] input[name='scan']{margin-bottom:2px}body[class='servers'] input[name='defuser']{margin-top:2px}body[class='servers'] input[name='port']{margin-bottom:2px}body[class='acl'] .panel-body>h3{margin-left:0 !important;padding-bottom:5px;border-bottom:1px solid #eee}body[class='acl'] select[name='group']{margin-top:0 !important;margin-left:-1px !important}body[class='acl'][data-uri*='edit_user.cgi'] .col_value.col_header a.select_all,body[class='acl'][data-uri*='edit_user.cgi'] .col_value.col_header a.select_invert,body[class='acl'][data-uri*='edit_group.cgi'] .col_value.col_header a.select_all,body[class='acl'][data-uri*='edit_group.cgi'] .col_value.col_header a.select_invert{margin-top:5px;margin-bottom:5px}body[class='acl'] span>input[name='fileunix'],body[class='acl'] span>input[name='root']{vertical-align:middle}body[class='acl'] input[onclick*='form.fileunix']+i.fa-files-o{margin-top:9px !important}body[class='acl'] input+i.fa-files-o{margin-top:12px !important}body[class*='quota'][data-uri*='list_users.cgi'] form>input[data-mmclick],body[class*='quota'][data-uri*='list_groups.cgi'] form>input[data-mmclick],body[class*='quota'] td>input[data-mmclick].heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-left:-8px !important}body[class*='quota'][data-uri*='list_groups.cgi'] input+i.fa-files-o,body[class*='quota'][data-uri*='list_users.cgi'] input+i.fa-files-o{margin-top:14px !important}body[class*='quota'][data-uri*='list_users.cgi'] form>input[name='user'],body[class*='quota'][data-uri*='list_groups.cgi'] form>input[name='group']{margin-left:-4px !important}body[class*='quota'] td>input[name='user'].heighter-34:not(.btn-lg):not(.ui_form_end_submit),body[class*='quota'] td>input[name='group'].heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-left:-10px !important}body[class*='pam'][data-uri*='create_form.cgi'] input[name='name']{margin-top:1px}body[class*='pam'][data-uri*='create_form.cgi'] .awobject{margin-left:4px}body[class*='pam'][data-uri*='create_form.cgi'] td>.table-hardcoded td{padding:3px 4px !important}body[class*='proc'] .panel-body>b.btn-success,body[class*='proc'] .panel-body>.ui_link{margin-left:-1px !important}body[class*='proc'] .panel-body>b.btn.btn-success.heighter-34,body[class*='proc'] .panel-body>b.btn.btn-success.heighter-34,body[class*='proc'] .panel-body>.ui_link.btn.heighter-34{line-height:20px !important}body[class*='ldap-client'] input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:7px !important}body[class*='ldap-client'] .table-hardcoded{margin-top:2px}body[class*='virtualmin-nginx'] form[action='edit_mime.cgi']{margin-bottom:4px !important}tr>td>span+input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o,input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:9px !important;margin-left:-26px !important}tr>td:not(.col_value)>input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:11px !important}tr>td.col_value tr>td:not(.col_value)>input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:10px !important}body[class='sshd'][data-uri*='edit_access.cgi'] input+i.fa-files-o{margin-top:7px !important}body[class='dovecot'][data-uri*='edit_login.cgi'] tr>td>span+input+i.fa-files-o{margin-top:7px !important}body[class='spam'][data-uri*='edit_awl.cgi'] input+i.fa-files-o{margin-top:14px !important}body[class*='spam'] form>input[data-mmclick].heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-left:-7px !important}body[class*='postgresql'][data-uri*='view_table.cgi'] #DataTables_Table_0 tr td.ui_checked_checkbox>.awcheckbox.awobject,body[class*='mysql'][data-uri*='view_table.cgi'] #DataTables_Table_0 tr td.ui_checked_checkbox>.awcheckbox.awobject{margin-top:-2px}body[class*='postgresql'][data-uri*='edit_dbase.cgi'] #DataTables_Table_0,body[class*='mysql'][data-uri*='edit_dbase.cgi'] #DataTables_Table_0{margin-left:0}body[class*='postgresql']:not([data-uri*='view_table.cgi']):not([data-uri*='backup_form.cgi']) .table.table-striped.table-hover.table-condensed tr,body[class*='mysql']:not([data-uri*='view_table.cgi']):not([data-uri*='backup_form.cgi']) .table.table-striped.table-hover.table-condensed tr,body[class*='status'] .table.table-striped.table-hover.table-condensed tr,.ui_grid_table.table-hardcoded .ui_grid_row td>.table.table-striped.table-hover.table-condensed tr{border-top:1px solid #e4e4e4}form[action='list_mail.cgi'] input#user{margin-top:0 !important}form[action='mail_search.cgi'] input[name='search']{min-height:34px !important}form[action='delete_mail.cgi'] button#delete{float:right}form[action='delete_mail.cgi'] select#mfolder1,form[action='delete_mail.cgi'] button.ui_form_end_submit{margin-left:-1px !important}form[action='delete_mail.cgi'] select#mfolder2{margin-top:5px !important;margin-left:-1px !important}body[class*='mailboxes'] form>button[data-mmclick].heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-left:-8px !important}body[class*='mailboxes'] form>input[name='user'].heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-left:-5px !important}body[class*='cluster-cron'] .panel-body>form>.table-hardcoded tr+script+.thead .tdhead b{font-size:15px !important}body[class*='cluster-useradmin'] input[name='what'],body[class*='cluster-webmin'] input[name='file'],body[class*='cluster-webmin'] input[name='local'],body[class*='cluster-usermin'] input[name='file'],body[class*='cluster-usermin'] input[name='local'],body[class*='cluster-software'] form[action='search.cgi']>input[name='search']{vertical-align:middle}body[data-user-switch='1'] tr[data-users-switch]{display:table-row !important}html[data-sestatus='0'] tr[data-selinux]{display:none}body[data-module='net'] input[name^='nameserver']{margin-bottom:4px !important}body[class*='fetchmail'][data-uri*='edit_poll.cgi'] input:not([type='checkbox']):not([type='radio']){vertical-align:middle !important}body[class*='fetchmail'][data-uri*='edit_cron.cgi'] tr:first-child input:not([type='checkbox']):not([type='radio']){margin-bottom:2px}body[class*='fetchmail'][data-uri*='edit_poll.cgi'] tr:first-child input:not([type='checkbox']):not([type='radio']){margin-top:1px}body[class*='fetchmail'][data-uri*='edit_poll.cgi'] tr:first-child input[type='submit']{margin-top:4px !important}body[class*='fetchmail'] .panel-body>form[action='edit_poll.cgi']:first-child{margin-bottom:4px !important}body[class*='fetchmail'] table.table-hardcoded>tbody>tr[bgcolor].thead>td>b{font-size:18px !important;vertical-align:middle !important}html[data-script-name*='webmin/edit_assignment.cgi'] div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>table.ui_table>tbody>tr>td>table>tbody>tr>td,html[data-script-name*='usermin/edit_assignment.cgi'] div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>table.ui_table>tbody>tr>td>table>tbody>tr>td{vertical-align:middle !important}body[class*='firewalld'][data-uri*='edit_port.cgi'] input[name='port']{margin-top:1px}body[class*='fsdump'] form[action*='delete_dumps.cgi']+script+form[action*='edit_dump.cgi']{margin-top:15px}body[class*='htaccess-htpasswd'] .table.table-striped .ui_grid_table.table-hardcoded{width:80%}body[class*='htaccess-htpasswd'] .table.table-striped .ui_grid_table.table-hardcoded+a{position:absolute;right:0;float:right;margin-top:-13px;margin-right:24px}body[class*='webalizer'] td.td_tag img[src*='images/empty']{display:none}body[class*='virtual-server'][data-uri*='list_records.cgi'] button#manual{float:right}body[class*='virtual-server'][data-uri*='list_records.cgi'] select#type{margin-top:0 !important;margin-right:5px}body[class*='htaccess-htpasswd'] input[type='submit']+input[name='search'],body[class*='fsdump'] input[type='submit']+input[name='dir'],input[onclick*='datePicker('],button[onclick*='datePicker(']{margin-left:-5px !important}body[class*='htaccess-htpasswd'] input[type='submit']+input[name='search']+button[data-mmclick],body[class*='usermin'][data-uri*='list_sessions.cgi'] input[data-mmclick],body[class*='useradmin'] tr td.ui_buttons_label input[data-mmclick]{margin-left:-8px !important}#show_backup_destination>tbody,.ui_form:not([action='save_iptables.cgi']):not([action='export_mod.cgi/theme.ubt.gz']):not([action='add.cgi']):not([action='save_storage.cgi']):not([action='save_repl.cgi']):not([action='download.cgi']):not([action='upload.cgi']):not([action='install_mod.cgi']):not([action='save_newretention.cgi']):not([action='add_style.cgi']):not([action='save_validate.cgi']):not([action='mass_create.cgi']):not([action='migrate.cgi']):not([action='save_bkey.cgi/key.txt']) div.table-responsive table.table-subtable tbody tr td>table.sub_table_container tbody tr td.col_value table.table-hardcoded tbody{border:1px solid #eaeaea !important}.ui_form:not([action='save_iptables.cgi']):not([action='export_mod.cgi/theme.ubt.gz']):not([action='add.cgi']):not([action='save_storage.cgi']):not([action='save_repl.cgi']):not([action='download.cgi']):not([action='upload.cgi']):not([action='install_mod.cgi']):not([action='save_newretention.cgi']):not([action='add_style.cgi']):not([action='save_validate.cgi']):not([action='mass_create.cgi']):not([action='migrate.cgi']):not([action='save_bkey.cgi/key.txt']) div.table-responsive table.table-subtable tbody tr td>table.sub_table_container tbody tr td.col_value table.table-hardcoded tbody tr:first-child td{padding-top:1px !important;padding-right:2px !important}.ui_form:not([action='save_iptables.cgi']):not([action='export_mod.cgi/theme.ubt.gz']):not([action='add.cgi']):not([action='save_storage.cgi']):not([action='save_repl.cgi']):not([action='download.cgi']):not([action='upload.cgi']):not([action='install_mod.cgi']):not([action='save_newretention.cgi']):not([action='add_style.cgi']):not([action='save_validate.cgi']):not([action='mass_create.cgi']):not([action='migrate.cgi']):not([action='save_bkey.cgi/key.txt']) div.table-responsive table.table-subtable tbody tr td>table.sub_table_container tbody tr td.col_value table.table-hardcoded tbody tr:last-child td{padding-right:2px !important;padding-bottom:3px !important}body[class*='php-pear'][data-uri*='view.cgi'] .table .table-hardcoded tbody tr:not(:last-child) td:not(:first-child){border-bottom:1px solid #efefef}body[class*='inetd'][data-uri*='edit_rpc.cgi'] tr>td>span+input[data-mmclick*='group_chooser.cgi']:not(.heighter-34)+i.fa-files-o,body[class*='updown'] tr>td>span+input[data-mmclick*='group_chooser.cgi']:not(.heighter-34)+i.fa-files-o,body[class*='status'][data-uri*='edit_mon.cgi'] input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:7px !important}body[class*='virtual-server'][data-uri*='edit_limits.cgi'] input+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,body[class*='fetchmail'] input[data-mmclick]:not(.heighter-34)+i.fa-files-o{margin-top:11px !important}body[class*='squid'] input[data-mmclick]:not(.heighter-34)+i.fa-files-o,body[class*='squid'] input[data-mmclick]:not(.heighter-34)+i.fa-files-o{margin-top:12px !important;margin-left:-29px !important}input[data-mmclick]:not(.heighter-34)+i.fa-files-o{margin-top:7px !important;margin-left:-28px !important}body[class*='updown'] tr>td>input[name='group']+input[data-mmclick*='group_chooser.cgi']:not(.heighter-34)+i.fa-files-o,body[class*='updown'] tr>td>input[name='user']+input[data-mmclick*='user_chooser.cgi']:not(.heighter-34)+i.fa-files-o,body[class*='proc'] tr>td>input[name='user']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,body[class*='webmin'] tr>td>input[name='third']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,body[class*='webmin'] tr>td>input[name='standard']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,body[class*='virtual-server'][data-uri*='import_form.cgi'] form input+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,html[data-script-name*='config.cgi'] form[action*='config_save.cgi'] input[name='vpopmail_group']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,html[data-script-name*='config.cgi'] form[action*='config_save.cgi'] input[name='vpopmail_user']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,html[data-script-name*='config.cgi'] form[action*='config_save.cgi'] input[name='webmin_modules']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,html[data-script-name*='config.cgi'] form[action*='config_save.cgi'] input[name='reseller_modules']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o{margin-top:9px !important}body[class*='virtual-server'][data-uri*='edit_user.cgi'] .opener_container .fa-calendar.file_chooser_button_attached{margin-top:10px !important}body[class*='virtual-server'] img[src*='grey'],body[class*='virtual-server'] img[src*='blue'],body[class*='virtual-server'] img[src*='red'],body[class*='virtual-server'] img[src*='usage-'],body[class*='server-manager'] img[src*='grey'],body[class*='server-manager'] img[src*='blue'],body[class*='server-manager'] img[src*='purple'],body[class*='server-manager'] img[src*='red'],body[class*='server-manager'] img[src*='usage-']{filter:saturate(1.2) brightness(1.2) contrast(1) hue-rotate(-31deg);-webkit-filter:saturate(1.2) brightness(1.2) contrast(1) hue-rotate(-31deg)}body[class*='krb5'] input[name='kdc'],body[class*='krb5'] input[name='default_admin_port']{margin-left:3px}body[class*='grub'] .icons-container .hidden-forged-7{display:none}html:not([data-background-style='nightRider']) body[class*='mysql'][data-uri*='view_table']:not(.csf):not(.backup-config) .table-striped>tbody>tr:hover td,html:not([data-background-style='nightRider']) body[class*='postgresql'][data-uri*='view_table']:not(.csf):not(.backup-config) .table-striped>tbody>tr:hover td,html:not([data-background-style='nightRider']) body[class*='mysql'][data-uri*='backup_form']:not(.csf):not(.backup-config) .table-striped>tbody>tr:hover td,html:not([data-background-style='nightRider']) body[class*='postgresql'][data-uri*='backup_form']:not(.csf):not(.backup-config) .table-striped>tbody>tr:hover td{background-color:#fff !important}body[class*='squid'][data-uri*='edit_cachemgr'] .table-hover>tbody>tr:hover,body[class*='sendmail'][data-uri*='list_ports.cgi'] .table-hover>tbody>tr:hover{background-color:#f7f7f7 !important}.cm-s-monokai .CodeMirror-dialog,.cm-s-monokai .CodeMirror-dialog input{color:#eee !important}.CodeMirror ~ input[type='reset']{display:none}.datepicker{font-size:90%}.datepicker .datepicker-days thead .dow{font-size:115%}.datepicker table tr td,.datepicker table tr th{border-radius:0}form[action='save_login.cgi'] input[type='text']+br{line-height:26px}html[data-script-name*='password_change.cgi'] body .container-fluid{pointer-events:auto !important;opacity:1 !important}html[data-script-name*='password_change.cgi'] .panel .panel-body hr,html[data-script-name*='password_change.cgi'] .panel .panel-heading{display:none}html[data-script-name*='password_change.cgi'] .panel{position:relative;max-width:320px;margin:80px auto 0;padding:30px 30px 40px 30px;text-align:center;color:#444;border:0;border-radius:0}html[data-script-name*='password_change.cgi'] .panel-body{-webkit-box-shadow:none;box-shadow:none}html[data-script-name*='password_change.cgi'] .panel-body center h3{font-size:15px}html[data-script-name*='password_change.cgi'] .panel-body center h3 a{text-decoration:underline}html:not([data-background-style='nightRider']) body[data-module*='virtualmin-mailman'] form .table-hardcoded>tbody>tr>td[bgcolor='#dddddd']{background-color:transparent !important}body[data-module*='virtualmin-mailman'] form .table-hardcoded>tbody>tr>td[bgcolor='#dddddd']>div[align='right']{padding-right:25px}body[data-module*='virtualmin-mailman'] form>table.table-hardcoded table.table-hardcoded>tbody,body[data-module*='virtualmin-mailman'] form .table-hardcoded>tbody>tr>td[bgcolor='#dddddd']>.table-hardcoded>tbody{border:none !important}body[data-module*='virtualmin-mailman'] address>.table-hardcoded{display:none}body[data-module*='virtualmin-mailman'] form font[color='#ff0000'] strong font[size='+1'],body[data-module*='virtualmin-mailman'] td b font[color='#000000'][size='+1'],body[data-module*='virtualmin-mailman'] .panel-body>font[size='+1'],body[data-module*='virtualmin-mailman'] .panel-body>font[size='+2'],body[data-module*='virtualmin-mailman'] div[align='right'] font[size='+2'],body[data-module*='virtualmin-mailman'] .table-hardcoded font[size='+2']{font-size:13px}body[data-module*='virtualmin-mailman'] .panel-body>h1,body[data-module*='virtualmin-mailman'] h3,body[data-module*='virtualmin-mailman'] h2{font-size:18px}body[data-module*='virtualmin-mailman'] .table-hardcoded td[bgcolor='#FFF0D0']{padding:6px !important;border:1px solid #eaeaea;background-color:#f7f7f7}body[data-module*='virtualmin-mailman'] .table-hardcoded td[bgcolor='#FFF0D0'][colspan='1']:first-child{border-right:0}body[data-module*='virtualmin-mailman'] .table-hardcoded td[bgcolor='#FFF0D0'][colspan='1']:last-child{border-left:0}.cke_panel,.cke_toolbar *,.cke_dialog_body,.cke_dialog_body *,a.cke_button,.cke_contents,.cke_chrome,.cke_editor_body{border-radius:0 !important}.cke_bottom,.cke_top{background:#f5f5f5 !important}.cke_dialog_ui_button_cancel{margin-left:-6px !important}.jsglyph{font-family:'Authentic'}.jsglyph-minimize:before{content:'\f0b6'}.jsglyph-maximize:before{content:'\f0b8'}.jsglyph-normalize:before{content:'\f0d9'}.jsglyph-close:before{content:'\f044'}.table>thead>tr:first-child>th,.table>tbody>tr:first-child>th,.table>tfoot>tr:first-child>th,.table>thead>tr:first-child>td,.table>tbody>tr:first-child>td,.table>tfoot>tr:first-child>td{border-top:1px solid #e9e9e9}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{border-top:1px solid #e4e4e4}.server-manager td.ui_radio_radio,.virtual-server td.ui_radio_radio{min-width:51px}.server-manager table.table.table-striped.table-condensed tbody+thead>tr:first-child,.virtual-server table.table.table-striped.table-condensed tbody+thead>tr:first-child{border-top-width:1px !important}.heighter-34+i.fa-files-o,td>.heighter-34+i.fa-files-o{margin-top:14px !important}body .mppopup .modal-dialog{overflow-y:initial !important}body .mppopup .modal-body{overflow-y:auto;max-height:80vh}body .mppopup .modal-body .table tr td img{margin-top:-3px;margin-bottom:-2px;-webkit-transform:scale(.82);transform:scale(.82)}body .mppopup .modal-body .table tr.noresults{background-color:#f7f7f7}body .mppopup .modal-body .table tr td a[onclick*='select']:hover,body .mppopup .modal-body .table tr td a[onclick*='parentdir']:hover,body .mppopup .modal-body .table tr td a[onclick*='fileclick'][onclick*=', 1']:hover{color:#1d599d}body .mppopup button[data-mppopup_confirm]{font-size:12px !important;line-height:22px !important}body .mppopup .modal-body .table tr td{word-break:break-word}body .mppopup .modal-body .table.type2 tr td li{display:block}body .mppopup .modal-body .table.type2 tr td li:before{display:inline-block;margin-right:5px;content:' • '}body .mppopup .modal-body .table.type2 tr td:first-child{min-width:120px;padding-left:6px}body .mppopup .modal-body.third_chooser .table.type2 tr td:nth-child(2){min-width:60px}body .mppopup .modal-body.third_chooser .table.type2 tr td:first-child{min-width:180px}body .mppopup .modal-body.third_chooser .table.type2{width:99.99%}body .mppopup .modal-header .close{margin-top:2px}body .mppopup .modal-header .mppopup_filter{display:inline;clear:both;width:100%;margin:0;padding:0}body .mppopup .modal-footer input[data-mppopup_value],body .mppopup .modal-header .mppopup_filter input{font-size:12px;display:inline;width:95.6%;height:28px !important;padding-top:0;padding-bottom:0;vertical-align:middle !important}body .mppopup .modal-footer input[data-mppopup_value]{width:100%}body .mppopup .breadcrumbx{margin-bottom:11px}body .mppopup .breadcrumbx a{cursor:default}body .mppopup .modal-footer .input-group-btn{vertical-align:top}body .mppopup .modal-footer .input-group-btn.mppopup_multi_done button{padding-top:2px !important;padding-left:13px}body .mppopup .bootstrap-tagsinput{min-width:100%;padding:0 3px;text-align:left}body .mppopup .bootstrap-tagsinput .tag{vertical-align:middle !important}body .mppopup .bootstrap-tagsinput input{font-size:12px !important;padding-bottom:2px}.mppopup_filter_input::-webkit-input-placeholder{color:#aaa}.mppopup_filter_input::-moz-placeholder{opacity:1}.breadcrumbx{font-size:11px;display:inline-block;padding:1px;padding-right:18px;background:#dedede;-webkit-clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%);clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%)}.breadcrumbx a{position:relative;display:inline-block;margin-right:-17px;padding:1px 25px 1px 25px;text-decoration:none;color:#333;background:#fbfbfb;-webkit-clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%,15px 50%);clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%,15px 50%)}.breadcrumbx a:first-child{padding-left:20px;-webkit-clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%);clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%)}body.sysstats .graph_table a img{max-width:none !important}.-shell-port- .-shell-port-cmd .-shell-port-prompt{line-height:14px;display:block;height:auto}.-shell-port- .-shell-port-cmd .-shell-port-prompt{float:left}.-shell-port- .-shell-port-cmd{font-family:monospace;font-size:12px;line-height:14px;width:100%;padding-bottom:5px;color:#fefefe;background-color:transparent}.-shell-port- .-shell-port-container{overflow:auto;height:100%;margin-top:-8px}.-shell-port- pre b{margin-left:-9.5px}.-shell-port- pre{margin-bottom:-9px;white-space:pre-wrap;color:#fafafa;border:0;background-color:transparent}.-shell-port-.opened input[data-command='true']{font-family:monospace;font-size:12px;height:15px !important;margin-left:1px;border:0;background-color:transparent}.-shell-port- .-shell-port-type{vertical-align:middle}.-shell-port-.opened{position:fixed;z-index:999999;top:0;right:0;bottom:100vh;left:0;opacity:.85;background-color:#000}.-shell-port-:not(.opened) *{display:none}.-shell-port-.opened ~ .modal-backdrop{display:none}.session-reauthenticate{position:fixed;z-index:999999999;top:0;right:0;bottom:0;left:0;opacity:.91;background-color:#fff}.session-reauthenticate-container-center{max-width:420px;margin:12% auto 0;padding:20px;border:1px solid #e6e6e6;box-shadow:-30px 30px 51px rgba(0,0,0,.2)}.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.session-reauthenticate-header{min-height:50px;margin:20px 0;padding:0 15px}.session-reauthenticate-header .session-reauthenticate-header-icon{font-size:60px;line-height:0;float:left;width:68px;margin-top:-8px;color:#f6a821}.session-reauthenticate-header .session-reauthenticate-header-icon i.fa-unlock{margin-left:-23px;color:#48a647}.session-reauthenticate-header .session-reauthenticate-header-title{margin-left:68px}.session-reauthenticate-header .session-reauthenticate-header-title h3{margin-bottom:2px}.session-reauthenticate .form-group input{min-width:100%;margin-left:0 !important}.session-reauthenticate-help-block{display:block;margin-top:4px;margin-bottom:10px;margin-left:2px;color:#737373}@-webkit-keyframes slideInDown{from{visibility:visible;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{visibility:visible;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}.loading-dots:after{content:' .';animation:dots 1s steps(5,end) infinite}@keyframes dots{0,20%{color:white;text-shadow:.25em 0 0 rgba(0,0,0,0),.5em 0 0 rgba(0,0,0,0)}40%{color:#333;text-shadow:.25em 0 0 rgba(0,0,0,0),.5em 0 0 rgba(0,0,0,0)}60%{text-shadow:.25em 0 0 #333,.5em 0 0 rgba(0,0,0,0)}80%,100%{text-shadow:.25em 0 0 #333,.5em 0 0 #333}}.no-controls,.no-controls:after,.no-controls:before{pointer-events:none;color:transparent !important;background:none !important;background-color:transparent !important}html[data-background-style='gainsboro'],html[data-background-style='gainsboro'] body,html[data-background-style='gainsboro'] .container:not(.form-signin-banner),html[data-background-style='gainsboro'] .loader-container,html[data-background-style='gainsboro'] .input-group-addon{background-color:#d6d6d6 !important}html[data-background-style='gainsboro'] .form-signin-banner,html[data-background-style='gainsboro'] .form-signin{border:1px solid rgba(212,212,212,.93);-webkit-box-shadow:2px 3px 2px rgba(0,0,0,.06);box-shadow:2px 3px 2px rgba(0,0,0,.06)}html[data-background-style='gainsboro'] .panel.panel-default{border-color:rgba(150,150,150,.45);border-top-color:rgba(228,228,228,.83);-webkit-box-shadow:1px 2px 2px rgba(0,0,0,.02);box-shadow:1px 2px 2px rgba(0,0,0,.02)}html[data-background-style='gainsboro'] .container-fluid .panel-body .panel.panel-default{border-color:#e8e8e8 !important}@-webkit-keyframes obj-popup{50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@keyframes obj-popup{50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}.obj-popup{position:relative;display:inline-block;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);-webkit-animation-name:obj-popup;animation-name:obj-popup;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:1;animation-iteration-count:1;vertical-align:middle}.fa-mds{font-size:1.1em}.fa-md{font-size:1.2em;line-height:.6em;vertical-align:-10%}.fa-spin-slow{-webkit-animation:fa-spin 3s infinite linear;animation:fa-spin 3s infinite linear}.fa-spin-fast{-webkit-animation:fa-spin 1s infinite linear;animation:fa-spin 1s infinite linear}@-webkit-keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spin3d{0{-webkit-transform:rotate(0) translateZ(0);transform:rotate(0) translateZ(0)}100%{-webkit-transform:rotate(359deg) translateZ(0);transform:rotate(359deg) translateZ(0)}}@keyframes spin3d{0{-webkit-transform:rotate(0) translateZ(0);transform:rotate(0) translateZ(0)}100%{-webkit-transform:rotate(359deg) translateZ(0);transform:rotate(359deg) translateZ(0)}}@-webkit-keyframes dash{0{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}@keyframes dash{0{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}@-webkit-keyframes nprogress-spinner{0{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes nprogress-spinner{0{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@media screen and (max-width:600px),screen and (max-height:600px){nav.favorites-menu ul{font-size:.75em}nav.favorites-menu ul a{padding:10px}}.modal.modal-connection-warning{z-index:999999999}.modal-dialog-update .label.label-default{display:inline-block;margin:-1px}.modal-dialog-update .version_separator{font-size:10px;display:inline-block;float:right;margin-top:-14px}.modal-dialog-update .version_separator+hr{margin-top:13px;margin-bottom:10px}.modal-dialog-update .modal-body>h4:first-child{padding-bottom:4px;border-bottom:1px solid #eee}.modal-dialog-update .modal-body span[data-bugs-container]>a:first-child{margin-left:6px}.modal-dialog-update .modal-body span[data-bugs-container]>a{margin-right:3.5px !important}.modal-dialog-update .modal-body div[data-bugs]{margin-top:-10px;margin-bottom:-8px}.modal-dialog-update .modal-body .version_separator+hr,.modal-dialog-update .modal-body a+hr{border-style:dashed}.modal-dialog-update a.diffctl{margin-top:-2px;margin-bottom:0;padding:0 12px !important;vertical-align:text-bottom}.modal-dialog-update a.changelogctl{margin-bottom:-2px}.modal-dialog-update span[data-released-date] .label,.modal-dialog-update .version_separator .label{border-radius:0}.modal-dialog-update .single_ver{margin-left:-9px}.modal-dialog-update .fa-git-pull,.modal-dialog-update .multi-ver{margin-left:-7px}.modal-dialog-update .modal-body>h4:first-child+.version_separator+.no-data+.version_separator{margin-top:-9px}.modal-dialog-update .modal-body>h4:first-child+.version_separator+.no-data+.version_separator+hr{display:none}.modal-dialog-update [data-fixed-bugs] i.fa{display:block;margin-top:1px}.hr-dashed{border-style:dashed}.hr-no-margin{margin-top:1px;margin-bottom:0}.hr-darker{border-color:rgba(200,200,200,.5)}[draggable=true]{-khtml-user-drag:element}.modal-list-users hr{margin-bottom:13px}@media(max-width:460px){body[data-uri*='sysinfo.cgi'] .col-xs-6{width:100%}}@media(min-width:768px) and (max-width:960px){html[data-slider-fixed='1'] body[data-uri*='sysinfo.cgi'] .col-xs-6{width:100%}}@media(max-width:1280px) and (min-width:960px){html[data-slider-fixed='1'] body[data-uri*='sysinfo.cgi'] .col-md-3,html[data-slider-fixed='1'] body[data-uri*='sysinfo.cgi'] .col-md-6{width:50%}html[data-slider-fixed='1'] body[data-uri*='sysinfo.cgi'] .col-xs-12{width:100%}}@media(min-width:768px){.modal-dialog.modal-dialog-update{width:640px;margin:30px auto}.modal-top-10{margin:10% auto}.modal-md{width:480px}}@media screen and (max-width:767px){.table-responsive{border:0}}@media(max-width:720px){.dataTables_wrapper>.dataTables_filter{display:none}}@media(min-width:1200px){.col-lg-10{width:100%}.col-lg-offset-1{margin-left:0}}@media(min-width:1920px){.container:not(.session_login),.container-fluid,.container-fluid-loading{margin-top:30px}.col-lg-10{width:83.33333333%}.col-lg-offset-1{margin-left:8.33333333%}html[data-slider-fixed='1'] .container:not(.session_login),html[data-slider-fixed='1'] .container-fluid,html[data-slider-fixed='1'] .container-fluid-loading{margin-top:15px}html[data-slider-fixed='1'] .col-lg-10{width:100%}html[data-slider-fixed='1'] .col-lg-offset-1{margin-left:0}}@media(min-width:2560px){.container:not(.session_login),.container-fluid,.container-fluid-loading,html[data-slider-fixed='1'] .container:not(.session_login),html[data-slider-fixed='1'] .container-fluid,html[data-slider-fixed='1'] .container-fluid-loading{margin-top:30px}.col-lg-10,html[data-slider-fixed='1'] .col-lg-10{width:83.33333333%}.col-lg-offset-1,html[data-slider-fixed='1'] .col-lg-offset-1{margin-left:8.33333333%}}@media(max-width:767px){#content.__page{margin:0 !important}.autocomplete-suggestions{min-width:260px !important}html[data-slider-fixed='1'] .right-side-tabs{display:none}html[data-slider-fixed='1']{margin-right:0}}@media screen and (max-width:767px){.loader{margin:-20px 0 !important}.btn-hidden.hidden{display:inline-block !important}}td.ui_buttons_label td.ui_buttons_value{width:20%;vertical-align:top}td.ui_buttons_value{width:80%}td[data-nowrap]{white-space:nowrap}html[data-uri*='virtual-server/delete_domain.cgi'] font[size='+1']{font-size:inherit;color:#e8433f}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.panel .panel-heading .panel-title a:before,td .opener_trigger[id]:before,.panel .panel-heading .panel-title a[aria-expanded='true']:before,td .opener_trigger.opener_container_opened[id]:before,a.opener_extra_container_a_style:before,a.opener_extra_container_a_style.opener_container_opened:before{display:none}} \ No newline at end of file + */[class^='wbm-']:before,[class*=' wbm-']:before{font-family:'Authentic' !important;font-size:19px;font-weight:normal !important;font-style:normal !important;font-variant:normal !important;line-height:1;text-transform:none !important;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class*='wbm-cloudmin']:before{font-size:21px}[class*='wbm-webmin']:before{font-size:18px}.fa-1_25x{font-size:1.28em !important;vertical-align:-7% !important}.fa-1_50x{font-size:1.50em !important;vertical-align:-5% !important}.wbm-virtualmin-circle:before{content:'\f08d'}.wbm-virtualmin:before{content:'\f08c'}.wbm-cloudmin:before{content:'\f08b'}.wbm-webmin:before{content:'\f08a'}.wbm-sm{display:inline-block;margin-top:5px;margin-bottom:2px;margin-left:-4px;padding:0}.wbm-sm+div{margin-top:-5px}#collapse{padding-right:15px}#content.__page{position:relative;overflow:auto;height:100%;-webkit-overflow-scrolling:touch}#content.__page.progressing{overflow:hidden}.container-fluid>.panel>.panel-body{overflow:visible}iframe{overflow-y:auto;width:100%;height:99.8%;border:0;-webkit-overflow-scrolling:touch}b,strong{font-weight:500}.capitalize{text-transform:capitalize}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:normal}.table-responsive{overflow-x:initial}html[data-script-name*='virtual-server/wizard.cgi'] .table-responsive>.table>tbody>tr>td{white-space:normal}.table[data-class='no-inner-formatting'] table{border:0 !important}#hiddenopener_docs,.ui_value label{margin-right:5px}#popup>form table tr td input[name='file']{width:99% !important}#popup>form table tr td input[name='pc']{width:170px !important}#popup>.ui_form>.table-responsive table tr td.col_label button,#popup>.ui_form>.table-responsive table tr td.col_value input{margin-top:3px;margin-left:6px}#popup{padding:10px 10px !important}#popup>.ui_form>.table-responsive table tr td.col_value input{width:95% !important;min-width:95% !important;margin-right:6px !important}#popup>form center input[name='size']{min-width:178px}#sidebar{position:fixed;top:0;overflow:hidden;height:100%;min-height:100%;color:#c7d2e6 !important;background:#386386;-webkit-box-shadow:0 4px 4px rgba(0,0,0,.15);box-shadow:0 4px 4px rgba(0,0,0,.15)}#sidebar form{margin:10px}#sidebar form>select{margin-top:0}#sidebar li:not(.menu-title):not(.menu-container):not(.user-html-string){position:relative;list-style:none;color:#aaa;border-top:0;border-right:0;border-left:0;text-shadow:1px 1px 0 rgba(0,50,90,.2)}#sidebar li:not(.menu-container):not(.sub-wrapper)+ul{margin-top:0}#sidebar li:not(.menu-container):not(.sub-wrapper) .caret{text-align:right}#sidebar li:not(.menu-container):not(.sub-wrapper) a{display:block;padding:7px 10px 7px 15px;color:rgba(199,210,230,.91)}#sidebar li:not(.menu-container):not(.sub-wrapper):hover a{color:#f0f0f0}#sidebar li:not(.menu-container):not(.sub-wrapper).active a{color:#fdfdfd}#sidebar ul.user-html{list-style-type:none}#sidebar ul.user-html,#sidebar ul.user-html>li.user-html-string{margin-top:6px;text-align:center;border:0 !important;-webkit-box-shadow:none !important;box-shadow:none !important}#sidebar ul.user-html>li.user-html-string{padding:2px 6px;color:#c7d2e6}#sidebar ul.user-html>li.user-html-string kbd{padding:4px 4px 2px 4px}#sidebar ul.user-links{margin:4px 0 0 0;padding:0;list-style-type:none;text-align:center}#sidebar ul.user-links li:not(.menu-container):not(.sub-wrapper):hover{border:1px solid rgba(255,255,255,.09)}#sidebar ul.user-links li:not(.menu-container):not(.sub-wrapper){line-height:12px;display:inline-block;height:24px;max-height:24px;margin-right:2px;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;text-align:center;vertical-align:top;border:1px solid rgba(255,255,255,.06);-webkit-box-shadow:0 1px 2px rgba(0,0,0,.04);box-shadow:0 1px 2px rgba(0,0,0,.04)}.__logout-link a:hover>.text-danger{color:#e8433f}#sidebar ul.user-links>li:not(.sub-wrapper).__logout-link.__logout-link-bg{border:1px solid rgba(255,255,255,.12)}#sidebar ul.user-links>li:not(.sub-wrapper).__logout-link.__logout-link-bg:hover{border:1px solid rgba(255,255,255,.10)}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) span:hover,#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) a:hover{color:#fff}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container)>span,#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container)>a{font-size:11px;display:block;height:21px;max-height:21px;padding-top:4px;padding-right:5px;padding-left:5px;color:#c7d2e6}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container)>span i,#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container)>a i{vertical-align:text-bottom}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) span .fa,#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) a .fa{font-size:13px}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container)>a.sidebar_sysinfo_link{padding:4px 4px 0 4px}#sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) a .fa.fa-dashboard{font-size:14px}#sidebar li:not(.sub-wrapper):not(.menu-container) a:hover,.navigation li:not(.sub-wrapper):not(.menu-container) a:hover,.navigation li:not(.sub-wrapper):not(.menu-container) a:focus,.csf-container a{text-decoration:none}#sidebar li:not(.sub-wrapper):not(.menu-container).sub_active{border-left:4px solid #e8433f}#sidebar li:not(.sub-wrapper):not(.menu-container).sub_active a{padding-left:11px;color:#fff;text-shadow:none}#sidebar li:not(.sub-wrapper):not(.user-link):not(.has-sub):not(.navigation_module_trigger):not(.sub_active):not(.menu-title):not(.menu-container):hover a:not(.navigation_module_trigger){padding-left:15px;-webkit-transition:background-color .2s,padding-left .3s,box-shadow .4s;-webkit-transition:background-color .2s,padding-left .3s,-webkit-box-shadow .4s;transition:background-color .2s,padding-left .3s,-webkit-box-shadow .4s;transition:background-color .2s,padding-left .3s,box-shadow .4s;transition:background-color .2s,padding-left .3s,box-shadow .4s,-webkit-box-shadow .4s;color:#fff}#sidebar li:not(.sub-wrapper):not(.user-link):not(.has-sub):not(.navigation_module_trigger):not(.sub_active):not(.menu-title):not(.menu-container).active a,#sidebar li:not(.sub-wrapper):not(.user-link):not(.has-sub):not(.navigation_module_trigger):not(.sub_active):not(.menu-title):not(.menu-container):active a{padding-left:15px}#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active{background-color:#4f7291}#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active>a:after,#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub>a:after{font-family:'Authentic';font-size:11px;position:absolute;top:10px;right:20px;display:inline-block;content:'\f084';text-shadow:none !important}#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active>a:after{right:18px;content:'\f085'}#sidebar ul.sub>li>a:before{font-family:'Authentic';font-size:6px;position:absolute;top:50%;left:0;margin-top:-5px;margin-left:-6px;content:'\f086';color:#809bb3}#sidebar ul.sub li:before{position:absolute;top:0;bottom:0;left:20px;width:1px;content:'';background:#4f7291}#sidebar ul.sub>li:not(.menu-container).sub_active:before{position:absolute;top:0;bottom:0;left:16px;width:1px;content:'';background:#4f7291}#sidebar ul.sub>li.sub_active>a:before{font-family:'Authentic';font-size:6px;position:absolute;top:50%;left:0;margin-top:-5px;margin-left:-10px;content:'\f087';color:#fefefe}#sidebar ul.sub>li:not(.menu-container) a{font-size:13px;line-height:12px;position:relative;top:50%;padding-top:4px;padding-bottom:4px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}#sidebar ul.sub>li:not(.menu-container){height:26px;min-height:26px;max-height:26px;padding-left:24px}#sidebar ul{position:relative;display:block;margin:0;padding:0}#sidebar ul.navigation{font-size:14px;font-weight:normal}#sidebar li.menu-title{font-size:.85em;font-weight:normal;position:relative;margin-top:12px;padding:10px 15px;cursor:default;color:#c7d2e6;background:0}#sidebar ul li:not(.user-link) .fa{font-size:13px;padding-right:10px}#sidebar ul li:not(.user-link) .fa.scaled1{font-size:14px;margin-left:-1px}#sidebar ul li:not(.user-link) .fa.scaled1_5{font-size:15px;margin-right:-2px;margin-left:-1px}#sidebar ul li:not(.user-link) .fa.scaled2{font-size:16px;margin-right:-3px;margin-left:-1px}@-moz-document url-prefix(){#sidebar li:not(.menu-container):not(.sub-wrapper) a{padding:5.5px 10px 6.5px 15px}#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active>a:after,#sidebar li:not(.sub-wrapper):not(.menu-container).has-sub>a:after{top:9px}}#system-status a[data-refresh='system-status']{margin:-4px -11px;padding:2px 8px 4px 9px;color:white;line-height:initial}#system-status a[data-refresh='system-status'] i{font-size:12px}@-moz-document url-prefix(){#system-status a[data-refresh='system-status']{line-height:initial;margin:-4px -11px;padding:2px 8px 4px 8px}}#system-status .panel-title{font-size:20px;text-align:left;line-height:17px}#system-status .panel-title>.extra_documentation_links:first-child{margin-right:-11px !important}#system-status .panel-title>.extra_documentation_links+.extra_documentation_links,#system-status a+button+.extra_documentation_links+.extra_documentation_links{margin-right:-17px !important}#system-status .extra_documentation_links+.extra_documentation_links{margin-right:9px !important}.smaller>em,.small{font-size:12px !important}.smaller>em,.smaller{font-size:11px !important}.smaller>em,.smallest{font-size:9px !important}br.lh0{line-height:0}.graph-container{float:left;width:98.5%;height:100%;margin-left:4px}.graph-container-fw{width:100%;margin:0;padding-right:10px}.graph-container>.graph{position:relative;float:left;width:100%;margin-top:4px;padding:0;background-color:#ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);box-shadow:inset 0 1px 1px rgba(0,0,0,.2)}.graph-container>.graph>.bar{font-size:9px;line-height:12px;position:relative;display:block;max-width:100%;height:11px;padding-left:2px;-webkit-transition:width 1.5s ease-in-out;-moz-transition:width 1.5s ease-in-out;-o-transition:width 1.5s ease-in-out;transition:width 1.5s ease-in-out;color:#fff;border-right:2px solid red;background-color:#d91212;background-repeat:repeat-x;background-position:right center;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);box-shadow:inset 0 1px 1px rgba(0,0,0,.2)}.graph-container>.graph>.bar[style^='width:1%'],.graph-container>.graph>.bar[style^='width:2%'],.graph-container>.graph>.bar[style^='width:3%'],.graph-container>.graph>.bar[style^='width:4%'],.graph-container>.graph>.bar[style^='width:5%'],.graph-container>.graph>.bar[style^='width:6%'],.graph-container>.graph>.bar[style^='width:7%'],.graph-container>.graph>.bar[style^='width:8%'],.graph-container>.graph>.bar[style^='width:9%'],.graph-container>.graph>.bar[style^='width:10%'],.graph-container>.graph>.bar[style^='width:11%'],.graph-container>.graph>.bar[style^='width:12%'],.graph-container>.graph>.bar[style^='width:13%'],.graph-container>.graph>.bar[style^='width:14%'],.graph-container>.graph>.bar[style^='width:15%'],.graph-container>.graph>.bar[style^='width:16%'],.graph-container>.graph>.bar[style^='width:17%'],.graph-container>.graph>.bar[style^='width:18%'],.graph-container>.graph>.bar[style^='width:19%'],.graph-container>.graph>.bar[style^='width:20%'],.graph-container>.graph>.bar[style^='width:21%'],.graph-container>.graph>.bar[style^='width:22%'],.graph-container>.graph>.bar[style^='width:23%'],.graph-container>.graph>.bar[style^='width:24%'],.graph-container>.graph>.bar[style^='width:25%'],.graph-container>.graph>.bar[style^='width:26%'],.graph-container>.graph>.bar[style^='width:27%'],.graph-container>.graph>.bar[style^='width:28%'],.graph-container>.graph>.bar[style^='width:29%'],.graph-container>.graph>.bar[style^='width:30%'],.graph-container>.graph>.bar[style^='width:31%'],.graph-container>.graph>.bar[style^='width:32%'],.graph-container>.graph>.bar[style^='width:33%'],.graph-container>.graph>.bar[style^='width:34%'],.graph-container>.graph>.bar[style^='width:35%'],.graph-container>.graph>.bar[style^='width:36%'],.graph-container>.graph>.bar[style^='width:37%'],.graph-container>.graph>.bar[style^='width:38%'],.graph-container>.graph>.bar[style^='width:39%'],.graph-container>.graph>.bar[style^='width:40%'],.graph-container>.graph>.bar[style^='width:41%'],.graph-container>.graph>.bar[style^='width:42%'],.graph-container>.graph>.bar[style^='width:43%'],.graph-container>.graph>.bar[style^='width:44%'],.graph-container>.graph>.bar[style^='width:45%'],.graph-container>.graph>.bar[style^='width:46%'],.graph-container>.graph>.bar[style^='width:47%'],.graph-container>.graph>.bar[style^='width:48%'],.graph-container>.graph>.bar[style^='width:49%']{border-right:2px solid #4ccb4c;background-color:#4cae4c}.graph-container>.graph>.bar[style^='width:50%'],.graph-container>.graph>.bar[style^='width:51%'],.graph-container>.graph>.bar[style^='width:52%'],.graph-container>.graph>.bar[style^='width:53%'],.graph-container>.graph>.bar[style^='width:54%'],.graph-container>.graph>.bar[style^='width:55%'],.graph-container>.graph>.bar[style^='width:56%'],.graph-container>.graph>.bar[style^='width:57%'],.graph-container>.graph>.bar[style^='width:58%'],.graph-container>.graph>.bar[style^='width:59%'],.graph-container>.graph>.bar[style^='width:60%'],.graph-container>.graph>.bar[style^='width:61%'],.graph-container>.graph>.bar[style^='width:62%'],.graph-container>.graph>.bar[style^='width:63%'],.graph-container>.graph>.bar[style^='width:64%'],.graph-container>.graph>.bar[style^='width:65%'],.graph-container>.graph>.bar[style^='width:66%'],.graph-container>.graph>.bar[style^='width:67%'],.graph-container>.graph>.bar[style^='width:68%'],.graph-container>.graph>.bar[style^='width:69%'],.graph-container>.graph>.bar[style^='width:70%'],.graph-container>.graph>.bar[style^='width:71%'],.graph-container>.graph>.bar[style^='width:72%'],.graph-container>.graph>.bar[style^='width:73%'],.graph-container>.graph>.bar[style^='width:74%'],.graph-container>.graph>.bar[style^='width:75%'],.graph-container>.graph>.bar[style^='width:76%'],.graph-container>.graph>.bar[style^='width:77%'],.graph-container>.graph>.bar[style^='width:78%'],.graph-container>.graph>.bar[style^='width:79%'],.graph-container>.graph>.bar[style^='width:80%'],.graph-container>.graph>.bar[style^='width:81%'],.graph-container>.graph>.bar[style^='width:82%'],.graph-container>.graph>.bar[style^='width:83%'],.graph-container>.graph>.bar[style^='width:84%'],.graph-container>.graph>.bar[style^='width:85%']{border-right:2px solid #f0ad4e;background-color:#d58512}.graph-container>.graph>.bar[style^='width:0%'],.graph-container>.graph>.bar[style^='width: 0%'],.graph-container>.graph>.bar[style^='width:0'],.graph-container>.graph>.bar[style^='width: 0'],.graph-container>.graph>.bar[style^='width:-'],.graph-container>.graph>.bar[style^='width: -']{border-right:2px solid #ddd;background-color:#f0f0f0}.graph-container>.graph>.bar[style^='width:-'],.graph-container>.graph>.bar[style^='width: -']{color:#aaa}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.graph-container>.graph>.bar{border-right:2px solid #ddd;background-color:#f0f0f0}}.graph-container>.graph>.bar span{position:absolute;left:1em}.graph-container>.graph>.description{font-size:9px;position:absolute;z-index:100;bottom:-1px !important;width:100%;text-align:center}.form-group .form-control.sidebar-search{font-size:13px;font-weight:normal;z-index:1;padding-right:24px;color:rgba(255,255,255,.80);border:none !important;border-bottom:1px solid rgba(255,255,255,.09) !important;border-radius:0 !important;background:transparent;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}.search-form-container{display:block;margin-top:12px !important}#webmin_search_form{margin-bottom:18px !important}.right-side-tabs[data-background-style='grey'] .nav-tabs>li:hover{background-color:rgba(208,208,208,.12)}.right-side-tabs[data-background-style='grey'] .nav-tabs>li a:hover{border:1px solid transparent;background-color:transparent}.right-side-tabs[data-background-style='grey'] .nav-tabs>li:not(.active) a{font-weight:300;color:rgba(210,210,210,.50)}.right-side-tabs .nav-tabs>li:not(.active)>a{margin-bottom:-1px;padding-top:11px}.right-side-tabs .nav-tabs>li.active>a{margin-top:1px}.right-side-tabs .nav-tabs>li:first-child.active>a,.right-side-tabs .nav-tabs>li:first-child.active>a:hover,.right-side-tabs .nav-tabs>li:first-child.active>a:focus{border-left:0}.right-side-tabs .list-group-item.no-notifications{padding:13px 15px}.right-side-tabs .list-group-item .authentic_update{line-height:12px;height:15px;padding:1.5px 3px}.right-side-tabs .list-group-item .authentic_update{font-size:9px}.right-side-tabs .list-group-item.opacity-0_3 .authentic_update{display:none}@-moz-document url-prefix(){.right-side-tabs .list-group-item.no-notifications{padding:12px 15px 13px 15px}}#right-side-tabs .right-side-tabs-dismiss .fa-stack,#right-side-tabs .right-side-tabs-dismiss i{display:none}#right-side-tabs #right-side-tabs-favorites.active+.right-side-tabs-dismiss .fa-stack{display:inline}#right-side-tabs #right-side-tabs-favorites.active+.right-side-tabs-dismiss i.fa-cog,#right-side-tabs #right-side-tabs-favorites.active+.right-side-tabs-dismiss i.fa-star-o{display:inline-block}#right-side-tabs #right-side-tabs-notifications.active+div+.right-side-tabs-dismiss i.fa-trash,#right-side-tabs #right-side-tabs-notifications.active+div+.right-side-tabs-dismiss i.fa-clear-all,#right-side-tabs #right-side-tabs-notifications.active+div+.right-side-tabs-dismiss i.fa-reload{display:inline-block}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss i.fa-dashboard,#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings,#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss i.fa-reload{display:inline-block}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings .caret{position:absolute;top:10px;right:-10px;display:inline}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings.dropdown{margin-right:10px}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings.dropdown .dropdown-menu{font-size:13px;background-color:#fffd9}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings.dropdown .dropdown-menu .divider{background-color:#0001f}#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings.dropdown .dropdown-menu>li>a:hover,#right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings.dropdown .dropdown-menu>li>a:focus{background-color:#83838330}#right-side-tabs .right-side-tabs-notification.opacity-0_3 .badge{filter:grayscale(100%);-webkit-filter:grayscale(100%)}.right-side-tabs-dismiss i{font-size:1.7em;margin-top:3px;color:#bbb}.right-side-tabs-dismiss .right-side-tabs-favorites-ctl:hover i{color:#ddd}[data-background-style='white'] .right-side-tabs-dismiss i{color:#555}[data-background-style='white'] .right-side-tabs-dismiss i:hover,[data-background-style='white'] .right-side-tabs-dismiss .right-side-tabs-favorites-ctl:hover i{color:#000}.right-side-tabs-dismiss i.fa-cog{font-size:.45em;margin-top:10px;margin-left:3px}.right-side-tabs-dismiss i.fa-dashboard,.right-side-tabs-dismiss i.fa-star-o{font-size:1.9em;margin-top:1px;margin-left:5px;vertical-align:middle}.right-side-tabs-dismiss i.fa-dashboard{margin-top:3px}.right-side-tabs-dismiss i.fa-reload{font-size:1.5em;line-height:24%;margin-left:10px;vertical-align:middle}@-moz-document url-prefix(){.right-side-tabs-dismiss i.fa-reload{font-size:1.5em;line-height:99%;width:20px;height:20px;margin-left:10px;vertical-align:middle}.right-side-tabs .list-group-item.no-notifications{margin-top:1px !important}}.right-side-tabs-dismiss i.fa-clear-all{font-size:2.2em;margin-top:1px}.right-side-tabs-dismiss i:hover{color:#666}.right-side-tabs-dismiss{position:absolute;right:0;bottom:0;width:100%;height:40px;padding-top:7px;padding-right:9px;color:#ddd;border-top:1px solid #ebebeb;background-color:#fff}.right-side-tabs ::-webkit-scrollbar{width:3px}.right-side-tabs .tab-pane .info-container .info-list-data strong{display:inline-block;margin-top:10px}.right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data strong{color:#c2c2c2}#right-side-tabs .right_pane_favorites_link i:before{font-size:14px}#right-side-tabs .right_pane_favorites_link .right_pane_favorites_text{vertical-align:15%}#right-side-tabs .right_pane_favorites_num{font-size:8px;position:absolute;margin-top:22px;margin-left:5px;color:#777}#right-side-tabs[data-background-style='white'] .right_pane_favorites_num{color:#888}#right-side-tabs .right_pane_favorites_link{font-size:11px;display:block;overflow:hidden;padding:6px 10px 6px 20px;white-space:nowrap;text-overflow:ellipsis;color:#bbb;border-bottom:1px solid rgba(255,255,255,.03)}#right-side-tabs[data-background-style='white'] .right_pane_favorites_link{color:#444;border-bottom:1px solid rgba(5,5,5,.06)}#right-side-tabs .right_pane_favorites_link:last-child{border-bottom:1px solid rgba(255,255,255,.05)}#right-side-tabs[data-background-style='white'] .right_pane_favorites_link:last-child{border-bottom:1px solid rgba(5,5,5,.08)}#right-side-tabs .right-side-tab-notification-asterix{font-size:7px;font-weight:bold;line-height:11px;position:absolute;z-index:99999999;top:5px;right:4px;overflow:hidden;width:13px;height:12px;text-align:center;color:#eee;border-radius:10px;background-color:#d00}#right-side-tabs .info-container .graph-container-fw{cursor:pointer}html[data-background-style='nightRider'] body:not(.csf):not(.backup-config) #right-side-tabs .table-striped:not(.opener_table_style):not(.table-subtable)>tbody>tr:hover td,html:not([data-background-style='nightRider']) body:not(.csf):not(.backup-config) #right-side-tabs .table-striped:not(.opener_table_style):not(.table-subtable)>tbody>tr:hover td{background-color:rgba(213,133,18,.1) !important}.right-side-tabs .tab-pane .info-container .extended-list-data tr.thead ~ tr:last-child>td{padding:1px !important}.right-side-tabs .tab-pane .info-container .extended-list-data .collapsing{-webkit-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.001s;transition-duration:.001s}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body a{font-family:monospace;font-size:10px;color:#ccc !important}.right-side-tabs .tab-pane .info-container .extended-list-data #updates-virtual-server-collapse .ui_form_end_buttons{display:none}.right-side-tabs .tab-pane .info-container .extended-list-data #updates-virtual-server-collapse .panel-body .table-responsive a{font-family:monospace !important;font-size:11px;color:#ccc}.right-side-tabs .tab-pane .info-container .extended-list-data #updates-virtual-server-collapse .panel-body .table-responsive{color:#ccc}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body table{width:100%}.right-side-tabs .tab-pane .info-container .extended-list-data #status-virtual-server-collapse .panel-body .table-responsive i:not(.fa-check):not(.fa-minus-circle),.right-side-tabs .tab-pane .info-container .extended-list-data #updates-virtual-server-collapse .panel-body table td:nth-child(2),.right-side-tabs .tab-pane .info-container .extended-list-data #updates-virtual-server-collapse .panel-body table th:nth-child(2){display:none}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row a,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row{color:#bbb}.right-side-tabs table tr td,.right-side-tabs table tr th{font-size:11px}.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body{border-top-color:#888;border-bottom-color:#888}.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table td,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table tr,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table td,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead{border-color:#888 !important}.right-side-tabs[data-background-style='white'] .right-side-tabs-dismiss{border-top-color:#a0a0a0}.right-side-tabs[data-background-style='white'] #right-side-tabs-favorites .no-favorites_data,.right-side-tabs[data-background-style='white'] #right-side-tabs-sysinfo .no-sysinfo_data{border-bottom:1px solid #ddd}.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-body a,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead b,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-heading,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-heading h4 a:focus,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-heading h4 a:visited,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-heading h4 a:active,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-heading h4 a:hover,.right-side-tabs[data-background-style='white'] #right-side-tabs-sysinfo .no-sysinfo_data small,.right-side-tabs[data-background-style='white'] #right-side-tabs-favorites .no-favorites_data small,.right-side-tabs[data-background-style='white'] .tab-pane .list-group-item-text.text-lighter,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-body .table-responsive,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row a,.right-side-tabs[data-background-style='white'] .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row{color:#444 !important}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead b{font-size:12px !important;font-weight:normal;color:#d2d2d2}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead td{padding-right:2px !important;padding-left:2px !important;text-align:left !important}.right-side-tabs #bw-virtual-server-collapse .panel-body .table tbody tr td:last-child,.right-side-tabs #bw-virtual-server-collapse .panel-body .table tbody tr td:last-child,.right-side-tabs #quota-virtual-server-collapse .panel-body .table tbody tr td:last-child,.right-side-tabs #quota-virtual-server-collapse .panel-body .table tbody tr td:last-child{font-size:11px;width:auto !important}.right-side-tabs #bw-virtual-server-collapse .panel-body .table tbody tr td[style*='60%'] .graph-container>.graph,.right-side-tabs #quota-virtual-server-collapse .panel-body .table tbody tr td[style*='60%'] .graph-container>.graph{margin-top:0}.right-side-tabs #bw-virtual-server-collapse .panel-body .table tbody tr td[style*='60%'],.right-side-tabs #quota-virtual-server-collapse .panel-body .table tbody tr td[style*='60%']{width:20% !important;padding-right:8px !important}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table td,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table tr,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table td,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead{border:1px solid #666 !important;background-color:transparent !important}.right-side-tabs .tab-pane .info-container .extended-list-data #ftypes-virtual-server-collapse .panel-body .table-responsive .table tbody tr td:last-child,.right-side-tabs .tab-pane .info-container .extended-list-data #status-virtual-server-collapse .panel-body .table-responsive .table tbody tr td:last-child{text-align:center}.right-side-tabs .tab-pane .info-container .extended-list-data #status-virtual-server-collapse .panel-body .table-responsive .table tbody tr td:first-child{font-size:11px}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table{margin-top:7px !important;margin-bottom:0 !important}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body{margin-bottom:-2px;padding:0;padding-bottom:7px;border-top-color:#666;border-bottom:1px solid #666;-webkit-box-shadow:none;box-shadow:none}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-default{border:0;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading{padding:2px 0;color:#c2c2c2;background-color:transparent}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4{font-size:12px;font-weight:500}.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:focus,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:visited,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:active,.right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:hover{color:#d2d2d2}.right-side-tabs .tab-pane .info-container .warning-list-data .alert b tt{font-size:11px}.right-side-tabs .tab-pane .info-container .warning-list-data .alert{padding:10px}.right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data]+strong{color:#c2c2c2}.right-side-tabs .tab-pane .info-container .info-list-data span[data-data]{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data]{color:#aaa}.right-side-tabs .tab-pane .info-container,.right-side-tabs .tab-pane .info-container .info-list-data span[data-data]+strong,.right-side-tabs .tab-pane .info-container .info-list-data span[data-data]{font-size:12px}.right-side-tabs .tab-pane .info-container .info-list-data span[data-data='package_message'] .badge{font-size:9px;line-height:10px;padding:2px 5px}.right-side-tabs .tab-pane .info-container .info-list-data span[data-data] a{font-size:12px;color:#555}.right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data] a{color:#ababab}.right-side-tabs .tab-pane .info-container .badge-cpustatus{min-width:59px}#system-status .badge-custom,.right-side-tabs .tab-pane .info-container .badge-custom{font-size:9px;line-height:10px;margin-right:6px !important;margin-bottom:3px !important;padding:1.5px 5.8px;color:#222;border-radius:1px;background-color:#ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.2);box-shadow:inset 0 1px 1px rgba(0,0,0,.2)}#system-status .badge-custom{font-size:10px;line-height:12px;margin-right:2px !important;padding:2.3px 4px 1.2px 4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);box-shadow:inset 0 1px 1px rgba(0,0,0,.15)}.right-side-tabs .tab-pane .info-container .description{overflow:hidden;padding-right:2px;padding-left:2px;white-space:nowrap;text-overflow:ellipsis;color:#333}.right-side-tabs .tab-pane .info-container .graph-container-fw{padding-right:0}.right-side-tabs .tab-pane .info-container{padding:10px 15px}.right-side-tabs .tab-pane{overflow-y:auto;height:400px}.right-side-tabs{position:fixed;z-index:9999;top:0;right:-302px;width:300px;height:100%;height:100.2%;margin-top:-1px;background:#fff;-webkit-box-shadow:0 4px 4px rgba(0,0,0,.15);box-shadow:0 4px 4px rgba(0,0,0,.15)}html[data-slider-fixed='1']{margin-right:300px}.right-side-tabs.right-side-tabs-fixed{right:0}.right-side-tabs .nav .tab-content .tab-pane .list-groups{margin-top:2px !important}.right-side-tabs .list-group-item-heading{font-weight:bold;color:#888}.right-side-tabs .list-group-item-heading small{font-weight:normal;color:#bbb}.right-side-tabs-toggler.opened .badge{background-color:#ddd}.right-side-tabs .list-group-item.opacity-0_3 .label,.right-side-tabs .list-group-item.opacity-0_3 .badge{background-color:#999}.right-side-tabs .list-group-item .badge{font-size:10px;padding:2px 5px}.right-side-tabs .list-group-item,.right-side-tabs .list-group-item:last-child,.right-side-tabs .list-group-item:first-child{margin-top:0;border-top:0;border-right:0;border-left:0;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.right-side-tabs:not([data-background-style='white']) .list-group-item:last-child{border-bottom:1px solid #ebebeb}.right-side-tabs .list-group-item:not(:first-child){border-top:1px solid #ebebeb}.right-side-tabs-toggler .badge{font-size:10px;font-size:9px;position:absolute;z-index:10000;top:3px;right:2px;padding:2px 4px;color:#fff;background-color:#d51b16}.right-side-tabs-toggler,.mobile-menu-toggler{position:fixed;z-index:9999;top:56px;left:0;opacity:.8;border-right:2px solid #e8433f}_:-ms-fullscreen,:root .right-side-tabs-toggler{max-width:0}_:-ms-fullscreen,:root .modal-backdrop.in{display:none}_:-ms-fullscreen,:root #headln2c .fa{position:relative !important;margin-right:10px !important}.right-side-tabs-toggler{right:0;left:initial;border-right:0;border-left:0}.alert,.right-side-tabs-toggler>.btn,.mobile-menu-toggler>.btn{border-radius:0;moz-border-radius:0}.right-side-tabs-toggler>.btn:active,.right-side-tabs-toggler>.btn{color:#ddd;border-right:0;background-color:#fff}.right-side-tabs-toggler>.btn:hover{color:silver;border-color:rgba(208,208,208,.87);background-color:rgba(228,228,228,.83)}.right-side-tabs-toggler.opened>.btn:active,.right-side-tabs-toggler.opened>.btn:focus,.right-side-tabs-toggler>.btn:focus,.right-side-tabs-toggler.opened>.btn{border-color:rgba(208,208,208,.60);border-right:0;background-color:rgba(255,255,255,1) !important}.right-side-tabs-toggler.opened{opacity:1;-webkit-box-shadow:-2px -1px 4px rgba(0,0,0,.03);box-shadow:-2px -1px 4px rgba(0,0,0,.03)}.right-side-tabs .right-side-tabs-dismiss i,.right-side-tabs .list-group>a.list-group-item div.media-body small span.authentic_update,.right-side-tabs .list-group>a.list-group-item div.media-body .fa-refresh,.right-side-tabs .list-group>a.list-group-item div.media-body>i{cursor:default}.right-side-tabs .list-group>a.list-group-item div.media-body>i:hover{color:#000}.right-side-tabs[data-background-style='grey'],.right-side-tabs[data-background-style='grey'] .list-group-item,.right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,.right-side-tabs[data-background-style='grey'] .nav-tabs,.right-side-tabs[data-background-style='grey'] .nav-tabs .active a,.right-side-tabs-toggler[data-background-style='grey']>button,.right-side-tabs-toggler[data-background-style='grey'].opened>button,.right-side-tabs-toggler[data-background-style='grey']{background:#4d5250 !important}.right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss{color:#888}.right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss i:hover{color:#eee}.right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,.right-side-tabs[data-background-style='grey'] .list-group-item:last-child{border:1px solid rgba(255,255,255,.06);border-right:0;border-left:0}.right-side-tabs[data-background-style='grey'] .list-group-item{border-top:1px solid rgba(255,255,255,.06);border-bottom:transparent}.right-side-tabs[data-background-style='grey'] .list-group-item:first-child{border-top:transparent}.right-side-tabs[data-background-style='grey'] .nav-tabs{border-bottom:1px solid rgba(255,255,255,.085)}.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:focus,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:hover,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a{border:1px solid rgba(255,255,255,.085)}.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:focus,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:hover,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:hover,.right-side-tabs[data-background-style='grey'] .nav-tabs>li.active>a:focus{border-bottom:transparent}.right-side-tabs[data-background-style='grey'] .tab-pane .info-container,.right-side-tabs[data-background-style='grey'] div.media-body>small{color:#d2d2d2}.right-side-tabs[data-background-style='grey'] .list-group>a.list-group-item div.media-body>i,.right-side-tabs[data-background-style='grey'] a.list-group-item .list-group-item-heading,.right-side-tabs[data-background-style='grey'] button.list-group-item .list-group-item-heading,.right-side-tabs[data-background-style='grey'] .nav-tabs>li a{color:#d2d2d2}.right-side-tabs[data-background-style='grey'] #right-side-tabs-notifications .right-side-tabs-notification div.media-body>small{word-break:break-all;color:#bbb}.right-side-tabs[data-background-style='grey'] .list-group>a.list-group-item div.media-body>i:hover{color:#fff}#right-side-tabs-favorites .no-favorites_data small,#right-side-tabs-sysinfo .no-sysinfo_data small{font-size:11px;color:#aaa}#right-side-tabs-favorites .no-favorites_data,#right-side-tabs-sysinfo .no-sysinfo_data{margin-top:-1px;margin-right:-15px;margin-left:-15px;padding-bottom:13px;text-align:center;color:#555;color:#9fa0a0;border-bottom:1px solid #575c5a}#right-side-tabs-favorites .no-favorites_data{margin-top:9px}.right-side-tabs[data-background-style='grey'] .right-side-tabs-no-notifications{line-height:18px}.right-side-tabs[data-background-style='grey'] .list-group-item.no-notifications small{color:#aaa}.right-side-tabs[data-background-style='grey'] .list-group-item-heading small{margin-left:3px;color:#777}.right-side-tabs[data-background-style='grey'] ::-webkit-scrollbar{width:3px}.right-side-tabs[data-background-style='grey'] ::-webkit-scrollbar-track-piece{background-color:#444}.right-side-tabs[data-background-style='grey'] ::-webkit-scrollbar-thumb{border:2px solid #111;outline:2px solid #111}.right-side-tabs-toggler[data-background-style='grey']{border-top:1px solid #404040;border-bottom:1px solid #404040;border-left:1px solid #373737}.right-side-tabs-toggler[data-background-style='grey'].opened>button{border:0}.right-side-tabs-toggler[data-background-style='grey']>.btn:active,.right-side-tabs-toggler[data-background-style='grey']>.btn{color:#ededed;border:0;background-color:#4d5250}.right-side-tabs-toggler[data-background-style='grey']>.btn:hover{color:#fff;border-color:none;background-color:#4d5250}.right-side-tabs-toggler[data-background-style='grey'].opened>.btn:active,.right-side-tabs-toggler[data-background-style='grey'].opened>.btn:focus,.right-side-tabs-toggler[data-background-style='grey']>.btn:focus,.right-side-tabs-toggler[data-background-style='grey'].opened>.btn{border-color:0;border-right:0;background-color:#4d5250 !important}.right-side-tabs-toggler[data-background-style='grey'].opened{opacity:1;-webkit-box-shadow:none;box-shadow:none}.mobile-menu-toggler.selected{opacity:1}.mobile-menu-toggler.selected>.btn-primary{border:1px solid #386386;background-color:#386386}aside select{visibility:hidden}.select2{margin-top:4px;margin-bottom:4px}.select2-container--default .select2-results__option--highlighted[aria-selected]{color:#333 !important;background-color:#ddd}.select2-container--default .select2-results__option--highlighted[aria-selected]:active,.select2-container--default .select2-results__option:hover,.select2-container--default .select2-results__option:focus,.select2-container--default .select2-results__option[aria-disabled='true'],.select2-container--default .select2-results__option[aria-selected='true']{background-color:#bfcbd9}.select2-container--default .select2-selection--single .select2-selection__rendered{line-height:21px}.select2-container .select2-selection--single{height:24px}.select2-container--default .select2-selection--single .select2-selection__arrow{top:-1px}.select2-container--default,.select2,.select2-container{color:#c7d2e6;background-color:transparent}.select2-selection--single,.select2-selection{border:1px solid rgba(255,255,255,.12) !important;border-radius:0 !important;background:transparent !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}.select2-selection--single span,.select2-selection span{color:#c7d2e6 !important}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#ddd transparent transparent transparent}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #ddd transparent}.select2-search{border-bottom:1px solid rgba(255,255,255,.09) !important;border-radius:0 !important}.select2-search input{font-size:13px;height:20px;border:1px solid rgba(255,255,255,.09) !important;background:transparent !important}.select2-results{color:#333 !important}.select2-search input{color:#333 !important;border:1px solid rgba(0,0,0,.20) !important}.select2-results,.select2-dropdown .select2-search,.select2-search{background-color:rgba(255,255,255,.46) !important}.select2-results ul li{padding-top:2px;padding-bottom:2px;color:#333 !important}.select2-results ul li:active,.select2-results ul li:focus,.select2-results ul li:hover{color:#333 !important;background:#bfcbd9 !important}.file_chooser_button_preview,aside form{cursor:default}.select2-dropdown,.autocomplete-suggestions{border:none !important;border:2px solid transparent !important;border-radius:0 !important;background-color:rgba(255,255,255,.86) !important;-webkit-box-shadow:1px 4px 3px rgba(50,50,50,.64);box-shadow:1px 4px 3px rgba(50,50,50,.64)}.select2-dropdown{top:-1px;border:1px solid rgba(255,255,255,.10) !important}.select2-container--default .select2-results>.select2-results__options{max-height:40vh}.autocomplete-suggestion{overflow:hidden;padding:2px 5px;white-space:nowrap}.autocomplete-no-suggestion{padding:2px 5px}.autocomplete-selected{background:#bfcbd9}.autocomplete-suggestions strong{font-weight:500;color:#000}.autocomplete-suggestions{overflow:hidden;width:auto !important;min-width:237px !important;max-width:80vw !important}.autocomplete-group{padding:2px 5px}.autocomplete-group strong{font-size:16px;font-weight:500;display:block;color:#000;border-bottom:1px solid #000}.form-group .form-control.sidebar-search:focus,.form-group .form-control.sidebar-search:active,.form-group .form-control.sidebar-search.active{border-radius:0 !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}.fa-fwh{width:1.28571429em !important;height:1.28571429em !important;text-align:center}aside .form-group i.fa.fa-search{position:relative;float:right;margin-top:0;margin-bottom:-30px;padding:8px;padding-left:40px;cursor:default;color:#57779b}aside .form-control::-webkit-input-placeholder{color:#57779b}aside .form-control:-moz-placeholder{color:#57779b}aside .form-control::-moz-placeholder{color:#57779b}aside .form-control:-ms-input-placeholder{color:#57779b}aside .form-control:focus::-webkit-input-placeholder{color:#668bb5}aside .form-control:focus:-moz-placeholder{color:#668bb5}aside .form-control:focus::-moz-placeholder{color:#668bb5}aside .form-control:focus:-ms-input-placeholder{color:#668bb5}.dropup:not(.open) .caret{content:'';border-top:4px dashed;border-top:4px solid \9;border-bottom:0}#system-status .table,.popover-content .progress,#sidebar .form-group{margin-bottom:0}#system-status .table-hover td{border-top:0}.modal{z-index:11000}.modal-backdrop.fade.in{z-index:10900;opacity:.30;filter:alpha(opacity=50)}.modal.fade2 .modal-dialog{-webkit-transform:scale(0) rotate(360deg);transform:scale(0) rotate(360deg);opacity:0}.modal.fade2.in .modal-dialog{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.modal.fade3 .modal-dialog{-webkit-transform:translateZ(600px) rotateX(20deg);transform:translateZ(600px) rotateX(20deg);opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.modal.fade3.in .modal-dialog{-webkit-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translateZ(0) rotateX(0);transform:translateZ(0) rotateX(0);opacity:1}.modal.fade4 .modal-dialog{-webkit-transform:translate(30%) translateZ(600px) rotate(10deg);transform:translate(30%) translateZ(600px) rotate(10deg);opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.modal.fade4.in .modal-dialog{-webkit-transition:all .3s ease-in;transition:all .3s ease-in;-webkit-transform:translate(0) translateZ(0) rotate(0);transform:translate(0) translateZ(0) rotate(0);opacity:1}.modal.fade5 .modal-dialog{-webkit-transition:all .3s;transition:all .3s;-webkit-transform:translateY(-200%);transform:translateY(-200%);opacity:0}.modal.fade5.in .modal-dialog{-webkit-transform:translateY(0);transform:translateY(0);opacity:1;border-radius:0 0 3px 3px}.modal.fade6 .modal-dialog{-webkit-transition:all .3s;transition:all .3s;-webkit-transform:rotateY(-70deg);transform:rotateY(-70deg);opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.modal.fade6.in .modal-dialog{-webkit-transform:rotateY(0);transform:rotateY(0);opacity:1}.modal.fade7 .modal-dialog{-webkit-transition:all .3s;transition:all .3s;-webkit-transform:rotateX(-70deg);transform:rotateX(-70deg);opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.modal.fade7.in .modal-dialog{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}.modal.fade8 .modal-dialog{-webkit-transition:all .3s;transition:all .3s;-webkit-transform:rotateX(-60deg);transform:rotateX(-60deg);-webkit-transform-origin:50% 0;transform-origin:50% 0;opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.modal.fade8.in .modal-dialog{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}.modal.fade9 .modal-dialog{-webkit-transition:all .3s cubic-bezier(.25,.5,.5,.9);transition:all .3s cubic-bezier(.25,.5,.5,.9);-webkit-transform:translateX(20%);transform:translateX(20%);opacity:0}.modal.fade9.in .modal-dialog{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.modal.fade10 .modal-dialog{-webkit-transition:all .3s;transition:all .3s;-webkit-transform:scale(.7);transform:scale(.7);opacity:0}.modal.fade10.in .modal-dialog{-webkit-transform:scale(1);transform:scale(1);opacity:1}.filter-invert{-webkit-filter:invert(100%);filter:invert(100%)}.filter-grayscale{filter:grayscale(100%);-webkit-filter:grayscale(100%)}.filter-contrast{filter:contrast(200%);-webkit-filter:contrast(200%)}.filter-blur{filter:blur(1px);-webkit-filter:blur(1px)}.filter-blur-hard{filter:blur(5px);-webkit-filter:blur(5px)}.bg-filter-blur-grayscale-opacity50{filter:opacity(50%) blur(1px) grayscale(100%) !important;-webkit-filter:opacity(50%) blur(1px) grayscale(100%) !important}.bg-filter-blur-grayscale-invert-opacity75{filter:blur(1px) grayscale(100%) invert(100%) opacity(75%);-webkit-filter:blur(1px) grayscale(100%) invert(100%) opacity(75%)}.bg-filter-grayscale-opacity50{filter:opacity(50%) grayscale(100%) !important;-webkit-filter:opacity(50%) grayscale(100%) !important}.bg-puff-out{-webkit-animation-name:puff-out;animation-name:puff-out;-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes puff-out{0{-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;opacity:1;-webkit-filter:blur(0);filter:blur(0)}100%{-webkit-transform:scale(2,2);transform:scale(2,2);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;opacity:0;-webkit-filter:blur(2px);filter:blur(2px)}}@keyframes puff-out{0{-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;opacity:1;-webkit-filter:blur(0);filter:blur(0)}100%{-webkit-transform:scale(2,2);transform:scale(2,2);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;opacity:0;-webkit-filter:blur(2px);filter:blur(2px)}}.select2-selection__rendered .menu-status-label{font-weight:500;position:absolute;right:22px;margin-top:3px;-webkit-transform:scale(.90);transform:scale(.90);opacity:.0;color:#333 !important;border-radius:1px}.select2-selection__rendered:hover .menu-status-label,.select2-selection__rendered .menu-status-label:hover{color:#fff !important}.modal-dialog{z-index:10000000}.piechart{position:relative;display:inline-block;width:110px;height:110px;margin-top:15px;margin-bottom:70px;margin-left:-30px;text-align:center}.piechart canvas{position:absolute;top:0;left:0}.piechart .percent{font-size:1.8em;z-index:2;display:inline-block;margin-top:42px;color:#777}.piechart .percent:after{font-size:.9em;margin-left:.1em;content:'%'}.piechart .label{font-size:9px;z-index:3;display:block;overflow:hidden;max-width:130px;margin-top:23px;margin-right:-18px;padding-left:20px;text-align:right;text-transform:uppercase;color:#999}.piechart .label i{vertical-align:middle}body.csf .dataTables_filter input[type='search'],body .dataTables_filter input[type='search'],.csf-container input[type='text'],.csf-container input[type='search'],.csf-container input[type='submit'],.csf-container button.input,.csf-container input[id^='CSF'],input[type='button'],input[type='reset'],input[type='submit'],input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.btn):not(.session_login){font-family:'Roboto' !important;height:34px;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;text-align:center;border:1px solid #e2e2e2;border-radius:0;text-shadow:none}body.csf .dataTables_filter input[type='search'],body .dataTables_filter input[type='search'],.csf-container input[type='text'],.csf-container input[type='search'],input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.btn):not(.session_login){font-size:13px;height:34px}body .dataTables_filter input[type='search']{max-height:24px}.dataTables_wrapper .paginate_button{vertical-align:middle}div.dataTables_wrapper div.dataTables_paginate,.dataTables_wrapper .dataTables_paginate{float:right;margin-right:1px;margin-bottom:-2px;padding-top:.25em;text-align:right}.pagination>li>a,.pagination>li>span{border-color:#eaeaea}@-moz-document url-prefix(){div.dataTables_wrapper div.dataTables_paginate,.dataTables_wrapper .dataTables_paginate{margin-right:0}}.dataTables_wrapper .dataTables_paginate .paginate_button{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;min-width:1.5em;margin-left:2px;padding:.5em 1em;cursor:pointer;text-align:center;text-decoration:none !important;color:#333 !important;border:1px solid transparent}input:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']){height:28px !important}._pen,.pointer-events-none{pointer-events:none}input[name]:not([type='image']):not(.sidebar-search):not([type='button']):not([type='checkbox']):not([type='radio']):not(.btn),.csf-container input[type='text'],.csf-container input[type='search']{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075) !important;box-shadow:inset 0 1px 1px rgba(0,0,0,.075) !important}.csf-container select[name='backup'],.csf-container select[name='profile1'],.csf-container select[name='profile2']{min-height:150px !important}.csf-container .csf_force_log_size{width:98% !important;height:100% !important}body.csf .dataTables_filter input[type='search']{font-size:12px;font-weight:normal;border-radius:0}body .dataTables_filter input[type='search']{font-size:12px;font-weight:normal;height:22px;border-radius:0;-webkit-box-shadow:none;box-shadow:none}body .dataTables_wrapper>.dataTables_filter input{border-bottom:0}body .dataTables_wrapper>.dataTables_filter{position:absolute;right:1px;display:none;margin-top:-24px}.dataTables_filter input{border-color:transparent !important}table.dataTable{border:1px solid #eaeaea !important}.dataTables_wrapper .dataTables_empty:hover,.dataTables_wrapper .dataTables_empty{background-color:#fff}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #eaeaea}table.dataTable thead .sorting{background:url(../../images/sort_both.png) no-repeat center right}table.dataTable thead .sorting_asc{background:url(../../images/sort_asc.png) no-repeat center right}table.dataTable thead .sorting_desc{background:url(../../images/sort_desc.png) no-repeat center right}table.dataTable thead .sorting_asc_disabled{background:url(../../images/sort_asc_disabled.png) no-repeat center right}table.dataTable thead .sorting_desc_disabled{background:url(../../images/sort_desc_disabled.png) no-repeat center right}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{display:none !important}table.dataTable.dtr-column.collapsed>tbody>tr>td:first-child:before,table.dataTable.dtr-column.collapsed>tbody>tr>th:first-child:before{font-family:'Roboto';font-size:10px;line-height:11px;position:absolute;top:60%;left:25%;display:block;-webkit-box-sizing:content-box;box-sizing:content-box;width:10px;height:10px;content:'+';cursor:pointer;text-align:center;color:white;border:2px solid white;border-radius:12px;background-color:#337ab7;-webkit-box-shadow:0 0 1px #888;box-shadow:0 0 1px #888}table.dataTable.dtr-column.collapsed>tbody>tr.parent>td:first-child:before,table.dataTable.dtr-column.collapsed>tbody>tr.parent>th:first-child:before{font-size:16px;line-height:8px;content:'-';background-color:#d33333}table.dataTable>tbody>tr.child span.dtr-title{font-weight:700;display:inline-block;width:35%;min-width:75px}table.dataTable>tbody>tr.child span.dtr-data{display:inline-block;float:right;overflow:hidden;width:57%;text-align:right;white-space:nowrap;text-overflow:ellipsis}table.dataTable thead th,table.dataTable thead td{border-bottom:1px solid #eaeaea}.dataTables_filter input[type='search'],.csf-container input[type='text'],.csf-container input[type='search'],.csf-container input[type='submit'],.csf-container button.input,.dataTables_filter input[type='search']{color:#333 !important}.dataTables_filter input[type='search'],.csf-container input[type='text'],.csf-container input[type='search'],input[name],input[type='text'],input[type='search']{padding-left:6px}.csf-container input[type='text']:focus,.csf-container input[type='search']:focus{padding-left:6px !important}.btn:not(.btn-xxs):not(.btn-tiny):not(.ui_link_replaced),.csf-container button.input,.csf-container input[type='submit'],input[type='button'],input[type='reset'],input[type='submit'],button.btn{font-size:14px;padding:6px 12px;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-webkit-transition:none;transition:none;text-align:center !important;-webkit-box-shadow:none;box-shadow:none}.csf-container input[type='text'],.csf-container input[type='search'],.dataTables_filter input[type='search'],input[id^='CSF'],input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.btn){text-align:left !important}.btn-tiny,.ui_link.btn.btn-inverse.btn-tiny.ui_link_replaced,.btn-inverse{cursor:default;color:#444 !important;border-color:#e2e2e2 !important;background-color:#f6f6f6 !important}.csf-container input[type='submit']:hover,.csf-container input[type='submit']:focus,.csf-container input[type='submit']:active,.csf-container input[type='submit'].active,.csf-container button.input:hover,.csf-container button.input:focus,.csf-container button.input:active,.csf-container button.input.active,.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active{color:#555;border-color:#e2e2e2;background-color:#e7e7e7}.csf-container input[type='submit']:hover,.csf-container input[type='submit']:focus,.csf-container input[type='submit']:active,.csf-container input[type='submit'].active{border-color:#cecece}.csf-container .csf-box legend+table.table.table-striped.table-condensed[align='center']{margin-top:-2px !important}.csf-container .csf-box legend+table.table.table-striped.table-condensed[align='center'] tbody tr:first-child{border-top:0 !important}.btn-tiny{font-size:12px !important;height:23px !important;padding:1.5px 8px !important}.ui_link.btn.btn-inverse.btn-tiny.ui_link_replaced:hover,.btn-inverse.btn-tiny:hover,.btn-tiny:hover{border:1px solid #ccc !important;background:#e7e7e7 !important}.btn-tiny+.btn-tiny{margin-left:-1px !important}.btn-danger{color:#fff !important;border-color:#992020 !important;background-color:#bd1e1e !important}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff !important;border-color:#992020 !important;background-color:#ad2828 !important}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none !important}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{border-color:#992020 !important;background-color:#bd1e1e !important}.btn-danger .badge{color:#bd1e1e !important;background-color:#fff !important}.btn-info{color:#fff !important;border-color:#4299b3 !important;background-color:#47b1d1 !important}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff !important;border-color:#4299b3 !important;background-color:#3e9fbd !important}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none !important}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{border-color:#4299b3 !important;background-color:#47b1d1 !important}.btn-info .badge{color:#47b1d1 !important;background-color:#fff !important}.cke_dialog_ui_button_ok,.btn-primary{color:#fff !important;border-color:#2a5c87 !important;background-color:#2671b3 !important}.cke_dialog_ui_button_ok:hover,.cke_dialog_ui_button_ok:focus,.cke_dialog_ui_button_ok:active,.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff !important;border-color:#2a5c87 !important;background-color:#266aa6 !important}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none !important}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{border-color:#2a5c87 !important;background-color:#2671b3 !important}.btn-primary .badge{color:#2671b3;background-color:#fff}.btn-success{color:#fff !important;border-color:#2c8828 !important;background-color:#349e30 !important}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff !important;border-color:#256d22 !important;background-color:#32942f !important}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none !important}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{border-color:#377d0f !important;background-color:#3f8f11 !important}.btn-success .badge{color:#3f8f11 !important;background-color:#fff !important}.btn-warning{color:#fff !important;border-color:#d6963c !important;background-color:#eba94c !important}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff !important;border-color:#d6963c !important;background-color:#db983b !important}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none !important}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{border-color:#d6963c !important;background-color:#eba94c !important}.btn-warning .badge{color:#eba94c !important;background-color:#fff !important}.btn-grey{color:#fff;border-color:#474747;background-color:#5c5c5c}.btn-grey:hover,.btn-grey:focus,.btn-grey:active,.btn-grey.active,.open .dropdown-toggle.btn-grey{color:#fff;border-color:#474747;background-color:#4a4a4a}.btn-grey:active,.btn-grey.active,.open .dropdown-toggle.btn-grey{background-image:none}.btn-grey.disabled,.btn-grey[disabled],fieldset[disabled] .btn-grey,.btn-grey.disabled:hover,.btn-grey[disabled]:hover,fieldset[disabled] .btn-grey:hover,.btn-grey.disabled:focus,.btn-grey[disabled]:focus,fieldset[disabled] .btn-grey:focus,.btn-grey.disabled:active,.btn-grey[disabled]:active,fieldset[disabled] .btn-grey:active,.btn-grey.disabled.active,.btn-grey[disabled].active,fieldset[disabled] .btn-grey.active{border-color:#474747;background-color:#5c5c5c}.btn-grey .badge{color:#5c5c5c;background-color:#fff}.btn-default{border-color:#e8e8e8}.btn-default:focus,.btn-default.active,.btn-default:active,.btn-default:hover{border-color:#e2e2e2 !important;background:#f2f2f2 !important}.btn-lg,.btn-group-lg>.btn{line-height:17px;height:36px;padding:8px 14px !important}.btn-34{line-height:10px;height:34px}.btn.btn-success:not(.btn-primary):not(.btn-xxs):not(.ui_link):not(.ui_submit),.btn.btn-success.btn-tiny:not(.btn-xxs):not(.ui_link):not(.ui_submit){border:1px solid #4c984d}.btn.btn-success:not(.btn-primary):not(.btn-xxs):not(.ui_link):not(.ui_submit):hover,.btn.btn-success.btn-tiny:not(.btn-xxs):not(.ui_link):not(.ui_submit):hover{border:1px solid #388439}.btn.btn-xs i{font-size:10px}.btn.btn-xs{font-size:11px !important;line-height:4px !important;height:18px;padding:2px 8px}.btn.btn-xxs i{font-size:10px}.btn.btn-xxs{font-size:11px;line-height:11px;height:15px;padding:0 8px}.btn-inverse:hover{background-color:#eee !important}.clearleft:after{clear:left}.clearleft:before{display:table;content:' '}.clearright:after{display:table;clear:right;content:' '}.col_label,.col_value,.table-subtable tbody tr td.no-border,.table-subtable tbody tr td.col_label,.table-subtable tbody tr td.col_value,.panel-body .table tbody,.panel-body table.table-hardcoded tbody tr td,.panel-body form table,.table table table td{border-spacing:0;border-collapse:collapse;vertical-align:middle;border:0}.panel-footer{background-color:#f6e8d4}.csf-container #CSFajax{width:auto !important;height:auto !important;padding:6px}.csf-container .paginationstyle{padding-top:6px;padding-bottom:6px}.csf-container .panel-body>h2:first-child{font-size:18px;margin-top:3px;margin-bottom:32px;text-align:center}.csf-container fieldset+p[align='center'],.table-responsive+form.ui_form,.ui_table_body table,.panel-body form+table.table-hardcoded+form{margin-top:4px !important}tr.ui_grid_row td.ui_grid_cell>form.ui_form[action^='mail_search']>input.ui_hidden+input.submitter{margin-top:4px !important}.ui_form_end_buttons td>span+span{line-height:40px}.ui_form>.table-responsive+input+input+select{margin-top:5px !important;margin-bottom:3px !important}.ui_form>input.ui_hidden+input+input+select{margin-top:6px !important;margin-bottom:5px !important}.ui_form>input.ui_hidden+input,.ui_form>input+select+input{margin-top:4px !important;margin-bottom:3px !important}button.btn-default.file_chooser_button,button.btn-default.file_chooser_button_emulate,td>select+input,input+select,select+input,select+select,input[type='submit']+select,input[type='submit']+input[type='submit'],div.table-responsive+input,div.table-responsive>select+input,div.table-responsive>input+select,div.table-responsive>input{margin-top:1px !important;margin-bottom:1px !important}td>select+input{margin:0 !important}form.ui_form>input,form.ui_form>select,form.ui_form>input+input,form.ui_form>input+select{margin-right:3px !important}.ui_table_end_submit_right{float:right;margin-top:-35px}br+.ui_form_end_submit,br+.ui_form_end_submit ~ .ui_form_end_submit,br+.end_submits,.ui_link_replaced+.end_submits,.table-responsive+.end_submits,table+.end_submits,.ui_form_end_buttons{margin-top:4px !important}.container-fluid .panel-group+.ui_form_end_buttons{margin-top:-12px !important}.table-responsive+input+.btn-group.end_submits,table+input+.btn-group.end_submits{margin-top:6px}select+.ui_form_end_submit,select+.ui_link_replaced{margin-top:0}td.td_tag>a.btn-xxs.ui_link_replaced{margin-top:0;margin-bottom:2px}body[class*='webminlog'] textarea#anno+br+.ui_form_end_submit,.file_chooser_button+.ui_form_end_submit:not(.heighter-34-force),select[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force),input[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force),input[style*='height: 28px']+.ui_form_end_submit:not(.heighter-34-force),.heighter-28+.btn-group>.btn:not(.heighter-34-force){font-size:94% !important;height:28px;min-height:28px;max-height:28px;margin-top:0;padding:4px 12px !important}.file_chooser_button+.ui_form_end_submit:not(.heighter-34-force) i,select[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force) i,input[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force) i,input[style*='height: 28px']+.ui_form_end_submit:not(.heighter-34-force) i,.heighter-28+.btn-group>.btn:not(.heighter-34-force):not(.heighter-28) i{margin-top:1px;vertical-align:middle !important}input[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force) i.fa-caret-down{margin-top:-2px}.file_chooser_button+.ui_form_end_submit:not(.heighter-34-force) i.fa-1_25x,select[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force) i.fa-1_25x,input[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force) i.fa-1_25x,input[style*='height: 28px']+.ui_form_end_submit:not(.heighter-34-force) i.fa-1_25x,.heighter-28+.btn-group>.btn:not(.heighter-34-force) i.fa-1_25x{margin-top:1px;vertical-align:middle !important}form.ui_form[action='delete_servs.cgi'] table.table-striped.table-condensed table tbody{border:0 !important}.dataTables_filter input[type='search']:focus,.dataTables_filter input[type='search']:hover,.csf-container input[type='text']:not(.dataTable-mirror):focus,.csf-container input[type='search']:focus,input[id^='CSF']:focus,input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.sidebar-search):focus{border-color:#66afe9 !important;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) !important;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) !important}.csf-container input[type='text'].dataTable-mirror,.csf-container input[type='text'].dataTable-mirror:focus{max-width:90px;border-color:transparent !important}.file-input-wrapper{position:relative;z-index:1;overflow:hidden;cursor:pointer}.file-input-wrapper input[type=file],.file-input-wrapper input[type=file]:focus,.file-input-wrapper input[type=file]:hover{position:absolute;z-index:99;top:0;left:0;cursor:pointer;opacity:0;outline:0;filter:alpha(opacity=0)}.file-input-name{margin-left:8px}label+.file-input-wrapper,b>label+input,.csf-container select+input,select+select{margin-left:3px}.panel-body{overflow:auto;padding-top:17px;padding-bottom:13px}.panel-group .panel-body{padding:15px}.panel-group .panel-body.inner{padding:0 2px}html[data-uri*='config.cgi'] ._c__op_d,.panel-group#conf-_-gr .panel-heading{text-align:center !important}html[data-uri*='config.cgi'] td .opener_trigger.opener_container_opened[id]:before,html[data-uri*='config.cgi'] td .opener_trigger[id]:before,.panel-group#conf-_-gr .panel-heading a:before{right:15px}html[data-uri*='config.cgi'] td .opener_trigger.opener_container_opened[id]:before,html[data-uri*='config.cgi'] td .opener_trigger[id]:before{right:31px}html[data-uri*='config.cgi'] td .opener_trigger.opener_container_closed[id]:before,.panel-group#conf-_-gr .panel-heading a[aria-expanded='false']:before{content:'\f084'}.panel-group#conf-_-gr .panel-heading a[aria-expanded='true']:before{right:13px}html[data-uri*='config.cgi'] td .opener_trigger.opener_container_opened[id]:before{right:29px}.refresh-timer-timeout{line-height:19px}.paginate_button.disabled{margin-left:-1px !important}.paginate_button.disabled a,.paginate_button.disabled span{border-color:#eaeaea}td>input+input[type='submit']{vertical-align:baseline}.heighter-28{vertical-align:middle}input+a[href*='help.cgi'].help_popup{line-height:30px !important;margin-left:4px !important;vertical-align:top !important}.help_popup.text-lighter{color:#ccc !important}.help_popup.text-lighter:active,.help_popup.text-lighter:focus,.help_popup.text-lighter:hover{color:#23527c !important}a[href*='help.cgi'].help_popup+.popover>.popover-content center{font-weight:500;display:inline-block;margin-bottom:2px !important;margin-bottom:3px !important;text-align:left !important}.module-help .popover-content center{font-weight:600;text-align:left !important}a[href*='help.cgi'].help_popup+.popover>.popover-content center:after{content:':'}a[href*='help.cgi'].help_popup+.popover>.popover-content center tt{padding-left:0}a[href*='help.cgi'].help_popup+.popover>.popover-title{font-size:14px;line-height:15px}a[href*='help.cgi'].help_popup+.popover>.popover-content u{display:inline-block;margin-top:-3px !important}a[href*='showpass.cgi'].help_popup+.popover>.popover-content{width:23vw;min-width:276px;max-width:23vw}h3.h3_help{font-size:14px;margin-top:5px}input[type='text'],input.ui_radio{vertical-align:middle !important}input.ui_radio+label.radio{margin:0 !important;margin-top:3px !important;margin-bottom:2px !important}input.ui_radio+label{margin:0 !important;margin-top:2px !important;margin-bottom:2px !important}.td_tag>input.ui_radio+label.radio{margin:0 !important;margin-top:6px !important;margin-right:6px !important}.data-refresh:hover{text-decoration:none;color:#333 !important}input[type='button']:not(.btn-success):not(.btn-primary):not(.btn-info):not(.btn-danger):not(.btn-warning){border-color:#e8e8e8}.btn.btn-menu-toggler:active i,.btn.btn-menu-toggler:focus i,.opened .btn.btn-menu-toggler i{color:#ddd}.csf-container .btn-filter-top-right,.csf-container .btn-toggle-top-right,.btn.btn-menu-toggler:active,.btn.btn-menu-toggler:focus,.btn.btn-menu-toggler:hover,.btn.btn-menu-toggler{border-color:#ddd !important}.panel-heading .header{width:100%}.panel-heading .header a.btn{line-height:19px;height:34px !important;border-color:#ddd}.panel-heading .header a.btn:hover{border-color:#d8d8d8}.file-input-wrapper span{font-size:13px;line-height:16px !important}.file-input-wrapper{line-height:0 !important;width:40px;height:28px;margin-bottom:2px;padding-top:5px !important;padding-right:5px !important;padding-left:5px !important}button.file_chooser_button{padding:3px 12px 6px 12px !important;vertical-align:middle}.file_chooser_button_attached{position:absolute;margin-top:8px !important;margin-left:-28px}button.file_chooser_button:hover,button.file_chooser_button:focus,button.file_chooser_button:active,button.file_chooser_button.active,button:focus>.fa-files-o{background-color:#f2f2f2 !important}input[type='button']:focus+.file_chooser_button_attached{background-color:#f2f2f2 !important}input[type='button'][disabled]+.file_chooser_button_attached{color:#888 !important}.file-input-wrapper:hover i,input:hover+.file_chooser_button_attached,.file_chooser_button:hover i,.file_chooser_button_emulate:hover,.file_chooser_button:hover,.file-input-wrapper:hover{background-color:#f2f2f2}.col_value>textarea+input[onclick][type='button']{margin-top:4px !important}.ui_buttons_row input.form-control.ui_textbox+input[onclick][type='button']{margin-top:6px !important}img[src='/empty.gif'],img[src='empty.gif'],img[src$='/timeplot/images/copyright.png'],.file-input-wrapper+br,.popover.bottom .arrow,.ui_form[action^='list_mail']>img,.ui_up_down_arrows_gap,.panel-body>.ui_form[action^='delete_recipes'] ~ a.ui_link,tr.ui_buttons_hr>td>table.table-hardcoded>tbody>tr>td>hr,body[data-current-product='usermin'] .ui_form+script+hr{display:none}.csf-container .csf-box h2{font-size:14px;margin-top:10px}.icons-row{margin:20px 5px 5px 0}.block{display:block}.inline-block{display:inline-block}.loading-sm{position:absolute;top:92px;left:45%;width:24px;height:24px;margin:0;-webkit-animation:nprogress-spinner 360ms linear infinite;animation:nprogress-spinner 360ms linear infinite;border:1px solid #44668c;border-top:1px solid #b3c6dd;border-radius:100%}.fa-loader{-webkit-animation:spin3d 1500ms infinite linear;animation:spin3d 1500ms infinite linear}.mCSB_inside>.mCSB_container{display:none !important}.mCSB_scrollTools .mCSB_draggerContainer{z-index:999;left:11px}#mCSB_1_dragger_vertical .mCSB_dragger_bar{width:5px}aside .mCustomScrollBox{padding-bottom:120px;color:transparent}.mce-fullscreen{padding:0 20px !important}.menu-row a i.fa{font-size:84px}.menu-row a.menu-link{color:#fff}.menu-row a.menu-link:hover{text-decoration:none;color:#eee}a#product-menu.dropdown-toggle.open:active,a#product-menu.dropdown-toggle.open.active,a#product-menu.dropdown-toggle:active,a#product-menu.dropdown-toggle.active,a#product-menu.dropdown-toggle:hover,.tr_tag label,.td_tag label,.table-hardcoded>tbody>tr>td.col_label b,.table-hardcoded>tbody>tr>td.col_label b a,td.col_value tt,td.col_value label,.table-hardcoded>tbody>tr>td>.table-hardcoded>tbody>tr.thead td b,.file-input-wrapper>span{background:0}.ui_checked_columns .td_tag,.navigation li,.ui_label a{cursor:pointer}.ui_checked_columns input{cursor:default}.navigation_module_trigger{cursor:pointer;text-decoration:none}.opener_container .opener_shown hr{width:99%;height:1px;border:0;border-top:1px solid #f0f0f0 !important}.opener_container .opener_shown .table.table-striped tbody tr:first-child td:first-child{vertical-align:middle !important}.thead .tdhead a.opener_trigger{vertical-align:text-top}.thead .tdhead a.opener_trigger,.opener_trigger{font-size:16px !important;font-weight:normal !important}.opener_trigger:first-child{margin-left:7px}.opener_trigger img{font-size:10px}.panel .panel-heading .panel-title a{margin-left:10px !important}td .opener_trigger[id]{margin-left:18px !important}.panel .panel-heading .panel-title a:before,td .opener_trigger[id]:before{font-family:'Authentic';position:absolute;margin-left:-10px;content:'\f088';color:#bfbfbf}.panel .panel-heading .panel-title a:not([data-toggle='collapse']):before{display:none}.panel .panel-heading .panel-title a:before{margin-left:-13px}.panel .panel-heading .panel-title a[aria-expanded='true']:before,td .opener_trigger.opener_container_opened[id]:before{margin-left:-13px;content:'\f085'}.panel .panel-heading .panel-title a[aria-expanded='true']:before{margin-left:-16px}a.opener_extra_container_a_style{padding-left:25px}a.opener_extra_container_a_style:before{position:absolute;margin-top:6px;margin-left:-13px !important;content:'\f088';color:#bfbfbf}a.opener_extra_container_a_style.opener_container_opened:before{margin-left:-15px !important;content:'\f085'}.panel-body table:not(.table-hardcoded) tr.thead+tr>td,.panel-body,.opener_container{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.050);box-shadow:inset 0 1px 1px rgba(0,0,0,.050)}.opener_container.opener_sub_container{margin-top:-1px;border:1px solid #eaeaea !important;border-top:0 !important;border-bottom:0 !important}.opener_sub_container.margined-top{border-top:1px solid #eaeaea !important;border-bottom:1px solid #eaeaea !important}.opener_hidden+.ui_form,.opener_sub_container+.ui_form{margin-top:10px}.m-w-10{max-width:10px !important}.margined-left--1{margin-left:-1px !important}.margined-left--2{margin-left:-2px !important}.margined-left--3{margin-left:-3px !important}.margined-left--5{margin-left:-5px !important}.margined-left-3{margin-left:3px !important}.margined-right-2{margin-right:2px !important}.margined-left-2{margin-left:2px !important}.margined-left-4{margin-left:4px !important}.margined-right--3{margin-right:-3px !important}.margined-right--4{margin-right:-4px !important}.margined-right-3{margin-right:3px !important}.margined-right-5{margin-right:5px !important}.margined-right-8{margin-right:8px !important}.margined-right-13{margin-right:13px !important}.margined-right--8{margin-right:-8px !important}.margined-right--10{margin-right:-10px !important}.margined-right--12{margin-right:-12px !important}.margined-right--18{margin-right:-18px !important}.margined-right--20{margin-right:-20px !important}.margined-left-8{margin-left:8px !important}.margined-left-40{margin-left:40px !important}.margined-top--1{margin-top:-1px !important}.margined-top--2{margin-top:-2px !important}.margined-top--3{margin-top:-3px !important}.margined-top--4{margin-top:-4px !important}.margined-top--5{margin-top:-5px !important}.margined-top--7{margin-top:-7px !important}.margined-top--10{margin-top:-10px !important}.margined-top--15{margin-top:-15px !important}.margined-top--20{margin-top:-20px !important}.margined-top--25{margin-top:-25px !important}.margined-top--30{margin-top:-30px !important}.margined-top-0{margin-top:0 !important}.margined-top-1{margin-top:1px !important}.margined-top-2{margin-top:2px !important}.margined-top-3{margin-top:3px !important}.margined-top-4{margin-top:4px !important}.margined-top-5{margin-top:5px !important}.margined-top-6{margin-top:6px !important}.margined-top-7{margin-top:7px !important}.margined-top-10{margin-top:10px !important}.margined-top-15{margin-top:15px !important}.margined-top-20{margin-top:20px !important}.margined-top-25{margin-top:25px !important}.margined-top-30{margin-top:30px !important}.margined-bottom-0{margin-bottom:0 !important}.margined-bottom-1{margin-bottom:1px !important}.margined-bottom-3{margin-bottom:3px !important}.margined-bottom-10{margin-bottom:10px !important}.margined-bottom-20{margin-bottom:20px !important}.margined-bottom--2{margin-bottom:-2px !important}.margined-bottom--3{margin-bottom:-3px !important}.margined-bottom--4{margin-bottom:-4px !important}.shifted-top--10{top:-10px !important}.shifted-top--20{top:-20px !important}.shifted-top--40{top:-40px !important}.shifted-top--50{top:-50px !important}.shifted-top--60{top:-60px !important}.shifted-top--70{top:-70px !important}.panel{position:relative;color:#333;border-color:rgba(228,228,228,.83);border-top-width:4px}.panel-group .panel{border-top-width:1px}.panel-body .tab-content .ui_form+.ui_form,.panel-body .tab-content form.ui_form+form.ui_form,.panel-body .tab-content form.ui_form+script+form.ui_form{margin-top:25px}.ui_form>.ui_grid_table.table-hardcoded:not(.sub_table_container):not(.ui_radio_table):not(.ui_grid_table),.panel-body .ui_form table.table .opener_shown table tbody tr,.panel-body .table-responsive table.table-subtable tbody tr td.col_value table.table,.panel-body>form>table:not(.table-hardcoded)>tbody>tr,.panel-body>form>table>tbody,.table table,table.ui_grid_table tbody{border:1px solid #eaeaea}.panel-body .tab-content .ui_form>.ui_grid_table.table-hardcoded{border:0}.panel-body .ui_table tbody tr td{padding:10px 5px}.panel-body>.tab-content .tab-pane>form.ui_form{margin-top:4px}.panel-body>.table.table-striped+.ui_link:active,.panel-body>.table.table-striped+.ui_link.active,.panel-body>.ui_link:active,.panel-body>.ui_link.active,input[type='reset']:active,input[type='button']:active,input[type='submit']:active,input[type='reset'].active,input[type='button'].active,input[type='submit'].active,input.btn-primary:active,input.btn-primary.active,.open>.dropdown-toggleinput.btn-primary,input.btn-success:active,input.btn-success.active,.open>.dropdown-toggleinput.btn-success,input.btn-info:active,input.btn-info.active,.open>.dropdown-toggleinput.btn-info,input.btn-warning:active,input.btn-warning.active,.open>.dropdown-toggleinput.btn-warning,input.btn-danger:active,input.btn-danger.active,.open>.dropdown-toggleinput.btn-danger{background-image:none}.panel-body>.table.table-striped+.ui_link:hover,.panel-body>.table.table-striped+.ui_link:focus,.panel-body>.table.table-striped+.ui_link:active,.panel-body>.table.table-striped+.ui_link.active,.panel-body>.ui_link:hover,.panel-body>.ui_link:focus,.panel-body>.ui_link:active,.panel-body>.ui_link.active,input[type='reset']:hover,input[type='button']:hover,input[type='submit']:hover,input[type='reset']:focus,input[type='button']:focus,input[type='submit']:focus,input[type='reset']:active,input[type='button']:active,input[type='submit']:active,input[type='reset'].active,input[type='button'].active,input[type='submit'].active{color:#333;border-color:#adadad;background-color:#f2f2f2}.panel-body>.ui_table>tbody tr:first-child:not(.ui_grid_row) td b,.ui_table_head td b{font-size:16px;font-weight:normal}.panel-body>.ui_table>tbody tr:first-child:not(.ui_grid_row) td,.ui_table_head td{height:38px;vertical-align:middle}.panel-body>.ui_table>tbody tr:first-child:not(.ui_grid_row),.ui_table_head{text-align:center;color:#333;border-color:#eaeaea;border-right:1px solid #eaeaea;border-left:1px solid #eaeaea;background-color:#f6f6f6}.panel-body form+table.table-hardcoded>tbody>tr.thead>td>b{font-size:16px;font-weight:normal;line-height:26px;padding-left:3px;text-align:center}.panel-body form+table.table-hardcoded>tbody>tr:not(.thead)>td{padding-left:6px}.panel-body form>.table-hardcoded,.panel-body form.ui_form[action^='index']>.table-hardcoded tr td *:not(.awobject):not(.btn-tiny){margin:0 !important}tr>td.col_value>table.ui_grid_table.table-hardcoded+b,tr>td.col_value>br+b,table>thead>tr>th{font-size:14px;font-weight:normal !important}.panel-body form table tbody tr.thead td{font-size:16px !important;line-height:16px;padding:3px 5px !important;text-align:left;vertical-align:initial;color:#333;border-color:#eaeaea;border-bottom:1px solid #eaeaea;background:0;background-color:#f6f6f6}.panel-body form table tbody tr.thead td b,.table-title b{font-weight:normal}.table-title b>tt{clear:both}.table-title tt{font-size:17px !important}.thead .tdhead{text-align:center !important}table.table-hardcoded>tbody>tr[bgcolor].thead>td>b{font-size:14px !important}form>table.table-hardcoded>tbody>tr[bgcolor].thead>td>b{font-size:18px !important;line-height:24px !important}.panel-body form table.ui_form_end_buttons tbody,.panel-body form table.ui_form_end_buttons tbody tr,.ui_form[action$='.cgi']>table.table-hardcoded>tbody,.ui_grid_table.table-hardcoded tbody,#popup>.ui_form>.table-responsive>table>tbody>tr>td,#popup>.ui_form>.table-responsive>table>tbody>tr,#popup>.ui_form>.table-responsive>table,#popup>.ui_form>.table-responsive{border:0}a.btn.ui_link:first-child,.panel-body form.ui_form table table table.ui_multi_select tbody tr.ui_multi_select_row td *,.ui_form[method='get'] table table table tbody tr td[valign='top'],.table-hardcoded>tbody>tr.ui_grid_row>td.ui_grid_cell,.panel-body>table.ui_buttons_table tr.ui_buttons_row>td.ui_buttons_label input[type='radio']{vertical-align:top !important}.panel-body form.ui_form table.table tbody tr td.opener_container div.opener_shown table:not(.table-hardcoded) tr td{border-right:1px solid #eaeaea}td.opener_container{border-right:1px solid #f0f0f0;border-left:1px solid #f0f0f0}.panel-body form.ui_form[action^='save_assignment'] .ui_table tbody tr td{padding:3px 5px 0}.panel-body p>a[href^='edit_part.cgi'],a[href^='edit_part.cgi']{margin-top:3px;margin-bottom:3px}.panel-body p>a[href^='edit_part.cgi'],table+a[href^='edit_part.cgi'],.panel-body>.table.table-striped+.ui_link,.panel-body>.ui_link,input[type='button'],input[type='reset'],input[type='submit']{font-size:14px;font-weight:normal;line-height:1.42857143;display:inline-block;margin-bottom:0;padding:6px 12px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-align:center;vertical-align:middle;white-space:nowrap;color:#333;border:1px solid transparent;border-color:#e2e2e2;border-radius:0;background-color:#fff;background-image:none}tt{font-size:12px !important;font-style:italic;padding-right:2px;padding-left:2px}.panel-body p>a[href^='edit_part.cgi'].disabled,table+a[href^='edit_part.cgi'].disabled,.panel-body>.table.table-striped+.ui_link.disabled,.panel-body>.table.table-striped+.ui_link[disabled],.panel-body>.ui_link.disabled,.panel-body>.ui_link[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;-webkit-box-shadow:none;box-shadow:none;filter:alpha(opacity=65)}.panel-body p>a[href^='edit_part.cgi']:active,.panel-body p>a[href^='edit_part.cgi'].active,table+a[href^='edit_part.cgi']:active,table+a[href^='edit_part.cgi'].active,.panel-body>.table.table-striped+.ui_link:active,.panel-body>.table.table-striped+.ui_link.active,.panel-body>.ui_link:active,.panel-body>.ui_link.active,input[type='button']:active,input[type='submit']:active,input[type='button'].active,input[type='submit'].active{border-color:#e2e2e2;outline:0;background-color:#f2f2f2;background-image:none}.panel-body p>a[href^='edit_part.cgi']:focus,.panel-body p>a[href^='edit_part.cgi']:active:hover,.panel-body p>a[href^='edit_part.cgi'].active:hover,table+a[href^='edit_part.cgi']:focus,table+a[href^='edit_part.cgi']:active:hover,table+a[href^='edit_part.cgi'].active:hover,.panel-body>.table.table-striped+.ui_link:focus,.panel-body>.table.table-striped+.ui_link:active:focus,.panel-body>.table.table-striped+.ui_link.active:focus,.panel-body>.ui_link:focus,.panel-body>.ui_link:active:focus,.panel-body>.ui_link.active:focus,input[type='button']:focus,input[type='submit']:focus,input[type='button']:active:focus,input[type='submit']:active:focus,input[type='button'].active:focus,input[type='submit'].active:focus{border-color:#e2e2e2}.panel-body p>a[href^='edit_part.cgi']:hover,.panel-body p>a[href^='edit_part.cgi']:focus,table+a[href^='edit_part.cgi']:hover,table+a[href^='edit_part.cgi']:focus,.panel-body>.table.table-striped+.ui_link:hover,.panel-body>.table.table-striped+.ui_link:focus,.panel-body>.ui_link:hover,.panel-body>.ui_link:focus,input[type='button']:hover,input[type='submit']:hover,input[type='button']:focus,input[type='submit']:focus{text-decoration:none;color:#333;border-color:#e2e2e2;background-color:#f2f2f2}.panel-body table tbody tr td table{border:0;border-color:transparent;background-color:transparent}.panel-body table.table table table.table td{padding:1px;border-left:1px solid #eaeaea}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr:not(.ui_checked_columns)>td,.table>tfoot>tr>td{vertical-align:middle}.panel-body table.table tbody tr td.col_value table{border-spacing:0;border-collapse:collapse;border:0;border-color:transparent}.popover-content ul,.table-subtable .table,h3.ui_subheading+form.ui_form>select[name^='parentuser'] ~ .dataTables_wrapper>table.table.table-striped,h3.ui_subheading+form.ui_form>select[name^='parentuser'] ~ table.table.table-striped{margin:10px 0}.popover-title{font-size:14px;font-weight:500;line-height:21px;padding-top:6px;padding-bottom:6px;background-color:#f7f7f7 !important}.popover-title button{margin-top:2px;margin-right:-4px}.popover-content{font-size:13px}.popover.bottom{width:270px;margin-top:10px}.popover-content{overflow-y:auto;max-height:300px}.popover-content table>thead>tr>th.head{font-weight:500 !important}.popover-content h5,.popover-content table>tbody>tr>td h5,.popover-content table>tbody>tr>td,.popover-content table>thead>tr>th{font-size:12px}.popover-content table>tbody>tr>td,.popover-content table>thead>tr>th{padding-top:3px;padding-bottom:3px}.popover.bottom .popover-title,.list-group .title,#about,.menu-row,a.opener_trigger,.opener_trigger{text-align:center}.row.icons-row div:after{display:table;clear:both;content:' '}.sub_table_container *{font-size:13px;line-height:1.42857143}html:not([data-background-style='nightRider']) .sub_table_container:not(.xcontent-force-no-styling) *:not(em):not(tt):not(a):not(.popover):not(.popover-title):not(.popover-content):not(.close-popover-trigger):not(.arrow):not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th):not(textarea):not(select):not(.opener_table_cell_style_small):not(.link_hover_effect):not(pre){color:#333;background-color:#fff !important}.container-fluid>.panel>.panel-body>pre:not([data-cm-viewer]):not(.comment),.container-fluid>.panel>.panel-body>ul>pre:not([data-cm-viewer]):not(.comment),.container-fluid>.panel>.panel-body .table-responsive>.table .sub_table_container td>pre,body.server-manager[data-uri*='shell.cgi'] .sub_table_container:not(.xcontent-force-no-styling) *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th),body.shell .sub_table_container:not(.xcontent-force-no-styling) *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th){color:#eeeeec;background-color:#292929}body.server-manager[data-uri*='shell.cgi'] pre,body.shell pre{border:0}body:not(.mysql):not(.postgresql) tr.thead ~ tr:last-child>td{padding:4px !important;-webkit-box-shadow:none !important;box-shadow:none !important}.sub_table_container.xcontent-force-no-styling tr.ui_checked_columns td,.sub_table_container.xcontent-force-no-styling tr.ui_checked_columns{background-color:#fff}body.syslog .CodeMirror{height:65vh}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected,.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#494662 !important}.CodeMirror-focused .CodeMirror-selected,.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#494662 !important}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#494662 !important}.CodeMirror-line>span,.CodeMirror-line>span>span{background:transparent !important}.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span::-moz-selection{background:#494662 !important}.CodeMirror-line>span::selection,.CodeMirror-line>span::-moz-selection{background:#494662 !important}.sub_table_container pre,.CodeMirror *,.sub_table_container .CodeMirror *{font-family:monospace;font-size:12px}.CodeMirror.cm-s-elegant,.panel-body>form>.CodeMirror.cm-s-elegant{border:1px solid #efefef}.CodeMirror-wrap,.panel-body>form>.CodeMirror{border:0}.CodeMirror-gutters{border-right:1px dotted #efefef}.submitter,.submitter+.submitter{margin-right:3px !important}.switch-toggle a,.switch-light span span{display:none}.switch-toggle{position:fixed;z-index:999;top:0;left:0;display:none;height:56px;padding:0 !important;table-layout:fixed}.switch-toggle *{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .13s ease-out;transition:all .13s ease-out}.switch-toggle label[for='open_dashboard'] i{font-size:19px}.switch-toggle a{display:block}.switch-toggle label,.switch-toggle>span{line-height:1.6em;vertical-align:middle}.switch-toggle *{font-size:1em}.switch-toggle input{position:absolute;opacity:0}.switch-toggle input+label{position:relative;z-index:2;display:table-cell;width:50%;margin:0;padding:0 .5em;text-align:center}.switch-toggle a{position:absolute;z-index:1;top:0;left:0;width:50%;height:100%;padding:0}.switch-toggle input:last-of-type:checked ~ a{left:50%}.switch-toggle.switch-3 label,.switch-toggle.switch-3 a{width:33.3333333333%}.switch-toggle.switch-3 input:checked:nth-of-type(2) ~ a{left:33.3333333333%}.switch-toggle.switch-3 input:checked:last-of-type ~ a{left:66.6666666667%}.switch-toggle.switch-4 label,.switch-toggle.switch-4 a{width:25%}.switch-toggle.switch-4 input:checked:nth-of-type(2) ~ a{left:25%}.switch-toggle.switch-4 input:checked:nth-of-type(3) ~ a{left:50%}.switch-toggle.switch-4 input:checked:last-of-type ~ a{left:75%}.switch-toggle.switch-5 label,.switch-toggle.switch-5 a{width:20%}.switch-toggle.switch-5 input:checked:nth-of-type(2) ~ a{left:20%}.switch-toggle.switch-5 input:checked:nth-of-type(3) ~ a{left:40%}.switch-toggle.switch-5 input:checked:nth-of-type(4) ~ a{left:60%}.switch-toggle.switch-5 input:checked:last-of-type ~ a{left:80%}.switch-mins{text-align:center;color:#c7d2e6;border-radius:0;background-color:rgba(11,11,11,.9)}.switch-mins label[for^='reserve_empty']{cursor:default}.switch-mins label{font-size:15px;font-weight:normal;cursor:pointer;opacity:.3;color:#c7c7c7;border-bottom:1px solid rgba(255,255,255,.09)}.switch-mins label[for='open_dashboard']{opacity:1}.switch-mins label[for='open_dashboard']>i.fa-dashboard,.switch-mins label[for='open_dashboard']>span{opacity:.3}.switch-mins input:checked+label[for='open_dashboard']>i.fa-dashboard,.switch-mins input:checked+label[for='open_dashboard']>span{opacity:1}.switch-mins input:checked+label{font-weight:500;opacity:1;color:#fff;border-bottom:1px solid transparent}.switch-mins a{border-radius:0;background-color:#386386}.switch-mins label i+span{display:block !important;margin-top:-5px;margin-bottom:0}.switch-mins label i.wbm-webmin{margin-top:2px;margin-bottom:6px}.switch-mins label i.wbm-webmin+span{margin-top:-7px}.switch-mins label i.fa-dashboard{margin-top:-6px}.switch-mins label i.fa-dashboard+span{margin-top:-8px}@-moz-document url-prefix(){.switch-mins label i.wbm-webmin+span{margin-top:-6px}.switch-mins label i.fa-dashboard{margin-top:-7px}}.__logo{position:fixed;z-index:999;bottom:-100px;left:0;height:70px;max-height:70px;padding:0 !important;table-layout:fixed;text-align:center;pointer-events:none;opacity:.4}.__logo.inited{-webkit-transform:translate(0,-140px) !important;transform:translate(0,-140px) !important}.strike-out{text-decoration:line-through}.opacity-0{cursor:default;opacity:0}.opacity-0_2{cursor:default;opacity:.2}.opacity-0_3{cursor:default;opacity:.3}.opacity-0_4{cursor:default;opacity:.4}.opacity-0_5{cursor:default;opacity:.5}.opacity-0_6{cursor:default;opacity:.6}.opacity-0_7{cursor:default !important;opacity:.7}input[type='range']{border:1px solid transparent !important;-webkit-appearance:none}input[type='range']::-webkit-slider-runnable-track{height:3px;border:0;border-radius:3px;background:#ddd}input[type='range']::-webkit-slider-thumb{width:10px;height:10px;margin-top:-3px;border:0;border-radius:50%;background:#aaa;-webkit-appearance:none}input[type='range']:focus{outline:0}input[type='range']:focus::-webkit-slider-runnable-track{background:#ccc}input[type='range']::-moz-range-track{height:3px;border:0;border-radius:3px;background:#ddd}input[type='range']::-moz-range-thumb{width:10px;height:10px;border:0;border-radius:50%;background:#aaa}input[type='range']:-moz-focusring{outline:1px solid transparent !important;outline-offset:-1px}input[type='range']::-ms-track{height:3px;color:transparent;border-width:6px 0;border-color:transparent !important;background:transparent}input[type='range']::-ms-fill-lower{border-radius:10px;background:#777}input[type='range']::-ms-fill-upper{border-radius:10px;background:#ddd}input[type='range']::-ms-thumb{width:10px;height:10px;border:0;border-radius:50%;background:#aaa}input[type='range']:focus::-ms-fill-lower{background:#888}input[type='range']:focus::-ms-fill-upper{background:#ccc}.webmin .at-help{max-width:420px}.module-help ul,.webmin .at-help ul{padding-left:25px}.webmin .at-help ul li h5{margin-bottom:0}tr.atshover:hover td kbd,tr.atshover:hover td code,tr.atshover:hover td div,tr.atshover:hover td span:not(.awobject),tr.atshover:hover td{background-color:#f5f5f5 !important}.atshover.settings_option_padded td.col_label b,.atshover.settings_option_padded td.col_label .smaller,.atshover.settings_navigation_color_rows td.col_label b,.atshover.settings_navigation_color_rows td.col_label .smaller,.atshover.settings_background_color_rows td.col_label b,.atshover.settings_background_color_rows td.col_label .smaller{margin-left:10px}.col_value.atssection div.smaller{margin-top:-2px !important;padding-right:5%}.col_value.atssection div.smaller sup.fa{font-size:90% !important}.col_value.atssection div.smaller i:not(.text-normal.no-padding){font-size:10px;color:#555}.col_label.atscontent>div.smaller.text-normal.no-padding em,.col_value.atssection div.smaller.text-normal.no-padding i{font-size:11px !important;background-color:transparent !important}.col_value.atssection div.smaller a{font-size:10px;color:#1d599d}.col_value.atscontent{width:40%}.col_label.atscontent{width:60%;padding-left:5px !important}.col_label.atscontent b{font-size:13px;font-weight:500}.col_value.atscontent *{font-size:13px}.col_label.atscontent div.smaller.text-normal.no-padding{margin-top:-2px !important;padding-right:5%;padding-left:1px}.col_value.atscontent span>input[name='settings_side_slider_background_refresh_time']{min-width:48px}.col_label.atscontent div.smaller.text-normal>code,.col_value.atssection div.smaller.text-normal>code{font-size:11px;color:#555}tr.atshover .col_value>a.file-input-wrapper span,tr.atshover .col_value>label,.col_value.atscontent span>label{background:transparent !important}tr.atshover:hover td.atscontent span{background-color:transparent !important}.va-tb{vertical-align:text-bottom !important}.vertical-align{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.vertical-align>[class^='col-'],.vertical-align>[class*=' col-']{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;align-items:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.row.icons-row .small-icons-container.grayscaled:not(.highlighted),.row.icons-row .icons-container.grayscaled:not(.highlighted){-webkit-filter:grayscale(100%);filter:grayscale(100%)}.row.icons-row .small-icons-container.grayscaled:not(.highlighted):hover,.row.icons-row .icons-container.grayscaled:not(.highlighted):hover{-webkit-filter:grayscale(1%);filter:grayscale(1%)}.row.icons-row .small-icons-container:not(.highlighted),.row.icons-row .icons-container:not(.highlighted){background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fdfdfd),to(#f3f3f3)) repeat scroll 0 0 transparent;background:linear-gradient(to bottom,#fdfdfd 0,#f3f3f3 100%) repeat scroll 0 0 transparent}.row.icons-row .small-icons-container.highlighted,.row.icons-row .icons-container.highlighted{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#ffffe9),to(#ffffc1)) repeat scroll 0 0 transparent;background:linear-gradient(to bottom,#ffffe9 0,#ffffc1 100%) repeat scroll 0 0 transparent}.row.icons-row.inline-row .small-icons-container,.row.icons-row.inline-row .icons-container{overflow:visible;min-width:37px;max-width:37px;min-height:37px;max-height:37px;margin:4px;margin:4.9px;margin-left:25px;padding-top:6px}.row.icons-row.inline-row div.small-icons-container>span.hidden-forged.hidden-forged-6,.row.icons-row.inline-row div.icons-container>span.hidden-forged.hidden-forged-6{display:inline !important;margin-left:-31px}.row.icons-row.inline-row div.small-icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:before,.row.icons-row.inline-row div.small-icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:after,.row.icons-row.inline-row div.icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:before,.row.icons-row.inline-row div.icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:after{top:1px}.row.icons-row.inline-row div.small-icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:after,.row.icons-row.inline-row div.icons-container>span.hidden-forged.hidden-forged-6 .awcheckbox label:after{left:-2px}.row.icons-row.inline-row .small-icons-container:not(.forged-xx-skip) img,.ui_form .row.icons-row.inline-row .small-icons-container:not(.forged-xx-skip) img{margin-top:0}.row.icons-row.inline-row .small-icons-container img,.row.icons-row.inline-row .icons-container img{max-width:23px;max-height:23px}.row.icons-row .small-icons-container,.row.icons-row .icons-container{overflow:hidden;min-width:92px;max-width:92px;min-height:123px;max-height:123px;margin:8px;margin:8.3px;padding:3px;cursor:pointer;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;-webkit-transition-duration:.1s;transition-duration:.1s;-webkit-transition-property:transform;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transform:translateZ(0);transform:translateZ(0);text-align:center;border:1px solid #eaeaea;border-bottom:1px solid #ddd;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.06);box-shadow:0 1px 1px rgba(0,0,0,.06);-webkit-backface-visibility:hidden;backface-visibility:hidden;-moz-osx-font-smoothing:grayscale}@supports(-ms-ime-align:auto){.row.icons-row .small-icons-container,.row.icons-row .icons-container{-webkit-transition-duration:.01s;transition-duration:.01s;-webkit-transform:none;transform:none}}.row.icons-row .icons-container-stretched{margin:20px 8px 20px 8px;margin:20px 8.3px 20px 8.3px}.row.icons-row .icons-container img{max-width:42px;max-height:42px}.row.icons-row .small-icons-container{min-width:53px;max-width:53px;min-height:53px;max-height:53px;margin:11.5px;padding-top:17px}.row.icons-row .small-icons-container img{max-width:30px;max-height:30px}form .row.icons-row .small-icons-container{padding-top:7px}.row.icons-row .small-icons-container a,.row.icons-row .icons-container a{overflow:hidden;word-break:normal}body[data-language='ru'] .row.icons-row .small-icons-container a,body[data-language='ru'] .row.icons-row .icons-container a{word-wrap:break-word}@-moz-document url-prefix(){form .row.icons-row .small-icons-container{padding-top:10px}.row.icons-row .small-icons-container{padding-top:11px}.row.icons-row .small-icons-container img{max-width:30px;max-height:30px}.vertical-align>[class^='col-'].small-icons-container,.vertical-align>[class*=' col-'].small-icons-container{display:inline-block}}.ui_form .row.icons-row .small-icons-container img{padding-top:0}.ui_form .row.icons-row .small-icons-container:not(.forged-xx-skip) img{margin-top:9px}.row.icons-row:not(.inline-row) .small-icons-container.animated:hover,.row.icons-row:not(.inline-row) .small-icons-container.animated:focus,.row.icons-row:not(.inline-row) .small-icons-container.animated:active,.row.icons-row:not(.inline-row) .icons-container.animated:hover,.row.icons-row:not(.inline-row) .icons-container.animated:focus,.row.icons-row:not(.inline-row) .icons-container.animated:active{-webkit-transform:translateY(5px);transform:translateY(5px)}.row.icons-row .ui_icon{margin-bottom:8px}.row.icons-row .icon_link{margin-bottom:5px;text-align:center !important;color:#666;text-shadow:0 1px 0 #fff}.tab-content>.tab-pane.active>div.row.icons-row{margin-top:25px !important}.table-hardcoded>tbody>tr>td>.table-hardcoded+p{margin-top:5px;margin-bottom:0}.table-hardcoded>tbody>tr>td>.table-hardcoded>tbody>tr.thead b{font-size:13px}.table-hardcoded>tbody>tr>td.col_value b{line-height:14px}.table-hardcoded tbody tr>td[nowrap]{padding-top:3px}tr>form[action='edit_field.cgi']+input.ui_hidden+input.ui_hidden+td[nowrap]{padding-top:0}tr>form[action='edit_field.cgi']+input.ui_hidden+input.ui_hidden+td[nowrap] ~ td>input:first-child{margin-left:7px}.table-striped>tbody>tr:nth-child(odd){background-color:#f7f7f7}table.dataTable tbody th,table.dataTable tbody td,.table-subtable tbody tr td{padding:0}tr.thead b,.table-title b,.panel-body form+table.table-hardcoded>tbody>tr.thead>td b{line-height:28px}tr.thead,.table-title,.panel-body form+table.table-hardcoded>tbody>tr.thead>td{font-size:18px !important;height:35px;padding:1px 10px 3px 10px !important;text-align:center;vertical-align:baseline !important;color:#282828 !important;border-top:solid #eaeaea !important;border-top-width:2px !important;border-top-color:#f0f0f0 !important;border-right-color:#f0f0f0 !important;border-bottom:1px solid rgba(216,216,216,.24) !important;border-left-color:#f0f0f0 !important;background-color:#f6f6f6 !important}.col_header.opener_table_cell_style_small{background-color:#f6f6f6 !important}tr.thead td b{font-size:18px !important;line-height:25px !important}tr.thead{border-right:1px solid #eaeaea !important;border-left:1px solid #eaeaea !important}td[bgcolor='#99CCFF']{background-color:transparent}tr.thead+tr[bgcolor='#feffff']:last-child{border:1px solid #eaeaea}form .table .table-hardcoded tr.thead,form .sub_table_container .table-hardcoded tr.thead{height:auto}.table-title.left{text-align:left !important}.clear-formatting *,.clear-formatting{font-size:inherit !important}table.table.table-striped.table-condensed>thead>tr:first-child,table.dataTable{border-top:2px solid #f2f2f2 !important;border-right:1px solid #eaeaea !important;border-left:1px solid #eaeaea !important}td.col_value>table.table.table-striped.table-condensed>thead>tr{border-top:2px solid #f0f0f0 !important}.custom_table_head,td.col_value>table.table.table-striped.table-condensed>thead>tr>th{font-size:14px;font-weight:normal !important;line-height:14px;background-color:#f6f6f6}.panel-body form table.table.table-striped.table-condensed{margin-top:2px}body:not(.csf) table+br{display:block;margin-top:0;content:''}button[type='button'][onclick^='multi_']+br+button[type='button'][onclick^='multi_']{margin-top:-1px}button[type='button'][onclick^='multi_']{margin-right:10px;margin-left:10px}.ui_table,.table{margin-top:4px !important;margin-bottom:4px !important}.table>thead>tr>th{border-bottom:0}tr[bgcolor='#feffff']>td:last-child{padding-right:2px}.table.table-striped>tbody,.table-hardcoded>tbody>tr>td>.table-hardcoded>tbody,.table.table-striped.table-condensed .opener_container .table-hardcoded table,.panel-body form+table.table-hardcoded tbody tr[bgcolor='#feffff'],.panel-body form+table.table-hardcoded tbody tr[bgcolor='#ffffff']{border:1px solid #eaeaea !important}.table-hardcoded>tbody>tr>td.col_value>.table-hardcoded>tbody,.table-hardcoded>tbody>tr>td.col_label>.table-hardcoded>tbody{border:1px solid transparent !important}.table.table-striped.table-condensed .opener_container .table-hardcoded table,.ui_table,.ui_table_body,.ui_table_row,.ui_value{overflow-x:auto;overflow-y:hidden;width:100%;border-spacing:0;border-collapse:collapse;vertical-align:middle !important;border:0;border-color:transparent;-ms-overflow-style:0;-webkit-overflow-scrolling:touch}.table.table-striped.table-condensed tbody tr td.opener_container .table-hardcoded tr,.table.table-striped.table-condensed tbody tr td.opener_container .table-hardcoded tr>td.col_label,.table.table-striped.table-condensed tbody tr td.opener_container .table-hardcoded tr>td.col_value,.col_label,.col_value,.table-subtable tbody tr td.no-border,.table-subtable tbody tr td.col_label,.table-subtable tbody tr td.col_value,.panel-body .table tbody,.table table table td{border-spacing:0;border-collapse:collapse;vertical-align:middle;border:0;border-color:transparent}.ui_buttons_hr>td>table.table-hardcoded>tbody>tr>td[nowrap]{font-size:22px;padding:10px 0 4px;text-align:center;color:#333;border:none !important;background:none !important}.ui_buttons_label,.ui_buttons_value,.table table tbody tr td.col_label *:not(i):not(.btn):not(.awobject):not(input):not(code):not(.ui_select):not(.form-control):not([type='button']),.table table tbody tr td.col_value *:not(i):not(.btn):not(.awobject):not(input):not(code):not(.ui_select):not(.form-control):not([type='button']),.ui_value table tr td{vertical-align:baseline}.ui_buttons_row{height:46px}.ui_buttons_row button{margin-right:6px}.ui_buttons_value table tr td{padding-bottom:4px;padding-left:4px}.ui_checked_checkbox{width:auto !important;vertical-align:middle}.ui_form>.table-responsive>.table.table-subtable>tbody>tr>td>table>tbody tr{font-size:16px;padding:2px 5px;color:#333;border-color:#f0f0f0;background:0;background-color:#f5f5f5}.ui_form[action^='delete_mons'] tr.ui_checked_columns>td:last-child{padding-top:2px;padding-left:20px}.ui_form[action^='reply_mail']>input+select,.ui_form[action^='reply_mail']>input+input,.ui_form[action^='delete_mail']>input+select,.ui_form[action^='delete_mail']>input+input{margin:auto 2px}.ui_form[action^='send_mail'] table.table-hardcoded>tbody>tr>td.col_value b,.ui_form[action^='savekey'] table.table-hardcoded>tbody>tr>td.col_value b{font-size:13px;font-weight:normal}.ui_grid_cell:first-child .ui_form{padding-top:6px;padding-left:4px}.ui_grid_cell:not(:first-child) .table{padding-left:2px}.ui_grid_row{height:10px}.ui_grid_table,.ui_form table.table{width:100%}.ui_label{padding:10px 5px;border-collapse:collapse;text-align:left;vertical-align:middle;white-space:nowrap}.ui_label b,.ui_buttons_table.table-hardcoded tbody>tr.ui_buttons_row td.ui_buttons_label{padding-right:10px}.ui_table td,.ui_table tbody{margin:0;padding:4px 0;border-spacing:0}.ui_table thead>tr>th,.ui_table tbody>tr>th,.ui_table tfoot>tr>th,.ui_table thead>tr>td,.ui_table tbody>tr>td,.ui_table tfoot>tr>td{line-height:1.42857143;padding:8px;border-spacing:0;vertical-align:middle !important;border-top:1px solid #eaeaea}table.table thead tr th{padding-top:8px;padding-bottom:8px}.ui_table_row{margin:0;padding:0;border-spacing:0;border-collapse:collapse}.ui_up_down_arrows_down{margin-bottom:2px}.ui_up_down_arrows_down,.ui_up_down_arrows_up{margin-left:10px}.ui_up_down_arrows_up{margin-bottom:-4px}.ui_up_down_arrows_up,.ui_up_down_arrows_down{max-width:24px;max-height:24px}.ui_value{width:100%;text-align:left;vertical-align:middle;white-space:nowrap}.ui_value label:last-child{margin-right:15px}::-moz-focus-inner{border:0 !important}:focus,:active{outline:none !important}a#hiddenopener_docs+a+br+div.opener_shown>table.table-hardcoded{margin-bottom:7px;border:1px solid #eaeaea}a#hiddenopener_docs+a+br+div.opener_shown>table.table-hardcoded>tbody>tr>td{padding:4px 10px}a#product-menu{padding:0}.text-force-link,.text-force-link-hover:hover{color:#1d599d !important}a,.ui_checked_checkbox,.panel-body .ui_table tbody tr td a b{text-decoration:none;color:#1d599d}i[data-port-href]{cursor:alias}.badge-success{color:#fff !important;border-color:#2c8828 !important;background-color:#349e30 !important}.badge-danger{color:#fff !important;border-color:#c9302c !important;background-color:#d51b16 !important}.bg-dark-red{background-color:#c9302c}.bg-dark-red:hover{background-color:#ba2421}.bg-dark-yellow{background-color:#a46813}.bg-dark-yellow:hover{background-color:#966013}.bg-light-grey{background-color:#eee}.bg-light-grey:hover{background-color:#eee}.bg-white{background-color:#fff}.bg-white:hover{background-color:#fff}.bg-semi-transparent{background-color:rgba(74,74,74,.17) !important}.bg-primary{background-color:#3391e2 !important}.bg-success{background-color:#dff0d8 !important}.bg-info{background-color:#d9edf7 !important}.bg-warning{background-color:#fcf8e3 !important}.bg-danger{background-color:#f2dede !important}.bg-primary-dark{background-color:#698ba8 !important}.bg-success-dark{background-color:#b3cbaa !important}.bg-info-dark{background-color:#95abb6 !important}.bg-warning-dark{background-color:#b0a878 !important}.bg-danger-dark{background-color:#c29393 !important}.badge{padding:2px 7px 3px 7px}.badge-custom{font-size:12px;line-height:1;display:inline-block;min-width:10px;padding:2px 7px 3px 7px;text-align:center;vertical-align:baseline;white-space:nowrap;color:#444;border-radius:10px;background-color:#f0f0f0}tr:hover .badge-drivestatus{color:#333;background-color:#fff}.background--bordered{border-top:4px solid rgba(0,0,0,.20)}.background-success{background-color:#1e8e04}.background-primary{background-color:#1886bd}.background-info{background-color:#4fa7c1}.background-warning{background-color:#b5791c}.background-danger{background-color:#be3c39}.modal-header.background-success button,.modal-header.background-success h4,.modal-header.background-primary button,.modal-header.background-primary h4,.modal-header.background-info button,.modal-header.background-info h4,.modal-header.background-warning button,.modal-header.background-warning h4,.modal-header.background-danger button,.modal-header.background-danger h4{color:#f7f7f7}.text-black{color:#000 !important}.text-white{color:#fff}.text-lighter{color:#ccc}.text-light{color:#999}.text-semi-light{color:#888}.text-semi-dark{color:#777}.text-dark{color:#444}.text-darker{color:#333}.text-semi-dark.text-dark-hoverd:hover,.text-dark.text-dark-hoverd:hover{color:#d43f3a}.text-normal,a.text-normal{color:#666}.sub_table_container.table-hardcoded tr td[width='25%']>a,a.opener_trigger,a:focus,a:hover,a.text-normal a:focus,a.text-normal:hover{color:#1d599d}a.ui_link[href^='create_form']:not(.ui_link_replaced),a.ui_link[href^='edit_log']:not(.ui_link_replaced){margin:7px auto}a:focus,a:hover{text-decoration:none;outline:0}a.link_hover_effect{color:#333}a.link_hover_effect.active,a.link_hover_effect:active,a.link_hover_effect:hover{color:#1d599d}a:hover,a:active{color:#1d599d}a.no_effect,a.no_effect.active,a.no_effect:active,a.no_effect:hover{color:#333}.font-size-120p{font-size:120%}.font-size-90p{font-size:90%}.font-size-80p{font-size:80%}.font-size-75p{font-size:75%}.font-style-normal{font-style:normal !important}html:not(.session_login),body:not(.session_login){font-size:13px;line-height:1.42857143;color:#333;background-color:#f0f0f0}.messenger-message-inner,.file-manager .jsPanel-hdr h3,body:not(.session_login),html:not(.session_login),.tooltip,.popover{font-family:'Roboto'}.font-family-default{font-family:'Roboto'}body,html{height:100%;margin:0;padding:0}body[data-current-product='usermin'] .ui_grid_table.table-hardcoded.table.table-striped.table-condensed.table-subtable,body[data-current-product='usermin'] .ui_buttons_table.table-hardcoded.table.table-striped.table-condensed.table-subtable{border:none !important}body[data-current-product='usermin'] table.ui_grid_table tr.ui_grid_row,body[data-current-product='usermin'] table.ui_buttons_table tr.ui_buttons_row{background:0}textarea+br+input[type='submit'].btn,.table-hardcoded .table-condensed input[type='radio']+label.radio{margin-top:5px !important}input.submitter+input.submitter,form.ui_form>.dataTables_wrapper>table.table.table-striped>tbody tr.ui_checked_columns>td[valign='top']>input[type='checkbox'],form.ui_form>table.table.table-striped>tbody tr.ui_checked_columns>td[valign='top']>input[type='checkbox']{margin-left:3px !important}form.ui_form>table.table>table>tbody>tr>td .ui_select{margin:0 4px}html,body{height:100%;-webkit-overflow-scrolling:touch}html{overflow:hidden}body{overflow:auto}html>head+body.modal-open{overflow:hidden !important}img{max-width:100%}img[src$='empty.gif']{padding:0 7px 0 4px}img[src='/images/close.gif']:before,img[src='/images/closed.gif']:before{font-family:'Authentic';font-size:15px;content:'\f088';text-decoration:none;color:#666}img[src='/images/close.gif']:before{content:'\f085'}img[src='/images/open.gif'],img[src='/images/close.gif'],img[src='/images/closed.gif']{content:' '}img[src='/images/open.gif']:before{font-family:'Authentic';font-size:15px;content:'\f088';text-decoration:none;color:#666}body.virtual-server img[src*='images/tick.gif']{visibility:hidden;pointer-events:none}input.btn-danger{color:#fff;border-color:#d43f3a;background-color:#d9534f}input.btn-danger .badge{color:#d9534f;background-color:#fff}.ui_radio_columns>td[nowrap]>label[for]>.ui_img{width:8px}input.btn-danger.disabled,input.btn-danger[disabled],fieldset[disabled] input.btn-danger,input.btn-danger.disabled:hover,input.btn-danger[disabled]:hover,fieldset[disabled] input.btn-danger:hover,input.btn-danger.disabled:focus,input.btn-danger[disabled]:focus,fieldset[disabled] input.btn-danger:focus,input.btn-danger.disabled:active,input.btn-danger[disabled]:active,fieldset[disabled] input.btn-danger:active,input.btn-danger.disabled.active,input.btn-danger[disabled].active,fieldset[disabled] input.btn-danger.active{border-color:#d43f3a;background-color:#d9534f}input.btn-danger:hover,input.btn-danger:focus,input.btn-danger:active,input.btn-danger.active,.open>.dropdown-toggleinput.btn-danger{color:#fff;border-color:#ac2925;background-color:#c9302c}input.btn-info{color:#fff;border-color:#46b8da;background-color:#5bc0de}input.btn-info .badge{color:#5bc0de;background-color:#fff}input.btn-info.disabled,input.btn-info[disabled],fieldset[disabled] input.btn-info,input.btn-info.disabled:hover,input.btn-info[disabled]:hover,fieldset[disabled] input.btn-info:hover,input.btn-info.disabled:focus,input.btn-info[disabled]:focus,fieldset[disabled] input.btn-info:focus,input.btn-info.disabled:active,input.btn-info[disabled]:active,fieldset[disabled] input.btn-info:active,input.btn-info.disabled.active,input.btn-info[disabled].active,fieldset[disabled] input.btn-info.active{border-color:#46b8da;background-color:#5bc0de}input.btn-info:hover,input.btn-info:focus,input.btn-info:active,input.btn-info.active,.open>.dropdown-toggleinput.btn-info{color:#fff;border-color:#269abc;background-color:#31b0d5}input.btn-primary{color:#fff;border-color:#357ebd;background-color:#428bca}input.btn-primary .badge{color:#428bca;background-color:#fff}input.btn-primary.disabled,input.btn-primary[disabled],fieldset[disabled] input.btn-primary,input.btn-primary.disabled:hover,input.btn-primary[disabled]:hover,fieldset[disabled] input.btn-primary:hover,input.btn-primary.disabled:focus,input.btn-primary[disabled]:focus,fieldset[disabled] input.btn-primary:focus,input.btn-primary.disabled:active,input.btn-primary[disabled]:active,fieldset[disabled] input.btn-primary:active,input.btn-primary.disabled.active,input.btn-primary[disabled].active,fieldset[disabled] input.btn-primary.active{border-color:#357ebd;background-color:#428bca}input.btn-primary:hover,input.btn-primary:focus,input.btn-primary:active,input.btn-primary.active,.open>.dropdown-toggleinput.btn-primary{color:#fff;border-color:#285e8e;background-color:#3071a9}b.btn.btn-success.btn-tiny{color:#fff !important;border-color:#2c8828 !important;background-color:#349e30 !important}b.btn.btn-success.btn-tiny:hover{color:#fff !important;border-color:#256d22 !important;background-color:#32942f !important}input.btn-success{color:#fff;border-color:#2c8828 !important;background-color:#349e30 !important}input.btn-success .badge{color:#5cb85c;background-color:#fff}input.btn-success.disabled,input.btn-success[disabled],fieldset[disabled] input.btn-success,input.btn-success.disabled:hover,input.btn-success[disabled]:hover,fieldset[disabled] input.btn-success:hover,input.btn-success.disabled:focus,input.btn-success[disabled]:focus,fieldset[disabled] input.btn-success:focus,input.btn-success.disabled:active,input.btn-success[disabled]:active,fieldset[disabled] input.btn-success:active,input.btn-success.disabled.active,input.btn-success[disabled].active,fieldset[disabled] input.btn-success.active{border-color:#4cae4c;background-color:#5cb85c}input.btn-success:hover,input.btn-success:focus,input.btn-success:active,input.btn-success.active,.open>.dropdown-toggleinput.btn-success{color:#fff;border-color:#398439;background-color:#449d44}input.btn-warning{color:#fff;border-color:#eea236;background-color:#f0ad4e}input.btn-warning .badge{color:#f0ad4e;background-color:#fff}input.btn-warning.disabled,input.btn-warning[disabled],fieldset[disabled] input.btn-warning,input.btn-warning.disabled:hover,input.btn-warning[disabled]:hover,fieldset[disabled] input.btn-warning:hover,input.btn-warning.disabled:focus,input.btn-warning[disabled]:focus,fieldset[disabled] input.btn-warning:focus,input.btn-warning.disabled:active,input.btn-warning[disabled]:active,fieldset[disabled] input.btn-warning:active,input.btn-warning.disabled.active,input.btn-warning[disabled].active,fieldset[disabled] input.btn-warning.active{border-color:#eea236;background-color:#f0ad4e}input.btn-warning:hover,input.btn-warning:focus,input.btn-warning:active,input.btn-warning.active,.open>.dropdown-toggleinput.btn-warning{color:#fff;border-color:#d58512;background-color:#ec971f}.btn-link-bordered:hover,.btn-link-bordered:focus,.btn-link-bordered:active,.btn-link-bordered.active,.btn-link-bordered{border:1px solid rgba(51,122,183,.25)}.btn-link-bordered:hover,.btn-link-bordered:focus{text-decoration:none;border:1px solid rgba(51,122,183,.45)}.ui_checked_columns:hover a,.ui_checked_columns:hover .btn{cursor:default !important}.btn-transparent:active{-webkit-box-shadow:none;box-shadow:none}.btn.btn-transparent-link{color:#333}.btn.btn-transparent-link:hover{color:#1d599d}.btn.btn-transparent-link-inverse{color:#1d599d}.btn.btn-transparent-link-inverse:hover{color:#333}.btn.btn-transparent-link-force,.btn.btn-transparent-link-force:hover{color:#1d599d}input.form-control{padding-left:6px;background:#fff}input[name='add1'],input[name='add2']{margin-top:2px;margin-bottom:2px}input[name='cipher_list']{min-width:99%}.awobject,.awobject label,.awobject label:after,.awobject label:before{cursor:default !important}input[name='jump']{max-width:50px !important}input[name]:not([type='checkbox']):not([type='radio']):not([type='image']){min-height:28px}.ui_select+input[type='image']{height:14px;border:0}input[type='radio'],input[type='checkbox']{margin:0}label[for='script_whmcs']{margin-right:20px}input[name^='sizefile_'],input[name^='size']{max-width:90px !important}label.radio+input[type='text'].form-control,label.checkbox+input.form-control{margin-left:0}li>a[target='page']{font-size:14px}pre{font-family:monospace;font-size:12px;overflow:auto;margin:0;white-space:pre;word-wrap:normal;border:0;border:1px solid #e4e4e4;border-radius:0}pre+form,form+pre{margin-top:10px;margin-bottom:10px}pre+center{margin-top:6px}.clear-formatting pre{white-space:pre-wrap}select+input{height:28px;margin-top:-3px;margin-left:3px}select#CSFlognum,select.ui_select,select{font-size:13px;display:inline-block;max-height:28px;padding:3px 4px 4px 4px;cursor:pointer;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;vertical-align:middle !important;color:#333;border:1px solid #e8e8e8;border-radius:0;outline:0;background:#f8f8f8;background-color:#fff;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}select.input-sm:not(.heighter-34){padding:2px 4px 3px 4px}[data-uri*='settings-upload.cgi'] button.file_chooser_button_preview{display:inline;width:40px;height:28px;margin-right:0 !important;margin-bottom:2px !important;margin-left:2px;vertical-align:bottom}[data-uri*='settings-upload.cgi'] button.file_chooser_button_preview i{font-size:12px;pointer-events:none}.file_chooser_button_preview.disabled,.file_chooser_button_preview.disabled i,.file-input-wrapper.disabled,.file-input-wrapper.disabled i,select[disabled]{background-color:#eee !important}input[type='submit']+select{font-size:14px;height:34px;max-height:34px}select#CSFlognum:focus,select.ui_select:focus,select:focus{border-color:#66afe9 !important;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) !important;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) !important}select.ui_select:not(multiple),select:not(multiple){min-height:28px}select[multiple]{min-height:120px !important}select[multiple][size='7'].ui_select,select[multiple][size='7']{min-height:144px !important}select[multiple][size='12'].ui_select,select[multiple][size='12']{min-height:228px !important}label.select-styled.fstreched,label.select-styled.fstreched select{width:100%}label.select-styled select{font-size:13px;display:inline-block;height:28px;min-height:auto;max-height:auto;margin:0;padding:0 6px;cursor:pointer;color:#888;border:1px solid #e8e8e8;border-radius:0;outline:0;background:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}label.select-styled select option{font-size:13px}@media screen and (-webkit-min-device-pixel-ratio:0){label.select-styled select{padding-right:18px}}label.select-styled{font-weight:normal;position:relative}label.select-styled:after{font:10px monospace;position:absolute;top:7px;right:4px;padding:0 0 2px;content:'<>';-webkit-transform:rotate(90deg);transform:rotate(90deg);pointer-events:none;color:#bbb;border-bottom:1px solid #e8e8e8}label.select-styled:before{position:absolute;top:0;right:6px;display:block;width:20px;height:20px;content:'';pointer-events:none;background:transparent}label.select-styled.select-styled-small select option,label.select-styled.select-styled-small select{font-size:11px}label.select-styled.select-styled-small select{line-height:20px;height:22px;padding:0 6px}label.select-styled.select-styled-small:after{font:9px monospace;top:5px;right:4px}label.select-styled.select-styled-no-border select{border:1px solid transparent}label.select-styled.select-styled-small.select-styled-no-icon:after{display:none}span>.submitter+span>.submitter,.submitter+.submitter{margin-right:0 !important;margin-left:0 !important}font[color='#000000'],font[color='0000FF']{color:#333}table tbody tr td.col_value .ui_opt_textbox{height:28px}table tr:not([role='row']) td.td_tag{word-break:break-all;-ms-word-break:break-all;-webkit-hyphens:auto;hyphens:auto;-ms-hyphens:auto}form[action='view_table.cgi'] table tr:not([role='row']) td.td_tag{word-break:normal;-ms-word-break:normal}form[action='view_table.cgi'] table tr:not([role='row']) td.td_tag>.table-hardcoded{width:100%}form[action='view_table.cgi'] table tr:not([role='row']) td.td_tag>.table-hardcoded .thead td{text-align:left !important}table tr td input{margin-right:0;border:0}table tr td label{font-weight:normal;color:#333}.ui_checked_columns td[nowrap]>label{padding-right:2px}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{padding-left:20px;background-position:left center}.panel-body>h3{font-size:16px;font-weight:normal}table.table table table.table tbody td{border-top:1px solid #eaeaea}table.table tbody tr td>table tbody tr td[nowrap] p br,.sub_table_container.table-hardcoded tr td.col_value select.ui_select+br{line-height:30px}table.ui_buttons_table>tbody>tr.ui_buttons_row>td.ui_buttons_label>img{margin-right:10px}td.ui_buttons_label input.ui_textbox+input[onclick^='ifield'],td.ui_buttons_label input.ui_textbox+input[onclick^='window.ifield']{margin-bottom:5px !important}.sub_table_container+.opener_sub_container .opener_shown{margin-top:-1px !important}.sub_table_container+.opener_sub_container{margin-top:0 !important}.opener_sub_container .table-hardcoded{background-color:#fff !important}.opener_sub_container .table-hardcoded tr{border:0 !important}input[type='submit'].btn{margin-top:1px !important;margin-bottom:1px !important}.mysql td[align='right'] button[type='button'].btn.ui_form_end_submit,.postgresql td[align='right'] button[type='button'].btn.ui_form_end_submit,.firewall td[align='right'] input[type='submit'].btn,.firewall6 td[align='right'] input[type='submit'].btn{margin-top:2px !important}@-moz-document url-prefix(){.mysql td[align='right'] button[type='button'].btn.ui_form_end_submit,.postgresql td[align='right'] button[type='button'].btn.ui_form_end_submit,.firewall td[align='right'] input[type='submit'].btn,.firewall6 td[align='right'] input[type='submit'].btn{margin-top:0 !important}}.postgresql[data-uri*='view_table.cgi'] input[name='for'],.mysql[data-uri*='view_table.cgi'] input[name='for']{margin-right:3px;vertical-align:inherit}.postgresql[data-uri*='view_table.cgi']>.ui_form_end_submit,.mysql[data-uri*='view_table.cgi']>.ui_form_end_submit{line-height:10px !important}.table-hardcoded td.col_value>input.form-control.ui_textbox+select.ui_select{vertical-align:middle !important}hr.menu{width:92%;height:0;border:0;border-bottom:1px solid rgba(255,255,255,.09) !important}td.ui_grid_cell>form.ui_form[action^='search_form.cgi'],td.ui_grid_cell>form.ui_form[action^='delete_all.cgi'],td.ui_grid_cell>form.ui_form[action^='list_mail']{margin-top:5px;margin-right:5px}textarea,textarea.form-control{font-size:13px;width:100%;min-height:10em;padding-left:6px;color:#333 !important;border:1px solid #eaeaea}textarea[name='data']{font-family:monospace;line-height:normal;width:100%;min-width:100%}textarea[name='to'],textarea[name='cc'],textarea[name='bcc']{max-width:60%;height:2.5em;min-height:2.5em;max-height:2.5em}tr.tr_tag>td.td_tag>label{height:26px;vertical-align:middle}tr.ui_buttons_hr>td>table.table-hardcoded>tbody{border:none !important;border-bottom:1px solid #eaeaea !important}table.table-hardcoded tr[bgcolor]>td[nowrap]>p>input,table.table-hardcoded tr[bgcolor]>td[nowrap]>input,table.table-hardcoded tr[bgcolor]>td[nowrap],table.table-hardcoded tr[bgcolor]>td[nowrap]>p{font-size:13px !important}tr.ui_grid_row>td.ui_grid_cell input[type='checkbox'],tr.ui_grid_row>td.ui_grid_cell input[type='radio'],tr.tr_tag>td.td_tag>input{height:14px}tr.tr_tag>td.td_tag>textarea{margin-top:2px}td.ui_buttons_label>input.submitter.ui_submit+select,td.ui_buttons_label>input.submitter.ui_submit{margin-top:2px !important;margin-bottom:2px !important}td.opener_container,td.ui_grid_cell{padding:0;vertical-align:middle !important}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:0}#update_notice ul>li>hr{margin-top:6px;margin-bottom:6px}.radio,.checkbox{margin-top:2px;margin-bottom:2px}.container,.container-fluid{margin-top:15px}.container-fluid-loading{margin-top:15px;margin-right:auto;margin-left:auto;padding-right:15px;padding-left:15px;cursor:progress}.container-fluid-loading .fa{font-size:28px;position:absolute;margin-top:3px;margin-left:-34.5px;cursor:progress}.container-fluid-loading:before,.container-fluid-loading:after{display:table;content:' '}.container-fluid-loading:after{clear:both}.panel-loading{margin-bottom:20px;border:1px solid transparent;border-top-width:4px;border-radius:4px;background-color:#fff}.panel-loading .cspinner{position:relative;top:40%;left:49%}.panel-loading .cspinner .cspinner-icon{width:16px;height:16px;margin-right:7px}.panel-default-loading{border-color:rgba(150,150,150,.45);border-top-color:rgba(228,228,228,.83);border-radius:0;-webkit-box-shadow:1px 2px 2px rgba(0,0,0,.02);box-shadow:1px 2px 2px rgba(0,0,0,.02)}.panel-heading-loading{padding:10px 15px;border-bottom:1px solid transparent;border-radius:0 !important;border-top-left-radius:3px;border-top-right-radius:3px}.panel-default-loading>.panel-heading-loading{color:#333;border-color:#ddd;background-color:#f5f5f5}.panel-default-loading>.panel-heading-loading span{font-size:24px;margin-left:.5px}.panel-body-loading{overflow:auto;padding-top:12px;padding-bottom:7px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.050);box-shadow:inset 0 1px 1px rgba(0,0,0,.050)}body .container-fluid{pointer-events:none;opacity:0}::-webkit-scrollbar-track-piece{-webkit-border-radius:0;background-color:#f0f0f0}::-webkit-scrollbar{width:9px;height:9px}::-webkit-scrollbar-thumb{height:50px;border:2px solid #ddd;-webkit-border-radius:4px;outline:2px solid #ddd;outline-offset:-2px;background-color:#bbb}::-webkit-scrollbar-thumb:hover{height:50px;-webkit-border-radius:4px;background-color:#6180a9}select.ui_select:not(.heighter-34)+button[type='button'],input[onclick*='ajaxterm'],.file_chooser_button+input,.form-control.ui_textbox+input,.table-hardcoded tbody tr td .submitter,select+input[type='button'],.heighter-28:not(.ui_form_end_submit),.heighter-28-force,.ui_form_end_submit.heighter-28-force,.ui_form_end_submit.heighter-28{font-size:13px !important;line-height:17px !important;height:28px !important;max-height:28px !important;padding-top:0 !important;padding-bottom:2px !important}.heighter-28-force{line-height:0}.heighter-28-force span.cspinner_container{font-size:21px}.ui_form_end_submit.heighter-28>span.cspinner_container+span[data-entry],.ui_form_end_submit.heighter-28>span.cspinner_container+span[data-entry],.ui_form_end_submit.heighter-28>span:not([data-entry]),.ui_form_end_submit.heighter-28 i+span[data-entry],.ui_form_end_submit.heighter-28 i,.ui_form_end_submit.heighter-28 span[data-entry],.ui_form_end_submit>span[data-entry]{vertical-align:baseline !important}.ui_form_end_submit>span.cspinner_container+span[data-entry],.ui_form_end_submit>span.cspinner_container+span[data-entry],.ui_form_end_submit>span:not([data-entry]),.ui_form_end_submit i+span[data-entry],.ui_form_end_submit i{vertical-align:middle !important}input.btn.heighter-34:not(.btn-lg):not(.ui_form_end_submit),.btn.heighter-34:not(.btn-lg):not(.ui_form_end_submit),.table-hardcoded tbody tr td .submitter.heighter-34:not(.btn-lg):not(.ui_form_end_submit),.heighter-34:not(.btn-lg):not(.ui_form_end_submit):not([data-command='true']):not(.sidebar-search){font-size:14px !important;line-height:18px !important;height:34px !important;min-height:34px !important;max-height:34px !important}label+select,label+input[type='text']{max-width:40%}iframe[src*='proxy.cgi']{height:600px !important;min-height:600px !important}.panel-body form.ui_form[action='save_pass.cgi'] .table-responsive .table-subtable tr td .sub_table_container tbody tr td.col_value br+input+label>br{display:none}td[nowrap] input[type='radio'],td[nowrap] input[type='checkbox']{margin-top:3px !important;margin-bottom:3px !important}label+input:not([style*='width: 100%']){margin-left:4px !important}label.radio+input[style*='width: auto']{width:100% !important;margin-left:0 !important}form>.heighter-34:not(.btn-lg):not(.ui_form_end_submit)+.file_chooser_button_attached{margin-top:16px;margin-left:-30px}td>.heighter-34:not(.btn-lg):not(.ui_form_end_submit),form>.heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-right:2px !important;margin-left:0 !important}td>.heighter-34:not(.btn-lg):not(.ui_form_end_submit)+.file_chooser_button_attached{margin-top:18px;margin-left:-28px}input.heighter-34:not(.btn-lg):not(.ui_form_end_submit)+select.heighter-34{margin-left:3px !important}input[name]:not([type='checkbox']):not([type='radio'])+.awobject,input[type='text']+.awobject{margin-left:4px}.btn.heighter-34:not(.btn-lg):not(.ui_form_end_submit)+.awobject,select+.awobject,.file_chooser_button+.awobject{margin-left:10px}form[action*='send_mail.cgi'] div.table-responsive+div.table-responsive{margin-top:10px}form[action*='send_mail.cgi'] .col_value>textarea+input[onclick*='chooser']{min-height:34px;margin-top:3px !important}form[action*='send_mail.cgi'] textarea+input[onclick*='chooser']+.file_chooser_button_attached{margin-top:16px !important}form[action*='delete_mail.cgi'] input.heighter-34[name='mfolder1']:not(.btn-lg):not(.ui_form_end_submit)+input[onclick*='chooser']+.file_chooser_button_attached{margin-top:18px !important}form[action*='reply_mail.cgi'] input.heighter-34:not(.btn-lg):not(.ui_form_end_submit)+select[name='mode2']{margin-top:3px !important}form[action='save_categories.cgi'] .td_tag>label.radio{margin-top:3px !important;margin-bottom:-3px !important}label{margin-bottom:0}.mce-container.mce-panel{border:0 !important}#mceu_2-open>i{vertical-align:top !important}#mceu_2-open>span{vertical-align:baseline !important}.mce-btn button>span{font-size:13px !important;line-height:0 !important}.mce-btn button{max-height:28px !important;padding:4px 8px !important}.mce-ico{font-size:14px !important;line-height:14px !important;width:14px !important;height:14px !important}#DataTables_Table_0>tbody>tr.ui_checked_columns>td.ui_checked_checkbox>div.awobject{margin-top:-1px !important}.col_value>table .tr_tag .td_tag .awobject{margin-top:-5px !important}table table .col_value>table .tr_tag{background-color:#fff !important}table table .col_value>table .tr_tag .td_tag table{width:auto !important}.panel-body td b .awobject{font-weight:normal !important;margin-bottom:4px !important}td.ui_checked_checkbox{text-align:left !important}.favorites-menu-close{position:fixed;z-index:11011;top:0;right:100%;width:200px;height:200px;cursor:pointer;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:top right;transform-origin:top right;background:#c9302c}.favorites-menu-close .favorites-menu-bar{position:absolute;width:100%;height:1px;-webkit-transform-origin:center;transform-origin:center;background:rgba(250,250,250,1)}.favorites-menu-close .favorites-menu-bar:first-child{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.favorites-menu-close .favorites-menu-bar:last-child{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.favorites-menu-close .favorites-menu-icon{top:36px;right:6px;left:auto;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.favorites-menu-icon{position:absolute;z-index:11003;top:58px;left:15px;width:16px;pointer-events:none}.favorites-menu-outer{position:fixed;z-index:11000;top:0;left:100%;overflow:hidden;width:100%;height:100%;background:#334111}.favorites-menu-outer>nav.favorites-menu ul{top:2%}.favorites-menu-outer.hover{left:0;overflow:auto;margin-left:0;background:rgba(56,99,134,.90)}.favorites-menu-outer.hover>nav.favorites-menu ul{left:0}.favorites-menu-outer.hover ~ .favorites-menu-close{margin-right:-50px}nav.favorites-menu ul{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}nav.favorites-menu li{margin-top:5px;margin-bottom:5px;padding:5px 20px 5px 20px;list-style:none;text-align:center}.file-manager .tabs-top>ul.nav li.sortable-placeholder,nav.favorites-menu li.sortable-placeholder{height:54px;border:1px dashed #ccc}.file-manager .tabs-top>ul.nav li.sortable-placeholder{width:80px;height:28px}.file-manager .tabs-top>ul.nav li.sortable-dragging,nav.favorites-menu li.sortable-dragging{border:1px dashed #ccc;background:0}nav.favorites-menu li span.f__c{padding-right:12px}nav.favorites-menu li>span:not(.f__c),nav.favorites-menu li a{font-size:2em;display:block;margin:0 auto;color:rgba(255,255,255,.8)}nav.favorites-menu li a:not(.disabled):hover{color:#e93f3a}nav.favorites-menu ul{position:absolute;left:10%;width:100%;padding:0}nav.favorites-menu .favorites-menu-content{font-weight:300 !important;color:white}nav.favorites-menu .favorites-menu-content>li>h1{font-weight:300 !important;margin-left:-30px}.favorites-menu-content li.favorites-title sup{display:inline !important}.favorites-border{border:2px dotted #386386}#headln2l{width:25%;text-align:left}#headln2r a,#headln2l a{margin-bottom:3px}#headln2l a+a,#headln2r a+a{margin-bottom:1px}#headln2c{font-size:14px;width:50%;text-align:center}#headln2c span[data-main_title]{font-size:24px;display:inline-block}#headln2c span[data-main_title]+br{display:block;margin-top:-3px;content:''}#headln2c>i.favorites{position:absolute;margin-top:3px;margin-left:-35px}.browser_safari #headln2c>i.favorites{position:relative}.xcustom-favorites.fa.fa-star,#headln2c>.fa.fa-star{color:#eaa747 !important}.xcustom-favorites.fa-star:not(.dummy):hover:before,#headln2c .favorites.fa-star:not(.dummy):hover:before{content:'\f091';color:#5c5c5c}.xcustom-favorites.fa-star-o:not(.dummy):hover,#headln2c .favorites.fa-star-o:not(.dummy):hover{color:#eba94c}#headln2r{width:25%;text-align:right}.menu-exclude-link>[class^='wbm-']:before,.menu-exclude-link>[class*=' wbm-']:before{font-size:24px;vertical-align:middle}.-helper.__helper,.cursor-pointer,.cursor-pointer a.ui_link{cursor:pointer !important}.cursor-alias{cursor:alias !important}.cursor-na{cursor:not-allowed !important}.sub_table_container.table-hardcoded tr,.sub_table_container.table-hardcoded td{cursor:default}.cursor-default{cursor:default !important}label.checkbox+span+.file_chooser_button,label.radio+span+.file_chooser_button{margin-left:-1px}.file_chooser_button>.fa.fa-files-o{margin-top:-2px}span+.file_chooser_button>.fa.fa-files-o{margin-top:-2px !important}form[action='save_uconfigs.cgi'] label.radio+input[style*='width: auto']{max-width:20%}span+input[type='button']+.fa-files-o.file_chooser_button_attached{margin-top:12px !important}span+input[type='button']+.fa-calendar.file_chooser_button_attached{margin-top:10px !important}span.ui_data+input[type='button']+.fa-calendar.file_chooser_button_attached{margin-top:10px !important}.hl-aw{background-color:#ffffe9 !important}.xqcontent-forced .hl-aw{background-color:initial !important}form[action='save_newshells.cgi'] .hl-aw{background-color:transparent !important}form[action='save_newshells.cgi'] .hl-aw:nth-of-type(odd){background-color:#f7f7f7 !important}table>form[action='list_logins.cgi']+tbody>tr.ui_buttons_row td{width:50% !important}.panel-body>form[action='change_session.cgi']>.table-hardcoded input[name='blockuser_failures'],.panel-body>form[action='change_session.cgi']>.table-hardcoded input[name='blockhost_failures'],.panel-body>form[action='change_session.cgi']>.table-hardcoded input[name='blockuser_time'],.panel-body>form[action='change_session.cgi']>.table-hardcoded input[name='blockhost_time']{max-width:10%}.file-input-wrapper+br+.aradio,.file-input-wrapper+br+.acheckbox{margin-left:10px}form[action='change_ssl.cgi'] .table-hardcoded .awobject+input:last-child{min-width:100% !important;margin-left:0 !important}select[multiple][disabled] option{background-color:#eee !important}b>.acheckbox+a[href*='help.cgi'],b>.aradio+a[href*='help.cgi'],b>a>.acheckbox+label,b>a>.aradio+label{margin-left:6px !important}.awobject+b>a.help_popup,.awobject+a.help_popup{margin-right:10px;margin-left:-8px !important}tr.ui_grid_row .awobject+.ui_link{margin-top:0 !important;margin-bottom:0 !important;margin-left:0}.awobject{margin-right:6px}.lawobject:before,.lawobject:after{pointer-events:none}tr.ui_checked_columns td>.awcheckbox,td.ui_checked_checkbox>.awcheckbox{display:inline-block;margin-top:-1px;margin-left:2px;vertical-align:top}tr.ui_checked_columns td:not(.ui_checked_checkbox):not(.td_tag.cursor-pointer)>.awcheckbox{margin-top:-11px}body[class*='init'][data-uri*='edit_upstart.cgi'] tr.ui_checked_columns td:not(.ui_checked_checkbox)>.awcheckbox{margin-top:0}@-moz-document url-prefix(){tr.ui_checked_columns td>.awcheckbox,td.ui_checked_checkbox>.awcheckbox{margin-left:-1px}}.awcheckbox label{position:relative;display:inline-block;padding-left:2px;vertical-align:baseline}.awcheckbox label::before{position:absolute;top:3px;left:-1px;display:inline-block;width:14px;height:14px;margin-left:-15px;content:'';-webkit-transition:border .15s ease-in-out,color .15s ease-in-out;transition:border .15s ease-in-out,color .15s ease-in-out;border:1px solid #ddd;border-radius:0;background-color:#fff}.awcheckbox label::after{font-size:10px;line-height:1em !important;position:absolute;top:3px;left:-1px;display:inline-block;width:13px;height:13px;margin-top:1px;margin-left:-13px;padding-left:0;pointer-events:none;color:#555}.awcheckbox input[type='checkbox']{z-index:1;vertical-align:middle;opacity:0}.awcheckbox input[type='checkbox']:focus+label::before{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.awcheckbox input[type='checkbox']:checked+label::after{font-family:'Authentic';content:'\f08f'}.awcheckbox input[type='checkbox']:indeterminate+label::after{display:block;width:10px;height:3px;margin-top:7px;margin-left:-16.5px;content:'';border-radius:2px;background-color:#555}.awcheckbox input[type='checkbox']:disabled{opacity:0}.awcheckbox.pointer-events-none input[type='checkbox']+label,.awcheckbox input[type='checkbox']:disabled+label{opacity:.65}.awcheckbox input[type='checkbox']:disabled+label::before{cursor:not-allowed;background-color:#eee}.awcheckbox.awcheckbox-circle label::before{border-radius:50%}.awradio label{position:relative;display:inline-block;margin-top:0 !important;margin-bottom:0 !important;padding-left:0;vertical-align:baseline}.awradio label::before{position:absolute;top:3px;left:0;display:inline-block;width:12px;height:12px;margin-left:-16px;content:'';-webkit-transition:border .15s ease-in-out;transition:border .15s ease-in-out;border:1px solid #ccc;border-radius:50%;background-color:#fff}.awradio label::after{position:absolute;top:6px;left:0;display:inline-block;width:6px;height:6px;margin-left:-13px;content:' ';-webkit-transition:-webkit-transform .1s cubic-bezier(.8,-.33,.2,1.33);transition:-webkit-transform .1s cubic-bezier(.8,-.33,.2,1.33);transition:transform .1s cubic-bezier(.8,-.33,.2,1.33);transition:transform .1s cubic-bezier(.8,-.33,.2,1.33),-webkit-transform .1s cubic-bezier(.8,-.33,.2,1.33);-webkit-transform:scale(0,0);transform:scale(0,0);pointer-events:none;border-radius:50%;background-color:#555}.awradio input[type='radio']{z-index:1;opacity:0}.awradio input[type='radio']:focus+label::before{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.awradio input[type='radio']:checked+label::after{-webkit-transform:scale(1,1);transform:scale(1,1)}.awradio input[type='radio']:disabled{opacity:0}.awradio.pointer-events-none input[type='radio']+label,.awradio input[type='radio']:disabled+label{opacity:.65}.awradio input[type='radio']:disabled+label::before{cursor:not-allowed}.ui_checked_columns td:not(.ui_checked_checkbox):first-child .awcheckbox label::before,.ui_checked_checkbox .awcheckbox label::before{top:2px;width:15px;height:15px}.ui_checked_columns td:not(.ui_checked_checkbox):first-child .awcheckbox label::after,.ui_checked_checkbox .awcheckbox label::after{font-size:11px;top:3px;width:15px;height:15px}.opener_shown .ui_checked_checkbox .awcheckbox label::after{left:-1px}form[action='save_restrict.cgi'] .table-hardcoded>tbody,form[action^='install_pack.cgi'] table.table-hardcoded tbody,form[action='save_user.cgi'] table[width='100%'][border].table-hardcoded+table[width='100%'].table-hardcoded tbody,form[action='add.cgi'] table tbody{border:0}a.opener_trigger{color:#333}a.opener_trigger:hover{color:#1d599d}table[width='100%'][border].table-hardcoded{border:1px solid #ddd}form[action='save_owner.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value,form[action='save_plan.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value,form[action='backup_sched.cgi'] table.table:nth-child(3) .table-hardcoded tr td.col_value,form[action='backup.cgi/backup.tgz'] table.table:nth-child(3) .table-hardcoded tr td.col_value,form[action='restore.cgi'] table.table:nth-child(3) .table-hardcoded tr td.col_value{border:1px solid #eaeaea !important}form[action='save_owner.cgi'] table.table:nth-child(4) .table-hardcoded tr:nth-child(2) td.col_value b,form[action='save_plan.cgi'] table.table:nth-child(4) .table-hardcoded tr:first-child td.col_value b{text-transform:capitalize}form[action='save_owner.cgi'] table.table:nth-child(4) .table-hardcoded tr:nth-child(2) td.col_value b,form[action='save_owner.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value table+b,form[action='save_plan.cgi'] table.table:nth-child(4) .table-hardcoded tr:first-child td.col_value b,form[action='save_plan.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value table+b{font-size:14px !important;font-weight:500 !important}.td_tag .acheckbox+label,.td_tag .aradio+label{display:inline}form[action='export_mod.cgi/theme.ubt.gz']>table.table-hardcoded #file{max-width:30% !important}label+input[style*='width: auto;']{max-width:25%}input[src='/images/ok.gif']{visibility:hidden;width:initial !important;height:initial !important;margin-top:-3px !important;margin-left:10px;vertical-align:middle !important}.ui_radio_columns:hover input[src='/images/ok.gif']{visibility:visible}.opener_container .fa.fa-fw.fa-calendar.file_chooser_button_attached{margin-top:12px !important}.opener_table_style{margin-bottom:6px !important;border-collapse:separate !important;border:0 !important;border-bottom:1px solid #ececec !important}.opener_shown{padding-right:1px;padding-left:1px}.opener_table_style_small{margin-bottom:6px !important;border-collapse:separate !important;border:0 !important}.opener_table_style_small .opener_container.margined-top{border-bottom:1px solid #ececec !important}.opener_table_cell_style_small{line-height:30px;height:35px;text-align:left;vertical-align:middle;border:0;border-right:1px solid #ececec;border-left:1px solid #ececec;border-top-left-radius:0;border-top-right-radius:0;background:#f5f5f5}.opener_table_cell_style_small_exclusion_border_top{border-top:1px solid #ececec !important;border-bottom:1px solid #ececec !important}.link_hover_effect_style{font-size:16px;font-weight:400 !important;padding-left:12px;background:#f5f5f5 !important}.link_hover_effect_style_extra{font-size:16px;font-weight:400 !important;line-height:20px !important;padding-left:3px}.opener_extra_container_style{line-height:34px;height:35px;text-align:left;vertical-align:middle;border:0;border-top:1px solid #ececec;border-right:1px solid #ececec;border-bottom:1px solid #ececec !important;border-left:1px solid #ececec;border-top-left-radius:0;border-top-right-radius:0;background:#f5f5f5}html:not([data-background-style='nightRider']) a.opener_extra_container_a_style:before{margin-top:6px}div.opener_extra_container.opener_extra_container_style>div.opener_extra_container.opener_extra_container_style{border:0 !important;border-bottom:1px solid #f0f0f0 !important}p+.opener_container.opener_sub_container.margined-top{margin-top:-6px;margin-bottom:10px;padding:5px}.opener_extra_container_a_style{font-size:16px;font-weight:400 !important;line-height:20px;padding-left:12px;background:#f5f5f5 !important}._c__op_d{line-height:22px !important;height:35px;text-align:left;vertical-align:middle;border:0;border-top:1px solid #ececec !important;border-right:1px solid #ececec;border-left:1px solid #ececec;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.02);box-shadow:0 1px 1px rgba(0,0,0,.02)}html[data-script-name='/virtual-server/view_domain.cgi'] ._c__op_d{line-height:20px !important}.kbd-success{background-color:#349e30 !important}.kbd-danger{color:#333;background:rgba(229,163,163,.27)}.kbd-info{color:#333;background:rgba(171,222,249,.23)}.hidden-forged{display:none !important}.vertical-align .gl-icon-container .gl-icon-selected,.vertical-align .gl-icon-container .gl-icon-select,.vertical-align .gl-icon-container .gl-icon-edit{position:absolute;top:5px;display:none}body form>div.vertical-align>div>span.hidden-forged-7>a>i.fa-edit,.vertical-align .gl-icon-container .gl-icon-edit{font-size:14px;top:4px;cursor:default}.vertical-align .gl-icon-container .gl-icon-edit{right:0}.vertical-align .gl-icon-container .gl-icon-selected,.vertical-align .gl-icon-container .gl-icon-select{left:0}.vertical-align .gl-icon-container:hover .gl-icon-selected,.vertical-align .gl-icon-container:hover .gl-icon-select,.vertical-align .gl-icon-container:hover .gl-icon-edit{display:inline-block;cursor:default}.vertical-align .small-icons-container.gl-icon-container .gl-icon-selected,.vertical-align .small-icons-container.gl-icon-container .gl-icon-select,.vertical-align .small-icons-container.gl-icon-container .gl-icon-edit{font-size:13px;top:3px}body form>div.vertical-align>div.small-icons-container>span.hidden-forged-7>a>i.fa-edit,.vertical-align .small-icons-container.gl-icon-container .gl-icon-edit{font-size:10px;top:2px}body form>div.vertical-align>div.small-icons-container>span.hidden-forged-7>a>i.fa-edit{display:block;margin-top:4px}.inline-row .gl-icon-container .gl-icon-selected,.inline-row .gl-icon-container .gl-icon-select,.inline-row .gl-icon-container .gl-icon-edit{display:none}input[name='dest0_file'],input[name='dest1_file'],input[name='dest2_file'],input[name='dest3_file'],input[name='dest4_file'],input[name='dest5_file'],input[name='dest6_file'],input[name='dest7_file'],input[name='dest8_file'],input[name='dest9_file'],input[name='dest10_file'],input[name='dest11_file'],input[name='dest12_file']{min-width:30%}body.squid form[action='acl_save.cgi'] input[name^='from_'],body.squid form[action='acl_save.cgi'] input[name^='to_']{min-width:140px}.disable-animations *,.disable-animations *:after,.disable-animations *:before{-webkit-transition:none !important;transition:none !important}html,body,.container,.loader-container,.input-group-addon{background-color:#ededed !important}.form-signin-banner,.form-signin{-webkit-box-shadow:none;box-shadow:none}#nprogress .bar{z-index:91040 !important;height:2px;background:#e8433f}#nprogress .peg{-webkit-box-shadow:0 0 2px #e8433f,0 0 5px #e8433f;box-shadow:0 0 2px #e8433f,0 0 5px #e8433f}#nprogress .spinner{top:15px;right:25px;display:none}html[data-slider-fixed='1'] #nprogress .spinner{right:325px}#nprogress .spinner-icon{width:22px;height:22px;border:2px solid rgba(133,167,194,.25);border-top:1px solid #437ba8;border-radius:100%}body[data-progress='0'] #nprogress{display:none}.cspinner{position:absolute;z-index:91031;display:inline-block}.cspinner .cspinner-icon{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;width:18px;height:18px;-webkit-animation:nprogress-spinner 400ms linear infinite;animation:nprogress-spinner 400ms linear infinite;border:solid 2px transparent;border-top-color:#bbb;border-left-color:#bbb;border-radius:50%}.cspinner .cspinner-icon.small{width:14px;height:14px}.cspinner .cspinner-icon.smaller{width:12px;height:12px}.cspinner .cspinner-icon.smallest{width:10px;height:10px}.cspinner.in-btn-md{top:1px}.cspinner .cspinner-icon.white{border-top-color:#fff;border-left-color:#fff}.cspinner .cspinner-icon.grey{border-top-color:#888;border-left-color:#888}.cspinner .cspinner-icon.dark{border-top-color:#444;border-left-color:#444}.session_login [class^='wbm-']:before,.session_login [class*=' wbm-']:before{font-size:37px;font-weight:normal !important;font-style:normal !important;font-variant:normal !important;line-height:1;text-transform:none !important;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.session_login *:focus,.session_login *:active{outline:none !important}.session_login *::-moz-focus-inner{border:0 !important}.session_login .btn{line-height:23px;width:46%;padding-top:6px;padding-bottom:5px}.session_login input[name='twofactor'],.session_login input[name='pass'],.session_login input[name='user']{font-size:13px}html.session_login,body.session_login,form.session_login,.container.session_login{font-family:'Roboto' !important;background-color:#f0f0f0}.session_login .form-signin-banner,.session_login .form-signin{position:relative;max-width:320px;margin:80px auto 0;padding:30px 30px 32px 30px;text-align:center;color:#444;border:1px solid #ddd;border-radius:0;background-color:#fff;-webkit-box-shadow:1px 1px 7px rgba(0,0,0,.10);box-shadow:1px 1px 7px rgba(0,0,0,.10)}.session_login .form-signin .form-group.form-signin-group{margin-bottom:-2px}.session_login .form-signin .form-group.form-signin-group .btn{width:100%;margin-bottom:1px}.session_login .form-signin .form-group.form-signin-group .btn>.cspinner_container{position:absolute;display:inline-block;width:18px;height:14px}.session_login .form-signin .form-group.form-signin-group .btn>.cspinner_container>.cspinner{margin-top:2px;margin-left:-22px}.session_login .form-signin-banner{font-family:monospace,'Roboto' !important}.session_login .form-signin-banner{margin-top:40px !important;color:#c22c29}.session_login .input-group-addon{border-radius:0;background-color:#f0f0f0}.session_login .input-group.form-group>input{margin-left:-1px !important}.session_login .form-signin-heading{font-size:33px;font-weight:normal;display:inline}.session_login .form-signin-heading span{vertical-align:top}.session_login .awobject .lawobject{font-weight:400}.session_login .awcheckbox label::before{left:0}.session_login .form-signin-paragraph{margin-top:3px;margin-bottom:7px}.session_login .alert{margin-top:10px;margin-bottom:-40px;padding-left:30px}.session_login .alert span{cursor:pointer}.session_login .alert{padding-right:30px}.session_login .alert-inverse{color:#fff;background:rgba(51,51,51,.9);-webkit-box-shadow:0 0 5px rgba(51,51,51,.5);box-shadow:0 0 5px rgba(51,51,51,.5)}.session_login .alert-inverse a{color:#fff}body.virtual-server form>table.table.table-striped.table-condensed>tbody>tr>td input[type='image']{max-width:22px;max-height:18px}body[class^='servers'] .dataTables_wrapper thead tr th:first-child{cursor:default;opacity:0}body[class^='servers'] .dataTables_wrapper tbody tr td table.table-hardcoded tbody tr:first-child{background-color:transparent}.col_value.col_header,.col_header{padding-left:2px !important}.col_header_custom,form[action='save_check.cgi']>b,body:not([data-module*='man']) .col_header b{font-size:16px !important;font-weight:normal !important;line-height:26px !important;display:inline-block;width:100%;height:33px;margin-bottom:4px !important;padding:2px 0 !important;text-align:center !important;border:1px solid #f1f1f1 !important;border-right-color:#eaeaea !important;border-left-color:#eaeaea !important;background-color:#f7f7f7 !important}body:not([data-module*='man']) .col_header b.text-left{text-align:left !important}html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_header b[data-first-child]{border-top:0 !important}html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_header b{border-right:0 !important;border-left:0 !important}html[data-uri*='/virtual-server/cert_form.cgi?dom='] pre{white-space:pre-wrap}html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_value .settings_background_color_reset,html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_value .settings_background_color_toggle,html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_value .settings_navigation_color_reset,html[data-script-name*='settings-user.cgi'] body:not([data-module*='man']) .col_value .settings_navigation_color_toggle{display:none}.col_header b+br{display:none}.col_value>b+br+table{margin-top:3px}body form[action='save_sql.cgi'] .col_header table tbody tr td b,body.server-manager form[action='save_failover.cgi'] td.col_header table tbody tr td b,body.server-manager form[action='save_repl.cgi'] td.col_header table tbody tr td b,body.virtual-server form[action='wizard.cgi'] td.col_header b,body.proc form[action='index_search.cgi'] td.col_header b,form[action='rollback.cgi'] .col_header b{font-size:13px !important;font-weight:500 !important;line-height:14px !important;display:inline;margin-top:2px !important;margin-bottom:2px !important;padding:0 !important;text-align:left !important;border:0 !important;border-top:0 !important;background-color:transparent !important}.btn,button.btn,.csf-container input[type='submit'],.csf-container button.input,input[type='submit']{border-radius:0 !important}select,body.csf .dataTables_filter input[type='search'],body .dataTables_filter input[type='search'],.csf-container input[type='text'],.csf-container input[type='search'],.csf-container input,.csf-container select,input[id^='CSF'],input[type='button'],input[type='reset'],input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.btn):not(.session_login),input[name]:not([type='image']):not(.sidebar-search):not([type='button']):not([type='checkbox']):not([type='radio']):not(.btn),.csf-container input[type='text'],.csf-container input[type='search'],.file_chooser_button,.form-control{border-color:#e8e8e8;border-radius:0 !important;-webkit-box-shadow:none !important;box-shadow:none !important}@-moz-document url-prefix(){.csf-container .col_header_custom:not(.big_big){width:100.45% !important}}.dropdown-menu,.pagination,.breadcrumb{border-radius:0 !important}.dropdown-menu li a{cursor:pointer}.pagination>li>a,.pagination>li>span{font-size:12px;padding:6px 10px}.nav-tabs>li>a{color:rgba(32,85,146,.91);border-radius:0}.nav-tabs>li.active>a{font-weight:normal}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid rgba(221,221,221,.60)}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{border-radius:0 0 1px 1px}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:rgba(221,221,221,.60);border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent rgba(221,221,221,.60) rgba(221,221,221,.60) rgba(221,221,221,.60)}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;border-radius:1px 0 0 1px}.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;border-radius:0 1px 1px 0}.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent}.tabs-right-fixed>.nav-tabs{position:absolute;right:-101px;margin-top:35px;border:1px solid #ccc;border-left:0;-webkit-box-shadow:2px 2px 2px rgba(153,153,153,.10);box-shadow:2px 2px 2px rgba(153,153,153,.10)}.tabs-right-fixed>.nav-tabs>li>a{overflow:hidden;min-width:100px;max-width:100px;white-space:nowrap;text-overflow:ellipsis;border-left:1px solid transparent}.tabs-right-fixed>.nav-tabs>li{margin-top:-3px}.tabs-right-fixed>.nav-tabs>li>a{margin-left:-2px;border-radius:0 1px 1px 0}.tabs-right-fixed>.nav-tabs li:not(.active)>a{color:#888;border-top:1px solid #ececec;border-left:1px solid #ececec;background:#f6f6f6}.tabs-right-fixed>.nav-tabs .active>a,.tabs-right-fixed>.nav-tabs .active>a:hover,.tabs-right-fixed>.nav-tabs .active>a:focus{border-color:transparent;border-top:1px solid #ececec}.tabs-right-fixed>.nav-tabs>li:not(.active)>a:hover,.tabs-right-fixed>.nav-tabs>li:not(.active)>a:focus{border-color:transparent;border-top:1px solid #ececec;border-left:1px solid #ececec}.tabs-right-fixed>.nav-tabs li a i{position:absolute;top:2px;right:0;display:none}.tabs-right-fixed>.nav-tabs li:hover a i{display:inline-block;color:#ccc}.tabs-right-fixed>.nav-tabs li:hover a i:hover{display:inline-block;cursor:default;color:#333}.fa.fa-paperclip,.fa.fa-files-o{color:#555}ul.messenger.messenger-fixed{z-index:100000}ul.messenger-theme-air .messenger-message.message-warning:hover,ul.messenger-theme-air .messenger-message.message-warning{background-color:#f0ad4e}ul.messenger-theme-air .messenger-message.message-info:hover,ul.messenger-theme-air .messenger-message.message-info{background-color:#5bc0de}ul.messenger-theme-air .messenger-message.message-success:hover,ul.messenger-theme-air .messenger-message.message-success{background-color:rgba(33,140,33,.82)}ul.messenger-theme-air .messenger-message.message-error:hover,ul.messenger-theme-air .messenger-message.message-error{background-color:rgba(208,22,18,.82)}ul.messenger-theme-air .messenger-message:hover,ul.messenger-theme-air .messenger-message{font-size:12px;padding:12px 30px 12px 20px;color:#f7f9fd;border:0;border-radius:0;background-color:rgba(56,99,134,.82);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.20);box-shadow:0 1px 1px rgba(0,0,0,.20)}ul.messenger-theme-air .messenger-message .messenger-close{height:100%}ul.messenger-theme-air .messenger-message .messenger-close{color:#f7f9fd}ul.messenger-theme-air .messenger-message .messenger-close:hover{color:#fff}ul.messenger-theme-air .messenger-message .messenger-message-inner:before{display:none}ul.messenger .messenger-message-inner ul{margin:3px 10px 0}@media(max-width:768px){ul.messenger.messenger-fixed.messenger-on-top,ul.messenger.messenger-fixed.messenger-on-bottom{left:15%;width:70%}}ul.messenger .messenger-message{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.messenger-message-inner{font-size:12px;margin-left:24px;padding-left:12px;border-left:1px solid rgba(255,255,255,.38)}.messenger-message-inner i{position:absolute;top:37%;left:2%}.file-manager .container-fluid .dataTables_length{margin-top:-4px;margin-bottom:-1px}.file-manager .container-fluid .tabs-top>.nav-tabs{position:absolute;z-index:1;right:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;overflow:hidden;max-width:80%;margin-top:-5px;margin-right:15px;border-bottom-color:#e9e9e9}.file-manager .container-fluid .tabs-top>.nav-tabs>li{overflow:hidden;border-bottom:1px solid #eee}.file-manager .container-fluid .tabs-top>.nav-tabs>li>a{margin-right:-1px;padding:4px 13px;white-space:nowrap;color:#444;border:1px solid #e9e9e9;background:#fff}.file-manager .container-fluid .tabs-top>.nav-tabs>li>a:hover{border:1px solid #d9d9d9;background:#eee}.file-manager .container-fluid .tabs-top>.nav-tabs>li:last-child>a{margin-right:0}.file-manager .container-fluid .tabs-top>.nav-tabs>li.active>a{padding:3px 13px 5px 13px;border:1px solid #e9e9e9;border-top:2px solid #4a90d9;border-bottom:1px solid #fff;background:#f6f6f6}.file-manager .container-fluid .tabs-top>.nav-tabs>li>a>i{font-size:13px;position:absolute;margin-top:-7px;margin-left:-17px;padding:0;cursor:default;color:#bd1e1e}.file-manager .container-fluid .btn-group.pull-right>.btn-group>button.btn-inverse,.file-manager .container-fluid .btn-group.pull-right>button.btn-inverse{background-color:#fbfbfb !important}.file-manager .container-fluid .btn-group.pull-right>.btn-group>button.btn-inverse:hover,.file-manager .container-fluid .btn-group.pull-right>button.btn-inverse:hover{border:1px solid #ddd;background-color:#eee !important}.file-manager .container-fluid .tab-content .row:nth-child(3) .col-sm-7{margin-top:-7px !important;margin-bottom:2px !important}.file-manager .container-fluid .tab-content .row:nth-child(3) .col-sm-5{margin-top:-10px !important;margin-bottom:10px !important}.file-manager .container-fluid .label.label-warning.total_size{margin-left:6px}.file-manager .container-fluid .modal-dialog.modal-image-editor-dialog{width:95%;height:93%;padding:0}.file-manager .container-fluid .modal-content.modal-image-editor-content{height:100%}.file-manager .container-fluid #searchForm .form-inline{margin-left:-2px}.file-manager .container-fluid #searchForm .form-inline .form-group{width:50%}.file-manager .container-fluid #searchForm .form-inline .form-group:first-child{width:49%}.file-manager .container-fluid #searchForm .form-inline .form-group input{width:100%}.file-manager .container-fluid #searchForm .form-inline label{margin-left:2px}.file-manager .container-fluid #searchForm .form-inline .awcheckbox{display:inline-block;margin-top:10px;margin-left:4px}.file-manager .container-fluid .table-striped{width:100%}.file-manager .container-fluid .table-striped>thead>tr th:nth-child(1),.file-manager .container-fluid .table-striped>tbody>tr:not(.directory_go_up) td:nth-child(1),.file-manager .container-fluid .table-striped>thead>tr th:nth-child(2),.file-manager .container-fluid .table-striped>tbody>tr:not(.directory_go_up) td:nth-child(2){overflow:hidden;width:20px !important;min-width:20px !important;max-width:20px !important}.file-manager .container-fluid form:not([action='save_config.cgi']).table-striped>tbody>tr td:nth-child(2){width:40px;max-width:40px;text-align:right}.file-manager .container-fluid .table-striped>tbody>tr td:nth-child(2) a{float:right}.file-manager .container-fluid .table-striped>tbody>tr td:nth-child(2) img{margin-right:15px}.file-manager .container-fluid .table-striped>tbody>tr td:nth-child(3){min-width:15vw !important;max-width:30vw !important;white-space:pre}.file-manager .container-fluid .table-striped>tbody>tr>td{overflow:hidden;white-space:wrap;text-overflow:ellipsis}.file-manager .container-fluid .table-striped>tbody>tr{height:23px}.file-manager .table-striped>tbody>tr:nth-of-type(odd){background-color:#fff}.file-manager .table-striped>tbody>tr:nth-of-type(even){background-color:#f9f9f9}.file-manager .container-fluid .ui_checked_columns.directory_go_up.hl-aw td{background:#fff}.file-manager .container-fluid .directory_go_up td i.fa{margin-left:-2px;color:#aaa}.file-manager .container-fluid form table .ui_checked_columns .ui_checked_checkbox .awobjectm{margin-left:5px !important}@-moz-document url-prefix(){.file-manager .container-fluid form table .ui_checked_columns .ui_checked_checkbox .awobjectm{margin-left:2px !important}.file-manager .container-fluid tr.ui_checked_columns td>.awcheckbox,.file-manager .container-fluid td.ui_checked_checkbox>.awcheckbox{margin-top:-1px}}.file-manager .container-fluid .panel-body tr.ui_checked_columns td{padding:0 2px !important}.file-manager .container-fluid .btn.disabled_no_styling:hover i.fa{pointer-events:none;color:#ccc}.file-manager .container-fluid .ui_checked_columns td label,.file-manager .container-fluid .ui_checked_columns:not(.directory_go_up){cursor:context-menu}.file-manager .container-fluid .btn-group.pull-right button[onclick='invertSelection()']+button.btn.btn-inverse,.file-manager .container-fluid .btn-group.pull-right button[onclick='invertSelection()'],.file-manager .container-fluid .btn-group.pull-right button[onclick='selectAll()']{padding:6px 10px}.file-manager .container-fluid .btn-group.pull-right i.fa:not(.fa-trash-o):not(.fa-star-o){font-size:90%}.file-manager .container-fluid .modal .form-group label+input{margin-left:-2px !important}.file-manager .container-fluid .modal .modal-body form .form-group>label{margin-right:2px}.file-manager .container-fluid .modal .modal-body form .form-group+table{margin-bottom:15px !important}.file-manager .container-fluid .modal .modal-body form .form-group+table tbody tr td:not(:first-child){padding-left:20px !important}.file-manager .container-fluid .autocomplete-suggestions{overflow:auto}.file-manager .container-fluid #chconForm input{width:280px}.file-manager .container-fluid .modal#chconDialog .modal-body form .form-group>input,.file-manager .container-fluid .modal#chattrDialog .modal-body form .form-group>input,.file-manager .container-fluid .modal#chownDialog .modal-body form .form-group>input{margin-bottom:10px !important}.file-manager .container-fluid .modal#chownDialog .modal-body form .form-group>.acheckbox{line-height:20px}.file-manager .container-fluid .btn-group.pull-right .btn-group>.btn,.file-manager .container-fluid .btn-group.pull-right>.btn{z-index:1000;margin-left:-2px !important}.file-manager .container-fluid .btn-group.pull-right>.btn-group:hover{z-index:1000}.file-manager .container-fluid .btn-group.pull-right>.btn-danger{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.__o__f_m-search-results-data{display:inline-block;max-height:16px}.__o__f_m-search-results-data.cursor-pointer:hover samp{text-decoration:line-through}.file-manager .container-fluid .file-input-wrapper .fa-paperclip{margin-top:6px}.file-manager .container-fluid .file-manager-remove-bookmark{position:absolute;right:0;display:none;margin-top:5px;margin-right:5px;cursor:default;color:#c6c6c6}.file-manager .container-fluid .file-manager-remove-bookmark:hover{color:#333}.file-manager .container-fluid #__f__c__m{z-index:11000}.file-manager .container-fluid #__f__c__m .file-manager-remove-bookmark{margin-top:3px;margin-right:1px}.file-manager .container-fluid .dropdown-menu:not(#__f__c__m)>li:hover .file-manager-remove-bookmark{display:block}.file-manager .container-fluid .dataTables_filter{display:none}.file-manager .container-fluid .breadcrumb{padding:7px 15px}.file-manager .container-fluid .breadcrumb i{font-size:15px}.file-manager .container-fluid .breadcrumb>li.fm___root__>a>i{vertical-align:-8%}.file-manager .container-fluid .breadcrumb>li.fm___root__+li:before{padding:0 5px 0 10px}.file-manager .container-fluid td>a>img{margin:0;-webkit-transform:scale(.82);transform:scale(.82)}.file-manager .container-fluid .table tbody tr td{vertical-align:middle}.dropdown-menu>li.bm_e__me>span{cursor:default}.dropdown-menu>li>span{font-weight:normal;line-height:1.42857143;display:block;clear:both;padding:3px 20px;white-space:nowrap;color:#333}.dropdown-menu>li>span:hover,.dropdown-menu>li>span:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>span,.dropdown-menu>.active>span:hover,.dropdown-menu>.active>span:focus{text-decoration:none;color:#fff;outline:0;background-color:#337ab7}.file-manager .jsPanel .dropdown{position:absolute;top:4px;right:85px}@-moz-document url-prefix(){.file-manager .jsPanel .dropdown{top:3px}}.file-manager .jsPanel .dropdown-menu{top:24px;min-width:200px}.file-manager .jsPanel .dropdown-menu li{text-align:right}.file-manager .jsPanel .dropdown-menu li a{padding:1.4px 8px}.file-manager .jsPanel .dropdown-menu .divider{margin:1px 0}.file-manager .jsPanel:not(.jspShown){opacity:0 !important}.file-manager .jsPanel-hdr{height:28px;border-top:1px solid #e6e6e6}.file-manager .jsPanel-hdr h3{font-variant:initial;margin:1px 5px 10px 8px;text-overflow:inherit}.file-manager .jsPanel-hdr h3 i{font-size:1em !important}.file-manager .jsPanel-hdr h3 strong{font-size:80% !important;display:inline-block;padding:1px 4px 1px 4px}.file-manager ._filemanager_file_editor_save .cspinner{top:-1px;left:2px;margin-left:4px}@-moz-document url-prefix(){.file-manager .breadcrumb{padding:7px 15px 6px 15px}}.file-manager #jsPanel-min-container{bottom:4px}.jsPanel-controlbar .jsPanel-btn{margin-top:-10px}.jsPanel-controlbar .jsPanel-btn .jsglyph-close{margin-right:5px}.jsPanel-controlbar .jsPanel-btn-minimize{margin-top:-3px}.jsPanel-controlbar .jsPanel-btn-save{margin-top:-10px;margin-right:37px}.jsPanel-controlbar .jsPanel-btn-help{margin-right:4px}.jsPanel-controlbar .jsPanel-btn-save i:hover{color:#8a8a8a}.file-manager .jsPanel .jsPanel-hdr .fa-edit{margin-right:2px;vertical-align:-9%}#jsPanel-replacement-container,.jsPanel-minimized-box{z-index:1000}.file-manager .jsPanel-replacement{height:28px !important;margin-right:-1px !important;margin-bottom:3px !important;margin-left:5px !important;-webkit-box-shadow:0 0 2px rgba(0,33,50,.1),0 2px 25px rgba(17,38,60,.3);box-shadow:0 0 2px rgba(0,33,50,.1),0 2px 25px rgba(17,38,60,.3)}.file-manager .jsPanel-replacement .jsPanel-controlbar{margin-top:-6px;margin-right:-6px;-webkit-transform:scale(.82);transform:scale(.82)}.file-manager .jsPanel-replacement .jsPanel-titlebar h3{font-size:12px;margin:4px 2px 10px 2px}.file-manager .jsPanel-replacement .jsPanel-hdr .fa-edit{display:none !important}.file-manager .jsPanel-btn-save>.fa-floppy-o{display:block !important}.jsPanel .jsPanel-content{border-top-color:#f5f5f5 !important}.file-manager .jsPanel div[data-encoding-label]{margin-top:-12px;margin-right:13px}@-moz-document url-prefix(){.file-manager .jsPanel div[data-encoding-label]{margin-top:-10px}}.file-manager .jsPanel-replacement div[data-encoding-label]{display:none;overflow:hidden;max-width:1px;pointer-events:none}.file-manager .jsPanel-state-minimized .jsPanel-title{margin-top:-1px}.file-manager .jsPanel.jsPanel-theme-light{background:#f5f5f5;-webkit-box-shadow:0 0 6px rgba(0,33,50,.1),0 7px 25px rgba(17,38,60,.3);box-shadow:0 0 6px rgba(0,33,50,.1),0 7px 25px rgba(17,38,60,.3)}.file-manager .jsPanel-hdr.jsPanel-theme-light{font-family:'Roboto';font-weight:normal;color:#222;background:#f5f5f5}.file-manager .jsPanel-hdr.jsPanel-theme-light h3{color:#222}.file-manager .jsPanel-hdr.jsPanel-theme-light h3 small{font-size:65%;color:#222}.file-manager .jsPanel-content{background:#272822}.file-manager .jsPanel-theme-light .ui-icon-gripsmall-diagonal-se{color:#222}.file-manager .popover:not(.file-manager-help) .popover-title{font-size:13px;line-height:18px;padding-top:8px;padding-bottom:7px}.file-manager .file-manager-help{max-width:330px}.file-manager .breadcrumb a.fa.fa-keyboard-o{visibility:hidden}.file-manager .breadcrumb .fa.fa-caret-down+.cspinner,.file-manager .breadcrumb .fa.fa-caret-right+.cspinner{margin-top:2px;margin-left:-13px}.file-manager .breadcrumb .fa.fa-caret-right,.file-manager .breadcrumb .fa.fa-caret-down{font-size:13px;padding:2px 1px 2px 2px;vertical-align:middle;color:#666;border:1px solid transparent}@-moz-document url-prefix(){.file-manager .breadcrumb .fa.fa-caret-right,.file-manager .breadcrumb .fa.fa-caret-down{padding:1px 0 2px 2px}}.file-manager .breadcrumb .fa.fa-caret-down{color:#1d599d}.file-manager .breadcrumb .fa.fa-caret-right:hover,.file-manager .breadcrumb .fa.fa-caret-down:hover{color:#222;border-color:#888}.file-manager .at-o__f_m-favorites-dropdown a,.file-manager .breadcrumb>li a{white-space:nowrap}.file-manager .breadcrumb>li a+span[data-tree]{position:absolute;z-index:99999;overflow:auto;width:280px;min-width:280px;max-width:280px;max-height:200px;margin-top:14px;margin-left:-15px;white-space:pre;border:1px solid rgba(0,0,0,.2);border-radius:1px;background:rgba(251,251,251,.90);background-clip:padding-box;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.file-manager .breadcrumb.pull-right>li a+span[data-tree]{margin-left:-280px}.file-manager .breadcrumb>li a+span[data-tree] a:hover{background-color:rgba(235,242,252,.50)}.file-manager .breadcrumb>li a+span[data-tree] a{display:block;padding:2px 10px;color:#333}.file-manager .popover-path-data{opacity:0;border-radius:1px}.file-manager .popover-path-data .input-group-sm>.input-group-btn button{height:32px;margin-bottom:0;margin-left:-3px;padding-top:4px}.file-manager .popover-path-data .input-group-sm>.input-group-btn button:hover i{color:#337ab7}.file-manager .popover-path-data .input-group-sm>input{height:32px !important;margin-left:-1px}.file-manager .file-manager-help table h5{margin-top:1px;margin-bottom:4px}.btn.btn-primary.btn-menu-toggler{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}tr.thead+script+tr.thead,tr.thead+tr.thead{border:0 !important}tr.thead+script+tr.thead td,tr.thead+tr.thead td{background:#fff !important}input[name^='address6']{width:260px !important}form[action='history.cgi'] a,form[action='one_history.cgi'] a{color:#333 !important}form[action*='save_user.cgi']>table tbody,form[action*='save_poll']>table tbody,form[action*='mgetty']>table tbody,form[action='save_secret.cgi']>table tbody,form[action='save.cgi']>table>tbody,form[action='start.cgi']>table tbody{border:0 !important}form[action='edit_html.cgi'] table input[name='editok']+input[name='textok']{display:none}img.scale-08,.scale-08{-webkit-transform:scale(.80) !important;transform:scale(.80) !important}.dhcpd select[name='parent']{min-height:100px}.hl-ow,html:not([data-background-style='nightRider']) body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td b,html:not([data-background-style='nightRider']) body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td a,html:not([data-background-style='nightRider']) body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td,html:not([data-background-style='nightRider']) body:not(.csf):not(.backup-config) .table-striped:not(.opener_table_style):not(.table-subtable)>tbody>tr:hover td,html[data-script-name*='settings-user.cgi'] div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form#settings_>div>table>tbody>tr>td>table>tbody>tr:hover td:not([colspan='2']),#atsettings>form>div>table>tbody>tr>td>table>tbody>tr.atshover:hover td div,#atsettings>form>div>table>tbody>tr>td>table>tbody>tr.atshover:hover td,.table-hover>tbody>tr.ui_checked_columns:hover,.table-hover>tbody>tr:not(.tr_tag):hover{background-color:#ebf2fc !important}#list_form tbody tr:hover.m-not-active{background:transparent !important}body[class*='file-manager'] #list_form tbody tr.checked:hover,body[class*='file-manager'] #list_form tbody tr:hover,#list_form tbody tr.checked:hover.m-active.m-not-active,#list_form tbody tr:hover.m-active.m-not-active,#list_form tbody tr.m-active{background-color:#ebf2fc !important}#list_form tbody tr.hl-aw.m-not-active:not(.m-active){background-color:#ffffe9 !important}.file-manager #__f__c__m.dropdown-menu .divider{margin:6px 0}.file-manager .dropdown-menu>li>a{padding:2px 28px;padding:1.4px 28px}.file-manager #__f__c__m .dropdown-menu>li>span,.file-manager #__f__c__m.dropdown-menu>li>span,.file-manager #__f__c__m .dropdown-menu>li>a,.file-manager #__f__c__m.dropdown-menu>li>a{font-size:13px;padding:2px 20px;padding:1.4px 20px}.file-manager .tooltip-inner{max-width:100%}.file-manager #headln2r .btn-group>a.btn{padding:6px 12px}.file-manager span[data-attributes='s']{font-family:monospace !important;font-size:11px;white-space:nowrap}.file-manager .container-fluid{margin-bottom:80px}.file-manager[data-uri*='config.cgi'] #headln2l a{display:none}html.single_tab,html.single_tab body{height:99%}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-10px;margin-left:-6px;border-radius:0}.dropdown-submenu.right>.dropdown-menu{right:99.8%;left:auto}.dropdown-submenu>.dropdown-menu.dropdown-submenu-bookmarks{top:-44px}.dropdown-submenu:hover>.dropdown-menu.dropdown-submenu-bookmarks a i{display:none}.dropdown-submenu:hover>.dropdown-menu.dropdown-submenu-bookmarks li:hover a i{display:inline-block;padding-top:3px;opacity:.4}.dropdown-submenu>.dropdown-menu.dropdown-submenu-properties{top:-97px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu.right:hover>.dropdown-menu{display:table}.dropdown-submenu>.dropdown-menu li a{height:22px}.dropdown-submenu.right>.dropdown-menu li a{height:24px}.dropdown-submenu>a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;content:' ';border-width:5px 0 5px 5px;border-style:solid;border-color:transparent;border-left-color:#ccc}.dropdown-submenu:hover>a:after{border-left-color:#333}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;border-radius:0}.label-inverse{color:#333;background:#ddd}.label-transparent-50{background-color:rgba(255,255,255,.5)}.label-transparent-35{background-color:rgba(255,255,255,.35)}.label-transparent-15{background-color:rgba(255,255,255,.15)}.vertical-align-text-bottom{vertical-align:text-bottom !important}.vertical-align-bottom{vertical-align:bottom !important}.vertical-align-baseline{vertical-align:baseline !important}.vertical-align-top{vertical-align:top !important}.vertical-align-middle{vertical-align:middle !important}.vertical-align-inherit{vertical-align:inherit !important}body.init div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr.ui_checked_columns>td.col_label{width:12%}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control,.sub_table_container button[disabled],.sub_table_container select[disabled],.sub_table_container input[disabled]{border-color:#f1f1f1 !important;background-color:#fafafa !important}.bootstrap-tagsinput{max-width:96%;padding:0 6px;border:1px solid #e0e0e0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-tagsinput>input{max-height:26px !important;background-color:transparent !important}.atshover:hover .bootstrap-tagsinput,.atshover .bootstrap-tagsinput:hover{background-color:#fff !important}.atshover:hover .bootstrap-tagsinput .label,.atshover .bootstrap-tagsinput:hover .label{background-color:#eee !important}.bootstrap-tagsinput .label{font-size:90% !important;font-weight:normal !important;padding-top:0;padding-bottom:1px;color:#444 !important;background-color:#eee !important}.bootstrap-tagsinput input{margin-top:0 !important;margin-bottom:0 !important}.bootstrap-tagsinput .tag{vertical-align:baseline !important}.atshover .bootstrap-tagsinput .tag span[data-role='remove']{font-size:11px;display:inline-block;margin-top:-2px}.atshover .bootstrap-tagsinput:hover .tag [data-role='remove'],.atshover:hover .bootstrap-tagsinput .tag [data-role='remove']{background-color:#eee !important}.atshover .bootstrap-tagsinput:hover .tag [data-role='remove'],.atshover:hover .bootstrap-tagsinput .tag [data-role='remove'],.bootstrap-tagsinput .tag [data-role='remove']{background-color:#eee !important}.bootstrap-tagsinput .tag [data-role='remove']:hover{color:red !important}.bootstrap-tagsinput .tag [data-role='remove']:hover:active,.bootstrap-tagsinput .tag [data-role='remove']:hover{-webkit-box-shadow:inset 0 1px 0 transparent,0 1px 2px transparent;box-shadow:inset 0 1px 0 transparent,0 1px 2px transparent}.panel,.panel-heading,.panel-group,.panel-group .panel,.well,.modal-content{border-radius:0 !important}.panel-heading{padding:9px 15px 8px 15px}._c__op_d,.panel-group .panel-heading[data-toggle='collapse']{cursor:pointer}.panel-group .panel-heading[aria-static='true'],.panel-group [aria-static='true'] .panel-heading{pointer-events:none}.panel-group [aria-static='true'] a:before{display:none}.container-fluid ._c__op_d:hover>a:last-child,.container-fluid .panel-heading:hover h4>a{color:#1d599d}.table-hover ._c__op_r:hover,.table-hover ._c__op_d:hover,.table-hover ._c__op_r,.table-hover ._c__op_d{background-color:#f7f7f7}._c__op_r ._c__op_r ._c__op_d{height:32px !important;padding:0 3px !important}._c__op_r ._c__op_r ._c__op_d a{font-size:15px !important}._c__op_d.tdhead{text-align:left !important}.table-hover tr[bgcolor='#ffffff']._c__op_r+tr[bgcolor='#feffff']:hover{background-color:#fff !important}.xcontent-force-no-styling .awobject{margin-left:5px}.col_value.col_header .fa-question-circle.-helper{right:20px;margin-top:-25px}.xcontent-force-no-styling .col_value.col_header .fa-question-circle.-helper{margin-top:-30px}.xcontent-force-no-styling .fa-question-circle.-helper{font-size:17px !important;right:21px;margin-top:-25px}.fa-question-circle.-helper{position:absolute;z-index:999;right:15px;margin-top:-20px}html[data-script-name*='settings-editor_read.cgi'] .fa-question-circle.-helper{margin-top:-21px}.fa-question-circle.-helper:hover{color:#333}.popover._helper{z-index:9999;max-width:320px}.popover.module-help{opacity:0}.pointer-events-none{pointer-events:none}.postgresql[data-uri*='view_table.cgi'] .table>tbody>tr>td,.mysql[data-uri*='view_table.cgi'] .table>tbody>tr>td{line-height:15px}.postgresql form[action='delete_fields.cgi']+script+.table-hardcoded,.mysql form[action='delete_fields.cgi']+script+.table-hardcoded{margin-top:2px}.postgresql form[action='table_form.cgi'],.mysql form[action='table_form.cgi']{margin-top:4px}.postgresql form[action='table_form.cgi'] input[name='db']+.ui_form_end_submit,.mysql form[action='table_form.cgi'] input[name='db']+.ui_form_end_submit{margin-right:6px !important}.postgresql select.ui_select.heighter-34[name='type'],.mysql select.ui_select.heighter-34[name='type']{margin-top:1px !important;margin-left:-3px !important}.postgresql .dataTable thead tr th:first-child,.mysql .dataTable thead tr th:first-child{cursor:default;opacity:0}.postgresql .table-hardcoded>tbody>tr>td>*,.mysql .table-hardcoded>tbody>tr>td>*{vertical-align:middle !important}body[class*='postgresql']:not(.__non_res__) .container-resizeable-head,body[class*='mysql']:not(.__non_res__) .container-resizeable-head{z-index:999998;height:23px;margin-bottom:2px;border-top:1px solid #e6e6e6;border-right:1px solid #eee;border-bottom:1px solid #eee;background:rgba(233,242,255,.7)}body[class*='postgresql']:not(.__non_res__)>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>a:nth-child(9) body[class*='postgresql']:not(.__non_res__)>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>a:nth-child(10),body[class*='mysql']:not(.__non_res__)>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>a:nth-child(9),body[class*='mysql']:not(.__non_res__)>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>a:nth-child(10){margin-top:5px}body[class*='postgresql']:not(.__non_res__) form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed th,body[class*='mysql']:not(.__non_res__) form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed th{border-right:1px dotted #f1f1f1}body[class*='postgresql'] form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed td,body[class*='mysql'] form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed td{overflow:hidden;max-width:110px;padding-right:8px !important;padding-left:7px !important;white-space:nowrap;text-overflow:ellipsis}td.selectable,td.selectable label{cursor:default}td.selectable label:not(.lawobject){overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ui_checked_checkbox{width:40px !important;min-width:40px !important;max-width:40px !important}td.col-no-styling:hover,td.col-no-styling{border:0 !important;background-color:white !important}.long-table-wrapper{position:relative;overflow:hidden}.long-table-scroll{overflow:auto;max-height:60vh}.long-table-scroll-maxHeight .long-table-scroll{max-height:100% !important}.db_editor_collapse:hover{color:#333}.background-empty-lines-light-grey{background:repeating-linear-gradient(45deg,rgba(0,0,0,.07),rgba(0,0,0,0) 10px,rgba(0,0,0,.16) 10px,rgba(0,0,0,.17) 20px)}body[class*='mysql'][data-uri*='edit_cnf.cgi'] .file_chooser_button{margin-top:6px !important}form[action='change_users.cgi'] a[href*='edit_user.cgi?']:not([href*='edit_user.cgi?new'])>i{color:#d80a0a}.text-decoration-none{text-decoration:none !important}.text-left{text-align:left !important}.text-right{text-align:right !important}.btn-accordion-filter label,.btn-filter-top-right label{display:none;overflow:hidden;width:120px;margin:-10px 10px -10px -10px}.btn-accordion-filter .filter_mirror_clear,.btn-filter-top-right .filter_mirror_clear{position:absolute;top:10px;left:8px}.btn-accordion-filter input,.btn-filter-top-right input{max-width:80px;background:transparent}form[action='delete_pack.cgi'] ~ td>button{margin-left:3px !important}.table-responsive .table .sub_table_container table td>.file-input-wrapper{margin-bottom:2px}.ui_form>b+.ui_select.heighter-34+.ui_form_end_submit{margin-top:0}.ui_form>.table-condensed td.td_tag span>input[type='text']{margin-top:2px !important;margin-bottom:2px !important}.panel-body>br+.btn-tiny.ui_link_replaced,.panel-body>p>.btn-tiny.ui_link_replaced{vertical-align:baseline}#att_install>form>div>table>tbody>tr>td>table>tbody>tr:nth-child(1)>td.col_value>table>tbody>tr:nth-child(4)>td:nth-child(1)>b>a,.awobject+a[target='_new']{margin-left:3px;vertical-align:bottom !important}.awobject+a.help_popup{vertical-align:bottom !important}.ui_form .table-hardcoded tr td .lawobject>b,.lawobject>b{vertical-align:baseline !important}.lawobject>tt{vertical-align:initial !important}input.dataTable-mirror,.lawobject tt{font-size:12px}.dataTable thead th a.ui_link{pointer-events:none;color:inherit}.ui_buttons_table .ui_buttons_row .ui_buttons_value .table-hardcoded tbody tr td b{margin-right:3px;margin-left:3px}form[action='edit_dump.cgi'] input+input[name='dir']{vertical-align:middle}body:not(.software) .panel-body hr+h3{font-size:15px;margin-left:5px}.ui_form_end_submit{max-height:34px}body[class*='proc'][data-uri*='edit_proc.cgi?'] .table-responsive+.table-hardcoded tbody tr td[nowrap] button.ui_form_end_submit:nth-child(10){margin-left:-5px !important}body[class*='proc'][data-uri*='edit_proc.cgi?'] .table-responsive+.table-hardcoded tbody tr td[nowrap] button.ui_form_end_submit:nth-child(6){margin-left:-5px !important}body[class*='proc'][data-uri*='edit_proc.cgi?'] .table-responsive+.table-hardcoded tbody tr td[align='right']{vertical-align:bottom}body[class*='proc'][data-uri*='edit_proc.cgi?'] td[nowrap]>select[name='signal'],body[class*='proc'][data-uri*='edit_proc.cgi?'] .table-responsive+.table-hardcoded tbody tr td[align='right'] button.ui_form_end_submit{margin-left:-3px !important}body[class*='proc'][data-uri*='index_search.cgi'] #files{width:50% !important}.btn-group.end_submits+select.ui_select{height:34px !important}.heighter-34+.ui_form_end_submit{margin-top:0}table.dataTable tbody tr .table-hardcoded tbody tr{background-color:initial}form[action='save_check.cgi']>b+br+table.ui_grid_table{margin-top:-5px !important;border:1px solid #eee}form[action='save_check.cgi']>b+br+table.ui_grid_table .ui_grid_cell{padding-left:6px !important}form[action='save_check.cgi']>b+br{display:none}.ui_form_end_submit{line-height:0;height:34px}.ui_form .table-responsive .table-subtable .table.table-striped.table-hover.table-condensed thead tr th{text-align:center;background-color:#f6f6f6 !important}.ui_multi_select tbody tr td .ui_select{min-width:200px}form[action='delete_jobs.cgi']{margin-top:6px}body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small .link_hover_effect.btn-tiny.btn-default,body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small input{margin-left:2px !important}body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small{border:1px solid #eee !important;background-color:transparent}body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small .link_hover_effect_style{font-size:13px;padding:0;background-color:transparent !important}body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small span{line-height:20px !important}body[data-uri*='virtual-server/backup_form'] .table-condensed.opener_table_style.opener_table_style_small>tbody>tr._c__op_r>td{line-height:18px !important;border-bottom:1px solid #eee !important}body[class*='proftpd'] form[action*='save'] input[type='submit']{margin-top:10px !important}body[class*='proftpd'][data-uri*='ftpaccess.cgi'] input[name='dir'],body[class*='proftpd'][data-uri*='ftpaccess.cgi'] input[name='file'],body[class*='proftpd'][data-uri*='edit_global.cgi'] input[name='ScoreboardPath'],body[class*='proftpd'][data-uri*='edit_global.cgi'] input[name='PidFile'],body[class*='proftpd'][data-uri*='edit_global.cgi'] input[name='SystemLog']{vertical-align:middle}body[class*='spam'][data-uri*='edit_report.cgi'] form[action='save_report.cgi'] .sub_table_container.table-hardcoded .table.table-striped.table-condensed tbody>tr>td select,body[class*='spam'][data-uri*='edit_report.cgi'] form[action='save_report.cgi'] .sub_table_container.table-hardcoded .table.table-striped.table-condensed tbody>tr>td input:not([type='checkbox']):not([type='radio']),body[class*='spam'][data-uri*='edit_simple.cgi'] select,body[class*='spam'][data-uri*='edit_simple.cgi'] input:not([type='checkbox']):not([type='radio']),body[class*='spam'][data-uri*='edit_header.cgi'] select,body[class*='spam'][data-uri*='edit_header.cgi'] input:not([type='checkbox']):not([type='radio']),body[class*='spam'][data-uri*='edit_white.cgi'] select,body[class*='spam'][data-uri*='edit_white.cgi'] input:not([type='checkbox']):not([type='radio']){width:100% !important;vertical-align:middle}body[class*='spam'][data-uri*='edit_simple.cgi'] input[name*='regexp']:not([type='checkbox']):not([type='radio']),body[class*='spam'][data-uri*='edit_simple.cgi'] input[name*='flags']:not([type='checkbox']):not([type='radio']){width:49.7% !important}body[class*='spam'][data-uri*='edit_simple.cgi'] input[name*='flags']:not([type='checkbox']):not([type='radio']){float:right}body[class*='sshd'][data-uri*='edit_host.cgi'] form[action='save_host.cgi'] .sub_table_container.table-hardcoded .table.table-striped.table-condensed tbody>tr>td input:not([type='checkbox']):not([type='radio']){width:100% !important;vertical-align:middle}body[class*='custom'] .table-title b{line-height:24px}body[class*='custom'][data-uri*='edit_cmd.cgi'] input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:7px !important}form[action*='edit_mon.cgi']:first-child{margin-bottom:10px}body[class*='server-manager'][data-uri*='login.cgi'] iframe+br,body[class*='server-manager'][data-uri*='login.cgi'] iframe+br+input,body[class*='server-manager'][data-uri*='login.cgi'] iframe+br+input ~ p,body[class*='ajaxterm'] iframe+br,body[class*='ajaxterm'] iframe+br+input,body[class*='ajaxterm'] iframe+br+input ~ p{display:none}body[class*='firewall'] .select_invert+br+.table-hardcoded{margin-top:8px !important}body[class*='firewall'] .table-hardcoded input[type='submit']+input[name='chain'],body[class*='firewall'] .table-hardcoded input[type='submit']{vertical-align:middle}body[class*='pptp-client'] form[action*='save'] input[type='submit']{margin-top:10px !important}body[class*='pam'] form[action*='create_pam'] input[type='submit']{margin-top:10px !important}body[class*='usermin'][data-uri*='edit_logout.cgi'] form table td select,body[class*='usermin'][data-uri*='edit_logout.cgi'] form table td input{width:100% !important}body[class*='package-updates'] form>table.ui_grid_table tr:first-child td,body[class*='package-updates'][data-uri*='index.cgi'] form>table.ui_grid_table tr:first-child td{padding-bottom:20px !important}.table-subtable tbody tr td,.panel-body .table-subtable tr th,.panel-body .table-subtable tr td,.table-subtable tbody tr td,.panel-body tr th,.panel-body tr td{padding:1px !important}.table-hardcoded table .table-hardcoded tr:first-child:not(.ui_multi_select_row) td{padding-top:2px !important}.table-hardcoded table.ui_radio_table .table-hardcoded tr:last-child:not(.ui_multi_select_row) td{padding-bottom:2px !important}.table-subtable tbody tr td.col_header,.panel-body td.col_header,.table-subtable tbody tr td.col_header,.panel-body .table-subtable td.col_header{padding:0 !important}.panel-body .table-subtable tr th:not(.table-title),.panel-body tr th:not(.table-title){padding:6px 22px !important}.table-subtable>tbody>tr:nth-child(odd){background-color:#fff}.usermin tr>td.col_value>br+b{font-size:13px}.panel-body>.nav.nav-tabs+.tab-content{margin-top:2px}.nav-tabs>li>a{margin-right:0}.table>tbody>tr>td>label>img{margin-top:2px;margin-bottom:-2px}form input[style*='height: 28px']+.btn:not(.heighter-34-force) span,.sub_table_container td span>input,.table>tbody>tr>td{vertical-align:middle}.td_tag>img{margin-top:-2px}html[data-script-name*='sysinfo.cgi'] #system-status table tr td{padding-top:5px !important;padding-bottom:5px !important;padding-left:5px !important}.badge.fa.fa-github span,.badge.background-info.fa.fa-twitter span{margin-left:-7px}.badge.fa.fa-github,.badge.background-info.fa.fa-twitter{font-size:11px}.badge.fa.fa-github:hover{background-color:rgba(22,22,22,.73)}.badge.background-info.fa.fa-twitter:hover{background-color:#4193aa}.panel-title{line-height:16px;margin-top:-1px;margin-bottom:2px}form[action*='edit_manual.cgi']+script+p+form[action*='save_manual.cgi'] .table thead,form[action*='edit_manual.cgi']+script+p{display:none}._c__op_r+tr>td.opener_container table table{margin-top:1px !important;margin-bottom:1px !important}input+br+.awobject+.file-input-wrapper{margin-top:1px}.htaccess-htpasswd .awobject+input[type='text']+br+.awobject+input[type='text'],br+.awobject+select{margin-top:2px}.awobject+textarea{margin-top:4px}body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container,body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']{margin-bottom:10px}body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container+div+p>a{border-bottom:1px solid #ddd !important}body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container+div+p+div>div>form{padding:8px}body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container+div+p+div>div>form .ui_form_end_submit{margin-top:4px}body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container+div+p{margin-top:4px}#att_simple .table tbody tr:first-child td:first-child{border-top:0}#att_simple .table tbody tr:first-child td:first-child>table:first-child{margin-top:-2px;border:1px solid #eaeaea}.ui_form_end_buttons,form>.table-hardcoded tbody tr td:first-child .table{margin-left:-2px}body.virtual-server form[action='edit_newfeatures.cgi']+script+form[action='edit_newtmpl.cgi']{margin-top:10px}body[class*='usermin'] .ui_grid_table+.ui_link_replaced,body[class*='usermin'] .ui_grid_table+.ui_link_replaced ~ .ui_link_replaced,body[class*='usermin'][data-uri*='edit_session.cgi'] #extauth{margin-top:2px !important}a.select_invert{margin-right:5px}body[class*='usermin'][data-uri*='edit_restrict.cgi'] .awobject+font[color='#ff0000']{margin-left:-9px}body[class*='webminlog'] textarea#anno+br+.ui_form_end_submit{margin-top:-1px !important;margin-bottom:2px;margin-left:2px}body[data-module='bind8'] .ui_form_end_submit+input.hidden+.awcheckbox{margin-left:10px !important;vertical-align:middle}body[class*='bind8'][data-uri*='edit_zonekey.cgi'] .panel-body>p:first-child{margin-bottom:5px}body[class*='bind8'] div>div>div.panel-body>form>div.table-responsive>table.table-subtable>tbody>tr>td>table>tbody>tr>td>span.awradio{vertical-align:sub}font[color='#ff4400'],font[color='#ff0000']{color:#e8433f !important}font[color='#00aa00']{color:#0a0 !important}font[color='#0000ff']{color:#4771e2 !important}body[class='servers'] input[name='scan']{margin-bottom:2px}body[class='servers'] input[name='defuser']{margin-top:2px}body[class='servers'] input[name='port']{margin-bottom:2px}body[class='acl'] .panel-body>h3{margin-left:0 !important;padding-bottom:5px;border-bottom:1px solid #eee}body[class='acl'] select[name='group']{margin-top:0 !important;margin-left:-1px !important}body[class='acl'][data-uri*='edit_user.cgi'] .col_value.col_header a.select_all,body[class='acl'][data-uri*='edit_user.cgi'] .col_value.col_header a.select_invert,body[class='acl'][data-uri*='edit_group.cgi'] .col_value.col_header a.select_all,body[class='acl'][data-uri*='edit_group.cgi'] .col_value.col_header a.select_invert{margin-top:5px;margin-bottom:5px}body[class='acl'] span>input[name='fileunix'],body[class='acl'] span>input[name='root']{vertical-align:middle}body[class='acl'] input[onclick*='form.fileunix']+i.fa-files-o{margin-top:9px !important}body[class='acl'] input+i.fa-files-o{margin-top:12px !important}body[class*='quota'][data-uri*='list_users.cgi'] form>input[data-mmclick],body[class*='quota'][data-uri*='list_groups.cgi'] form>input[data-mmclick],body[class*='quota'] td>input[data-mmclick].heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-left:-8px !important}body[class*='quota'][data-uri*='list_groups.cgi'] input+i.fa-files-o,body[class*='quota'][data-uri*='list_users.cgi'] input+i.fa-files-o{margin-top:14px !important}body[class*='quota'][data-uri*='list_users.cgi'] form>input[name='user'],body[class*='quota'][data-uri*='list_groups.cgi'] form>input[name='group']{margin-left:-4px !important}body[class*='quota'] td>input[name='user'].heighter-34:not(.btn-lg):not(.ui_form_end_submit),body[class*='quota'] td>input[name='group'].heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-left:-10px !important}body[class*='pam'][data-uri*='create_form.cgi'] input[name='name']{margin-top:1px}body[class*='pam'][data-uri*='create_form.cgi'] .awobject{margin-left:4px}body[class*='pam'][data-uri*='create_form.cgi'] td>.table-hardcoded td{padding:3px 4px !important}body[class*='proc'] .panel-body>b.btn-success,body[class*='proc'] .panel-body>.ui_link{margin-left:-1px !important}body[class*='proc'] .panel-body>b.btn.btn-success.heighter-34,body[class*='proc'] .panel-body>b.btn.btn-success.heighter-34,body[class*='proc'] .panel-body>.ui_link.btn.heighter-34{line-height:20px !important}body[class*='ldap-client'] input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:7px !important}body[class*='ldap-client'] .table-hardcoded{margin-top:2px}body[class*='virtualmin-nginx'] form[action='edit_mime.cgi']{margin-bottom:4px !important}tr>td>span+input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o,input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:9px !important;margin-left:-26px !important}tr>td:not(.col_value)>input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:11px !important}tr>td.col_value tr>td:not(.col_value)>input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:10px !important}body[class='sshd'][data-uri*='edit_access.cgi'] input+i.fa-files-o{margin-top:7px !important}body[class='dovecot'][data-uri*='edit_login.cgi'] tr>td>span+input+i.fa-files-o{margin-top:7px !important}body[class='spam'][data-uri*='edit_awl.cgi'] input+i.fa-files-o{margin-top:14px !important}body[class*='spam'] form>input[data-mmclick].heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-left:-7px !important}body[class*='postgresql'][data-uri*='view_table.cgi'] #DataTables_Table_0 tr td.ui_checked_checkbox>.awcheckbox.awobject,body[class*='mysql'][data-uri*='view_table.cgi'] #DataTables_Table_0 tr td.ui_checked_checkbox>.awcheckbox.awobject{margin-top:-2px}body[class*='postgresql'][data-uri*='edit_dbase.cgi'] #DataTables_Table_0,body[class*='mysql'][data-uri*='edit_dbase.cgi'] #DataTables_Table_0{margin-left:0}body[class*='postgresql']:not([data-uri*='view_table.cgi']):not([data-uri*='backup_form.cgi']) .table.table-striped.table-hover.table-condensed tr,body[class*='mysql']:not([data-uri*='view_table.cgi']):not([data-uri*='backup_form.cgi']) .table.table-striped.table-hover.table-condensed tr,body[class*='status'] .table.table-striped.table-hover.table-condensed tr,.ui_grid_table.table-hardcoded .ui_grid_row td>.table.table-striped.table-hover.table-condensed tr{border-top:1px solid #e4e4e4}form[action='list_mail.cgi'] input#user{margin-top:0 !important}form[action='mail_search.cgi'] input[name='search']{min-height:34px !important}form[action='delete_mail.cgi'] button#delete{float:right}form[action='delete_mail.cgi'] select#mfolder1,form[action='delete_mail.cgi'] button.ui_form_end_submit{margin-left:-1px !important}form[action='delete_mail.cgi'] select#mfolder2{margin-top:5px !important;margin-left:-1px !important}body[class*='mailboxes'] form>button[data-mmclick].heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-left:-8px !important}body[class*='mailboxes'] form>input[name='user'].heighter-34:not(.btn-lg):not(.ui_form_end_submit){margin-left:-5px !important}body[class*='cluster-cron'] .panel-body>form>.table-hardcoded tr+script+.thead .tdhead b{font-size:15px !important}body[class*='cluster-useradmin'] input[name='what'],body[class*='cluster-webmin'] input[name='file'],body[class*='cluster-webmin'] input[name='local'],body[class*='cluster-usermin'] input[name='file'],body[class*='cluster-usermin'] input[name='local'],body[class*='cluster-software'] form[action='search.cgi']>input[name='search']{vertical-align:middle}body[data-user-switch='1'] tr[data-users-switch]{display:table-row !important}html[data-sestatus='0'] tr[data-selinux]{display:none}body[data-module='net'] input[name^='nameserver']{margin-bottom:4px !important}body[class*='fetchmail'][data-uri*='edit_poll.cgi'] input:not([type='checkbox']):not([type='radio']){vertical-align:middle !important}body[class*='fetchmail'][data-uri*='edit_cron.cgi'] tr:first-child input:not([type='checkbox']):not([type='radio']){margin-bottom:2px}body[class*='fetchmail'][data-uri*='edit_poll.cgi'] tr:first-child input:not([type='checkbox']):not([type='radio']){margin-top:1px}body[class*='fetchmail'][data-uri*='edit_poll.cgi'] tr:first-child input[type='submit']{margin-top:4px !important}body[class*='fetchmail'] .panel-body>form[action='edit_poll.cgi']:first-child{margin-bottom:4px !important}body[class*='fetchmail'] table.table-hardcoded>tbody>tr[bgcolor].thead>td>b{font-size:18px !important;vertical-align:middle !important}html[data-script-name*='webmin/edit_assignment.cgi'] div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>table.ui_table>tbody>tr>td>table>tbody>tr>td,html[data-script-name*='usermin/edit_assignment.cgi'] div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>table.ui_table>tbody>tr>td>table>tbody>tr>td{vertical-align:middle !important}body[class*='firewalld'][data-uri*='edit_port.cgi'] input[name='port']{margin-top:1px}body[class*='fsdump'] form[action*='delete_dumps.cgi']+script+form[action*='edit_dump.cgi']{margin-top:15px}body[class*='htaccess-htpasswd'] .table.table-striped .ui_grid_table.table-hardcoded{width:80%}body[class*='htaccess-htpasswd'] .table.table-striped .ui_grid_table.table-hardcoded+a{position:absolute;right:0;float:right;margin-top:-13px;margin-right:24px}body[class*='webalizer'] td.td_tag img[src*='images/empty']{display:none}body[class*='virtual-server'][data-uri*='list_records.cgi'] button#manual{float:right}body[class*='virtual-server'][data-uri*='list_records.cgi'] select#type{margin-top:0 !important;margin-right:5px}body[class*='htaccess-htpasswd'] input[type='submit']+input[name='search'],body[class*='fsdump'] input[type='submit']+input[name='dir'],input[onclick*='datePicker('],button[onclick*='datePicker(']{margin-left:-5px !important}body[class*='htaccess-htpasswd'] input[type='submit']+input[name='search']+button[data-mmclick],body[class*='usermin'][data-uri*='list_sessions.cgi'] input[data-mmclick],body[class*='useradmin'] tr td.ui_buttons_label input[data-mmclick]{margin-left:-8px !important}#show_backup_destination>tbody,.ui_form:not([action='save_iptables.cgi']):not([action='export_mod.cgi/theme.ubt.gz']):not([action='add.cgi']):not([action='save_storage.cgi']):not([action='save_repl.cgi']):not([action='download.cgi']):not([action='upload.cgi']):not([action='install_mod.cgi']):not([action='save_newretention.cgi']):not([action='add_style.cgi']):not([action='save_validate.cgi']):not([action='mass_create.cgi']):not([action='migrate.cgi']):not([action='save_bkey.cgi/key.txt']) div.table-responsive table.table-subtable tbody tr td>table.sub_table_container tbody tr td.col_value table.table-hardcoded tbody{border:1px solid #eaeaea !important}.ui_form:not([action='save_iptables.cgi']):not([action='export_mod.cgi/theme.ubt.gz']):not([action='add.cgi']):not([action='save_storage.cgi']):not([action='save_repl.cgi']):not([action='download.cgi']):not([action='upload.cgi']):not([action='install_mod.cgi']):not([action='save_newretention.cgi']):not([action='add_style.cgi']):not([action='save_validate.cgi']):not([action='mass_create.cgi']):not([action='migrate.cgi']):not([action='save_bkey.cgi/key.txt']) div.table-responsive table.table-subtable tbody tr td>table.sub_table_container tbody tr td.col_value table.table-hardcoded tbody tr:first-child td{padding-top:1px !important;padding-right:2px !important}.ui_form:not([action='save_iptables.cgi']):not([action='export_mod.cgi/theme.ubt.gz']):not([action='add.cgi']):not([action='save_storage.cgi']):not([action='save_repl.cgi']):not([action='download.cgi']):not([action='upload.cgi']):not([action='install_mod.cgi']):not([action='save_newretention.cgi']):not([action='add_style.cgi']):not([action='save_validate.cgi']):not([action='mass_create.cgi']):not([action='migrate.cgi']):not([action='save_bkey.cgi/key.txt']) div.table-responsive table.table-subtable tbody tr td>table.sub_table_container tbody tr td.col_value table.table-hardcoded tbody tr:last-child td{padding-right:2px !important;padding-bottom:3px !important}body[class*='php-pear'][data-uri*='view.cgi'] .table .table-hardcoded tbody tr:not(:last-child) td:not(:first-child){border-bottom:1px solid #efefef}body[class*='inetd'][data-uri*='edit_rpc.cgi'] tr>td>span+input[data-mmclick*='group_chooser.cgi']:not(.heighter-34)+i.fa-files-o,body[class*='updown'] tr>td>span+input[data-mmclick*='group_chooser.cgi']:not(.heighter-34)+i.fa-files-o,body[class*='status'][data-uri*='edit_mon.cgi'] input[style*='height: 28px']:not(.heighter-34)+i.fa-files-o{margin-top:7px !important}body[class*='virtual-server'][data-uri*='edit_limits.cgi'] input+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,body[class*='fetchmail'] input[data-mmclick]:not(.heighter-34)+i.fa-files-o{margin-top:11px !important}body[class*='squid'] input[data-mmclick]:not(.heighter-34)+i.fa-files-o,body[class*='squid'] input[data-mmclick]:not(.heighter-34)+i.fa-files-o{margin-top:12px !important;margin-left:-29px !important}input[data-mmclick]:not(.heighter-34)+i.fa-files-o{margin-top:7px !important;margin-left:-28px !important}body[class*='updown'] tr>td>input[name='group']+input[data-mmclick*='group_chooser.cgi']:not(.heighter-34)+i.fa-files-o,body[class*='updown'] tr>td>input[name='user']+input[data-mmclick*='user_chooser.cgi']:not(.heighter-34)+i.fa-files-o,body[class*='proc'] tr>td>input[name='user']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,body[class*='webmin'] tr>td>input[name='third']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,body[class*='webmin'] tr>td>input[name='standard']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,body[class*='virtual-server'][data-uri*='import_form.cgi'] form input+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,html[data-script-name*='config.cgi'] form[action*='config_save.cgi'] input[name='vpopmail_group']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,html[data-script-name*='config.cgi'] form[action*='config_save.cgi'] input[name='vpopmail_user']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,html[data-script-name*='config.cgi'] form[action*='config_save.cgi'] input[name='webmin_modules']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o,html[data-script-name*='config.cgi'] form[action*='config_save.cgi'] input[name='reseller_modules']+input[data-mmclick]:not(.heighter-34)+i.fa-files-o{margin-top:9px !important}body[class*='virtual-server'][data-uri*='edit_user.cgi'] .opener_container .fa-calendar.file_chooser_button_attached{margin-top:10px !important}body[class*='virtual-server'] img[src*='grey'],body[class*='virtual-server'] img[src*='blue'],body[class*='virtual-server'] img[src*='red'],body[class*='virtual-server'] img[src*='usage-'],body[class*='server-manager'] img[src*='grey'],body[class*='server-manager'] img[src*='blue'],body[class*='server-manager'] img[src*='purple'],body[class*='server-manager'] img[src*='red'],body[class*='server-manager'] img[src*='usage-']{filter:saturate(1.2) brightness(1.2) contrast(1) hue-rotate(-31deg);-webkit-filter:saturate(1.2) brightness(1.2) contrast(1) hue-rotate(-31deg)}body[class*='krb5'] input[name='kdc'],body[class*='krb5'] input[name='default_admin_port']{margin-left:3px}body[class*='grub'] .icons-container .hidden-forged-7{display:none}html:not([data-background-style='nightRider']) body[class*='mysql'][data-uri*='view_table']:not(.csf):not(.backup-config) .table-striped>tbody>tr:hover td,html:not([data-background-style='nightRider']) body[class*='postgresql'][data-uri*='view_table']:not(.csf):not(.backup-config) .table-striped>tbody>tr:hover td,html:not([data-background-style='nightRider']) body[class*='mysql'][data-uri*='backup_form']:not(.csf):not(.backup-config) .table-striped>tbody>tr:hover td,html:not([data-background-style='nightRider']) body[class*='postgresql'][data-uri*='backup_form']:not(.csf):not(.backup-config) .table-striped>tbody>tr:hover td{background-color:#fff !important}body[class*='squid'][data-uri*='edit_cachemgr'] .table-hover>tbody>tr:hover,body[class*='sendmail'][data-uri*='list_ports.cgi'] .table-hover>tbody>tr:hover{background-color:#f7f7f7 !important}.cm-s-monokai .CodeMirror-dialog,.cm-s-monokai .CodeMirror-dialog input{color:#eee !important}.CodeMirror ~ input[type='reset']{display:none}.datepicker{font-size:90%}.datepicker .datepicker-days thead .dow{font-size:115%}.datepicker table tr td,.datepicker table tr th{border-radius:0}form[action='save_login.cgi'] input[type='text']+br{line-height:26px}html[data-script-name*='password_change.cgi'] body .container-fluid{pointer-events:auto !important;opacity:1 !important}html[data-script-name*='password_change.cgi'] .panel .panel-body hr,html[data-script-name*='password_change.cgi'] .panel .panel-heading{display:none}html[data-script-name*='password_change.cgi'] .panel{position:relative;max-width:320px;margin:80px auto 0;padding:30px 30px 40px 30px;text-align:center;color:#444;border:0;border-radius:0}html[data-script-name*='password_change.cgi'] .panel-body{-webkit-box-shadow:none;box-shadow:none}html[data-script-name*='password_change.cgi'] .panel-body center h3{font-size:15px}html[data-script-name*='password_change.cgi'] .panel-body center h3 a{text-decoration:underline}html:not([data-background-style='nightRider']) body[data-module*='virtualmin-mailman'] form .table-hardcoded>tbody>tr>td[bgcolor='#dddddd']{background-color:transparent !important}body[data-module*='virtualmin-mailman'] form .table-hardcoded>tbody>tr>td[bgcolor='#dddddd']>div[align='right']{padding-right:25px}body[data-module*='virtualmin-mailman'] form>table.table-hardcoded table.table-hardcoded>tbody,body[data-module*='virtualmin-mailman'] form .table-hardcoded>tbody>tr>td[bgcolor='#dddddd']>.table-hardcoded>tbody{border:none !important}body[data-module*='virtualmin-mailman'] address>.table-hardcoded{display:none}body[data-module*='virtualmin-mailman'] form font[color='#ff0000'] strong font[size='+1'],body[data-module*='virtualmin-mailman'] td b font[color='#000000'][size='+1'],body[data-module*='virtualmin-mailman'] .panel-body>font[size='+1'],body[data-module*='virtualmin-mailman'] .panel-body>font[size='+2'],body[data-module*='virtualmin-mailman'] div[align='right'] font[size='+2'],body[data-module*='virtualmin-mailman'] .table-hardcoded font[size='+2']{font-size:13px}body[data-module*='virtualmin-mailman'] .panel-body>h1,body[data-module*='virtualmin-mailman'] h3,body[data-module*='virtualmin-mailman'] h2{font-size:18px}body[data-module*='virtualmin-mailman'] .table-hardcoded td[bgcolor='#FFF0D0']{padding:6px !important;border:1px solid #eaeaea;background-color:#f7f7f7}body[data-module*='virtualmin-mailman'] .table-hardcoded td[bgcolor='#FFF0D0'][colspan='1']:first-child{border-right:0}body[data-module*='virtualmin-mailman'] .table-hardcoded td[bgcolor='#FFF0D0'][colspan='1']:last-child{border-left:0}.cke_panel,.cke_toolbar *,.cke_dialog_body,.cke_dialog_body *,a.cke_button,.cke_contents,.cke_chrome,.cke_editor_body{border-radius:0 !important}.cke_bottom,.cke_top{background:#f5f5f5 !important}.cke_dialog_ui_button_cancel{margin-left:-6px !important}.jsglyph{font-family:'Authentic'}.jsglyph-minimize:before{content:'\f0b6'}.jsglyph-maximize:before{content:'\f0b8'}.jsglyph-normalize:before{content:'\f0d9'}.jsglyph-close:before{content:'\f044'}.table>thead>tr:first-child>th,.table>tbody>tr:first-child>th,.table>tfoot>tr:first-child>th,.table>thead>tr:first-child>td,.table>tbody>tr:first-child>td,.table>tfoot>tr:first-child>td{border-top:1px solid #e9e9e9}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{border-top:1px solid #e4e4e4}.server-manager td.ui_radio_radio,.virtual-server td.ui_radio_radio{min-width:51px}.server-manager table.table.table-striped.table-condensed tbody+thead>tr:first-child,.virtual-server table.table.table-striped.table-condensed tbody+thead>tr:first-child{border-top-width:1px !important}.heighter-34+i.fa-files-o,td>.heighter-34+i.fa-files-o{margin-top:14px !important}body .mppopup .modal-dialog{overflow-y:initial !important}body .mppopup .modal-body{overflow-y:auto;max-height:80vh}body .mppopup .modal-body .table tr td img{margin-top:-3px;margin-bottom:-2px;-webkit-transform:scale(.82);transform:scale(.82)}body .mppopup .modal-body .table tr.noresults{background-color:#f7f7f7}body .mppopup .modal-body .table tr td a[onclick*='select']:hover,body .mppopup .modal-body .table tr td a[onclick*='parentdir']:hover,body .mppopup .modal-body .table tr td a[onclick*='fileclick'][onclick*=', 1']:hover{color:#1d599d}body .mppopup button[data-mppopup_confirm]{font-size:12px !important;line-height:22px !important}body .mppopup .modal-body .table tr td{word-break:break-word}body .mppopup .modal-body .table.type2 tr td li{display:block}body .mppopup .modal-body .table.type2 tr td li:before{display:inline-block;margin-right:5px;content:' • '}body .mppopup .modal-body .table.type2 tr td:first-child{min-width:120px;padding-left:6px}body .mppopup .modal-body.third_chooser .table.type2 tr td:nth-child(2){min-width:60px}body .mppopup .modal-body.third_chooser .table.type2 tr td:first-child{min-width:180px}body .mppopup .modal-body.third_chooser .table.type2{width:99.99%}body .mppopup .modal-header .close{margin-top:2px}body .mppopup .modal-header .mppopup_filter{display:inline;clear:both;width:100%;margin:0;padding:0}body .mppopup .modal-footer input[data-mppopup_value],body .mppopup .modal-header .mppopup_filter input{font-size:12px;display:inline;width:95.6%;height:28px !important;padding-top:0;padding-bottom:0;vertical-align:middle !important}body .mppopup .modal-footer input[data-mppopup_value]{width:100%}body .mppopup .breadcrumbx{margin-bottom:11px}body .mppopup .breadcrumbx a{cursor:default}body .mppopup .modal-footer .input-group-btn{vertical-align:top}body .mppopup .modal-footer .input-group-btn.mppopup_multi_done button{padding-top:2px !important;padding-left:13px}body .mppopup .bootstrap-tagsinput{min-width:100%;padding:0 3px;text-align:left}body .mppopup .bootstrap-tagsinput .tag{vertical-align:middle !important}body .mppopup .bootstrap-tagsinput input{font-size:12px !important;padding-bottom:2px}.mppopup_filter_input::-webkit-input-placeholder{color:#aaa}.mppopup_filter_input::-moz-placeholder{opacity:1}.breadcrumbx{font-size:11px;display:inline-block;padding:1px;padding-right:18px;background:#dedede;-webkit-clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%);clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%)}.breadcrumbx a{position:relative;display:inline-block;margin-right:-17px;padding:1px 25px 1px 25px;text-decoration:none;color:#333;background:#fbfbfb;-webkit-clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%,15px 50%);clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%,15px 50%)}.breadcrumbx a:first-child{padding-left:20px;-webkit-clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%);clip-path:polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%)}body.sysstats .graph_table a img{max-width:none !important}.-shell-port- .-shell-port-cmd .-shell-port-prompt{line-height:14px;display:block;height:auto}.-shell-port- .-shell-port-cmd .-shell-port-prompt{float:left}.-shell-port- .-shell-port-cmd{font-family:monospace;font-size:12px;line-height:14px;width:100%;padding-bottom:5px;color:#fefefe;background-color:transparent}.-shell-port- .-shell-port-container{overflow:auto;height:100%;margin-top:-8px}.-shell-port- pre b{margin-left:-9.5px}.-shell-port- pre{margin-bottom:-9px;white-space:pre-wrap;color:#fafafa;border:0;background-color:transparent}.-shell-port-.opened input[data-command='true']{font-family:monospace;font-size:12px;height:15px !important;margin-left:1px;border:0;background-color:transparent}.-shell-port- .-shell-port-type{vertical-align:middle}.-shell-port-.opened{position:fixed;z-index:999999;top:0;right:0;bottom:100vh;left:0;opacity:.85;background-color:#000}.-shell-port-:not(.opened) *{display:none}.-shell-port-.opened ~ .modal-backdrop{display:none}.session-reauthenticate{position:fixed;z-index:999999999;top:0;right:0;bottom:0;left:0;opacity:.91;background-color:#fff}.session-reauthenticate-container-center{max-width:420px;margin:12% auto 0;padding:20px;border:1px solid #e6e6e6;box-shadow:-30px 30px 51px rgba(0,0,0,.2)}.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.session-reauthenticate-header{min-height:50px;margin:20px 0;padding:0 15px}.session-reauthenticate-header .session-reauthenticate-header-icon{font-size:60px;line-height:0;float:left;width:68px;margin-top:-8px;color:#f6a821}.session-reauthenticate-header .session-reauthenticate-header-icon i.fa-unlock{margin-left:-23px;color:#48a647}.session-reauthenticate-header .session-reauthenticate-header-title{margin-left:68px}.session-reauthenticate-header .session-reauthenticate-header-title h3{margin-bottom:2px}.session-reauthenticate .form-group input{min-width:100%;margin-left:0 !important}.session-reauthenticate-help-block{display:block;margin-top:4px;margin-bottom:10px;margin-left:2px;color:#737373}@-webkit-keyframes slideInDown{from{visibility:visible;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{visibility:visible;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}.loading-dots:after{content:' .';animation:dots 1s steps(5,end) infinite}@keyframes dots{0,20%{color:white;text-shadow:.25em 0 0 rgba(0,0,0,0),.5em 0 0 rgba(0,0,0,0)}40%{color:#333;text-shadow:.25em 0 0 rgba(0,0,0,0),.5em 0 0 rgba(0,0,0,0)}60%{text-shadow:.25em 0 0 #333,.5em 0 0 rgba(0,0,0,0)}80%,100%{text-shadow:.25em 0 0 #333,.5em 0 0 #333}}.no-controls,.no-controls:after,.no-controls:before{pointer-events:none;color:transparent !important;background:none !important;background-color:transparent !important}html[data-background-style='gainsboro'],html[data-background-style='gainsboro'] body,html[data-background-style='gainsboro'] .container:not(.form-signin-banner),html[data-background-style='gainsboro'] .loader-container,html[data-background-style='gainsboro'] .input-group-addon{background-color:#d6d6d6 !important}html[data-background-style='gainsboro'] .form-signin-banner,html[data-background-style='gainsboro'] .form-signin{border:1px solid rgba(212,212,212,.93);-webkit-box-shadow:2px 3px 2px rgba(0,0,0,.06);box-shadow:2px 3px 2px rgba(0,0,0,.06)}html[data-background-style='gainsboro'] .panel.panel-default{border-color:rgba(150,150,150,.45);border-top-color:rgba(228,228,228,.83);-webkit-box-shadow:1px 2px 2px rgba(0,0,0,.02);box-shadow:1px 2px 2px rgba(0,0,0,.02)}html[data-background-style='gainsboro'] .container-fluid .panel-body .panel.panel-default{border-color:#e8e8e8 !important}@-webkit-keyframes obj-popup{50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@keyframes obj-popup{50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}.obj-popup{position:relative;display:inline-block;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);-webkit-animation-name:obj-popup;animation-name:obj-popup;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:1;animation-iteration-count:1;vertical-align:middle}.fa-mds{font-size:1.1em}.fa-md{font-size:1.2em;line-height:.6em;vertical-align:-10%}.fa-spin-slow{-webkit-animation:fa-spin 3s infinite linear;animation:fa-spin 3s infinite linear}.fa-spin-fast{-webkit-animation:fa-spin 1s infinite linear;animation:fa-spin 1s infinite linear}@-webkit-keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spin3d{0{-webkit-transform:rotate(0) translateZ(0);transform:rotate(0) translateZ(0)}100%{-webkit-transform:rotate(359deg) translateZ(0);transform:rotate(359deg) translateZ(0)}}@keyframes spin3d{0{-webkit-transform:rotate(0) translateZ(0);transform:rotate(0) translateZ(0)}100%{-webkit-transform:rotate(359deg) translateZ(0);transform:rotate(359deg) translateZ(0)}}@-webkit-keyframes dash{0{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}@keyframes dash{0{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}@-webkit-keyframes nprogress-spinner{0{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes nprogress-spinner{0{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@media screen and (max-width:600px),screen and (max-height:600px){nav.favorites-menu ul{font-size:.75em}nav.favorites-menu ul a{padding:10px}}.modal.modal-connection-warning{z-index:999999999}.modal-dialog-update .label.label-default{display:inline-block;margin:-1px}.modal-dialog-update .version_separator{font-size:10px;display:inline-block;float:right;margin-top:-14px}.modal-dialog-update .version_separator+hr{margin-top:13px;margin-bottom:10px}.modal-dialog-update .modal-body>h4:first-child{padding-bottom:4px;border-bottom:1px solid #eee}.modal-dialog-update .modal-body span[data-bugs-container]>a:first-child{margin-left:6px}.modal-dialog-update .modal-body span[data-bugs-container]>a{margin-right:3.5px !important}.modal-dialog-update .modal-body div[data-bugs]{margin-top:-10px;margin-bottom:-8px}.modal-dialog-update .modal-body .version_separator+hr,.modal-dialog-update .modal-body a+hr{border-style:dashed}.modal-dialog-update a.diffctl{margin-top:-2px;margin-bottom:0;padding:0 12px !important;vertical-align:text-bottom}.modal-dialog-update a.changelogctl{margin-bottom:-2px}.modal-dialog-update span[data-released-date] .label,.modal-dialog-update .version_separator .label{border-radius:0}.modal-dialog-update .single_ver{margin-left:-9px}.modal-dialog-update .fa-git-pull,.modal-dialog-update .multi-ver{margin-left:-7px}.modal-dialog-update .modal-body>h4:first-child+.version_separator+.no-data+.version_separator{margin-top:-9px}.modal-dialog-update .modal-body>h4:first-child+.version_separator+.no-data+.version_separator+hr{display:none}.modal-dialog-update [data-fixed-bugs] i.fa{display:block;margin-top:1px}.hr-dashed{border-style:dashed}.hr-no-margin{margin-top:1px;margin-bottom:0}.hr-darker{border-color:rgba(200,200,200,.5)}[draggable=true]{-khtml-user-drag:element}.modal-list-users hr{margin-bottom:13px}@media(max-width:460px){body[data-uri*='sysinfo.cgi'] .col-xs-6{width:100%}}@media(min-width:768px) and (max-width:960px){html[data-slider-fixed='1'] body[data-uri*='sysinfo.cgi'] .col-xs-6{width:100%}}@media(max-width:1280px) and (min-width:960px){html[data-slider-fixed='1'] body[data-uri*='sysinfo.cgi'] .col-md-3,html[data-slider-fixed='1'] body[data-uri*='sysinfo.cgi'] .col-md-6{width:50%}html[data-slider-fixed='1'] body[data-uri*='sysinfo.cgi'] .col-xs-12{width:100%}}@media(min-width:768px){.modal-dialog.modal-dialog-update{width:640px;margin:30px auto}.modal-top-10{margin:10% auto}.modal-md{width:480px}}@media screen and (max-width:767px){.table-responsive{border:0}}@media(max-width:720px){.dataTables_wrapper>.dataTables_filter{display:none}}@media(min-width:1200px){.col-lg-10{width:100%}.col-lg-offset-1{margin-left:0}}@media(min-width:1920px){.container:not(.session_login),.container-fluid,.container-fluid-loading{margin-top:30px}.col-lg-10{width:83.33333333%}.col-lg-offset-1{margin-left:8.33333333%}html[data-slider-fixed='1'] .container:not(.session_login),html[data-slider-fixed='1'] .container-fluid,html[data-slider-fixed='1'] .container-fluid-loading{margin-top:15px}html[data-slider-fixed='1'] .col-lg-10{width:100%}html[data-slider-fixed='1'] .col-lg-offset-1{margin-left:0}}@media(min-width:2560px){.container:not(.session_login),.container-fluid,.container-fluid-loading,html[data-slider-fixed='1'] .container:not(.session_login),html[data-slider-fixed='1'] .container-fluid,html[data-slider-fixed='1'] .container-fluid-loading{margin-top:30px}.col-lg-10,html[data-slider-fixed='1'] .col-lg-10{width:83.33333333%}.col-lg-offset-1,html[data-slider-fixed='1'] .col-lg-offset-1{margin-left:8.33333333%}}@media(max-width:767px){#content.__page{margin:0 !important}.autocomplete-suggestions{min-width:260px !important}html[data-slider-fixed='1'] .right-side-tabs{display:none}html[data-slider-fixed='1']{margin-right:0}}@media screen and (max-width:767px){.loader{margin:-20px 0 !important}.btn-hidden.hidden{display:inline-block !important}}td.ui_buttons_label td.ui_buttons_value{width:20%;vertical-align:top}td.ui_buttons_value{width:80%}td[data-nowrap]{white-space:nowrap}html[data-uri*='virtual-server/delete_domain.cgi'] font[size='+1']{font-size:inherit;color:#e8433f}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.panel .panel-heading .panel-title a:before,td .opener_trigger[id]:before,.panel .panel-heading .panel-title a[aria-expanded='true']:before,td .opener_trigger.opener_container_opened[id]:before,a.opener_extra_container_a_style:before,a.opener_extra_container_a_style.opener_container_opened:before{display:none}}.axis path,.axis line{fill:none;stroke:#000;shape-rendering:crispEdges}.x.axis path{display:none}.line{fill:none;stroke:steelblue;stroke-width:1.5px} \ No newline at end of file diff --git a/unauthenticated/css/palettes/nightrider.min.css b/unauthenticated/css/palettes/nightrider.min.css index 1cde42105..446c6addf 100644 --- a/unauthenticated/css/palettes/nightrider.min.css +++ b/unauthenticated/css/palettes/nightrider.min.css @@ -2,4 +2,4 @@ * Authentic Theme (https://github.com/qooob/authentic-theme) * Copyright Ilia Rostovtsev * Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE) - */html[data-background-style='nightRider'],html[data-background-style='nightRider'] body,html[data-background-style='nightRider'] .container:not(.form-signin-banner),html[data-background-style='nightRider'] .container-fluid,html[data-background-style='nightRider'] .container-fluid-loading,html[data-background-style='nightRider'] .loader-container,html[data-background-style='nightRider'] .input-group-addon{background-color:#1a1c20 !important}html[data-background-style='nightRider'] .panel-title{line-height:14px;margin-top:1px}html[data-background-style='nightRider'] .modal-header.background-success button,html[data-background-style='nightRider'] .modal-header.background-success h4,html[data-background-style='nightRider'] .modal-header.background-primary button,html[data-background-style='nightRider'] .modal-header.background-primary h4,html[data-background-style='nightRider'] .modal-header.background-info button,html[data-background-style='nightRider'] .modal-header.background-info h4,html[data-background-style='nightRider'] .modal-header.background-warning button,html[data-background-style='nightRider'] .modal-header.background-warning h4,html[data-background-style='nightRider'] .modal-header.background-danger button,html[data-background-style='nightRider'] .modal-header.background-danger h4{color:rgba(198,198,198,.73)}html[data-background-style='nightRider'] .panel-title,html[data-background-style='nightRider'] a[data-toggle='collapse']{color:rgba(151,155,160,.82) !important}html[data-background-style='nightRider'] #right-side-tabs>div>div.right-side-tabs-dismiss.pull-right div ul li>a,html[data-background-style='nightRider'] .dropdown-submenu a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container,html[data-background-style='nightRider'] .btn.btn-transparent-link-inverse:hover,html[data-background-style='nightRider'] input.dataTable-mirror,html[data-background-style='nightRider'] font[color='#000000'],html[data-background-style='nightRider'] a.opener_trigger,html[data-background-style='nightRider'] a.help_popup,html[data-background-style='nightRider'] a[style*='color: #333'],html[data-background-style='nightRider'] body:not(.session_login),html[data-background-style='nightRider'] .sub_table_container.xcontent-force-no-styling tr.ui_checked_columns td,html[data-background-style='nightRider'] .sub_table_container.xcontent-force-no-styling tr.ui_checked_columns,html[data-background-style='nightRider'] .ui_form>.table-responsive>.table.table-subtable>tbody>tr>td>table>tbody tr,html[data-background-style='nightRider'] .sub_table_container:not(.xcontent-force-no-styling) *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th):not(font),html[data-background-style='nightRider'] ._c__op_r,html[data-background-style='nightRider'] .link_hover_effect_style,html[data-background-style='nightRider'] .panel,html[data-background-style='nightRider'] .panel-loading,html[data-background-style='nightRider'] .lawobject,html[data-background-style='nightRider'] table tr td label{color:rgba(151,155,160,.82) !important}html[data-background-style='nightRider'] .container-fluid ._c__op_d:hover>a:last-child,html[data-background-style='nightRider'] .container-fluid .panel-heading:hover h4>a,html[data-background-style='nightRider'] .btn.btn-transparent-link-force,html[data-background-style='nightRider'] .btn.btn-transparent-link-force:hover,html[data-background-style='nightRider'] .btn.btn-transparent-link-inverse,html[data-background-style='nightRider'] .text-force-link,html[data-background-style='nightRider'] .text-force-link-hover:hover,html[data-background-style='nightRider'] .btn.dropdown-toggle:not(.no-style-hover):hover,html[data-background-style='nightRider'] body .mppopup .modal-body .table tr td a[onclick*='select']:hover,html[data-background-style='nightRider'] body .mppopup .modal-body .table tr td a[onclick*='parentdir']:hover,html[data-background-style='nightRider'] body .mppopup .modal-body .table tr td a[onclick*='fileclick'][onclick*=', 1']:hover,html[data-background-style='nightRider'] .dataTable thead th,html[data-background-style='nightRider'] a:not(.ddm-link):not(.label):not(.badge):not(.opener_trigger):not(.opener_extra_container_a_style):not([data-toggle='collapse']):not(.help_popup):not(.btn):not(.no_effect):not(.link_hover_effect_style),html[data-background-style='nightRider'] .ui_checked_checkbox,html[data-background-style='nightRider'] .panel-body .ui_table tbody tr td a b{color:rgba(238,153,17,.60) !important}html[data-background-style='nightRider'] .file-manager .dropdown-submenu .fa.fa-files-o,html[data-background-style='nightRider'] #__f__c__m>li>a,html[data-background-style='nightRider'] #__f__c__m>li>a+ul>li a,html[data-background-style='nightRider'] a:not(.opener_trigger):not([data-toggle='collapse']):not(.help_popup):not(.btn)+span[data-tree]>a{color:rgba(172,172,172,.88) !important}html[data-background-style='nightRider'] .file-manager .breadcrumb .fa.fa-caret-down{color:#888}html[data-background-style='nightRider'] .input-group-addon{border:1px solid #4b4e54}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-warning:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-warning{background-color:rgba(247,175,62,.70) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-info:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-info{background-color:rgba(86,192,224,.70) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-success:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-success{background-color:rgba(38,147,115,.73) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-error:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-error{background-color:rgba(219,82,75,.73) !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'],html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs .active a,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']>button,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>button,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']{background:#2d3035 !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey']{border-left:1px solid #36383d !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a:focus,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a:hover,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a{border-left-color:transparent}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data strong,html[data-background-style='nightRider'] .right-side-tabs #acl_logins-acl-collapse>div>div>table.ui_columns>tbody>tr.thead>td>b,html[data-background-style='nightRider'] .right-side-tabs-dismiss i,html[data-background-style='nightRider'] #right-side-tabs .right_pane_favorites_link,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group>a.list-group-item div.media-body>i,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] a.list-group-item .list-group-item-heading,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] button.list-group-item .list-group-item-heading,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane table.table.table-striped.table-hover.table-condensed>thead>tr>th,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:focus,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:visited,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:active,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:hover,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data]+strong{color:rgba(140,145,150,.89)}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item.no-notifications small,html[data-background-style='nightRider'] #right-side-tabs-favorites .no-favorites_data small,html[data-background-style='nightRider'] #right-side-tabs-sysinfo .no-sysinfo_data small,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] #right-side-tabs-notifications .right-side-tabs-notification div.media-body>small,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body a,html[data-background-style='nightRider'] .right-side-tabs .panel-title,html[data-background-style='nightRider'] .panel .panel-heading .panel-title a:before,html[data-background-style='nightRider'] td .opener_trigger[id]:before,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data],html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data] a{color:rgba(118,122,127,.89) !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item:last-child,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs,html[data-background-style='nightRider'] #right-side-tabs-favorites .no-favorites_data,html[data-background-style='nightRider'] #right-side-tabs-sysinfo .no-sysinfo_data{border-color:rgba(62,65,70,.57)}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] div.media-body>small,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table td,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table tr,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table td,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead{border-color:#44464e !important}html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body{border-top-color:#44464e;border-bottom-color:#44464e}html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn:active,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn:focus,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']>.btn:focus,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn{background-color:#2f3238 !important}html[data-background-style='nightRider'] .right-side-tabs .badge-danger,html[data-background-style='nightRider'] .right-side-tabs .bg-dark-red{background-color:#a94442 !important}html[data-background-style='nightRider'] .right-side-tabs .badge-danger:hover,html[data-background-style='nightRider'] .right-side-tabs .bg-dark-red:hover{background-color:#a23d3b !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-warning:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-warning{background-color:rgba(247,175,62,.70) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-info:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-info{background-color:rgba(86,192,224,.70) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-success:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-success{background-color:rgba(38,147,115,.73) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-error:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-error{background-color:rgba(219,82,75,.73) !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'],html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs .active a,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']>button,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>button,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']{background:#2d3035 !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey']{border-left:1px solid #36383d !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a:focus,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a:hover,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a{border-left-color:transparent}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data strong,html[data-background-style='nightRider'] .right-side-tabs #acl_logins-acl-collapse>div>div>table.ui_columns>tbody>tr.thead>td>b,html[data-background-style='nightRider'] .right-side-tabs-dismiss i,html[data-background-style='nightRider'] #right-side-tabs .right_pane_favorites_link,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group>a.list-group-item div.media-body>i,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] a.list-group-item .list-group-item-heading,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] button.list-group-item .list-group-item-heading,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane table.table.table-striped.table-hover.table-condensed>thead>tr>th,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:focus,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:visited,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:active,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:hover,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data]+strong{color:rgba(140,145,150,.89)}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item.no-notifications small,html[data-background-style='nightRider'] #right-side-tabs-favorites .no-favorites_data small,html[data-background-style='nightRider'] #right-side-tabs-sysinfo .no-sysinfo_data small,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] #right-side-tabs-notifications .right-side-tabs-notification div.media-body>small,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body a,html[data-background-style='nightRider'] .right-side-tabs .panel-title,html[data-background-style='nightRider'] .panel .panel-heading .panel-title a:before,html[data-background-style='nightRider'] td .opener_trigger[id]:before,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data],html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data] a{color:rgba(118,122,127,.89) !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item:last-child,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs,html[data-background-style='nightRider'] #right-side-tabs-favorites .no-favorites_data,html[data-background-style='nightRider'] #right-side-tabs-sysinfo .no-sysinfo_data{border-color:rgba(62,65,70,.57)}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] div.media-body>small,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table td,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table tr,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table td,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead{border-color:#44464e !important}html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body{border-top-color:#44464e;border-bottom-color:#44464e}html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn:active,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn:focus,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']>.btn:focus,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn{background-color:#2f3238 !important}html[data-background-style='nightRider'] .right-side-tabs .badge-danger,html[data-background-style='nightRider'] .right-side-tabs .bg-dark-red{background-color:#a94442 !important}html[data-background-style='nightRider'] .right-side-tabs .badge-danger:hover,html[data-background-style='nightRider'] .right-side-tabs .bg-dark-red:hover{background-color:#a23d3b !important}html[data-background-style='nightRider'] #system-status .badge-custom{color:rgba(255,255,255,0.52) !important}html[data-background-style='nightRider'] .bg-semi-transparent{background-color:rgba(121,125,141,0.23) !important}html[data-background-style='nightRider'] .bg-success{color:rgba(255,255,255,.52) !important;background-color:#61725a !important}html[data-background-style='nightRider'] .bg-info{color:rgba(255,255,255,.52) !important;background-color:#596e78 !important}html[data-background-style='nightRider'] .bg-warning{color:rgba(255,255,255,.52) !important;background-color:#686246 !important}html[data-background-style='nightRider'] .bg-danger{color:rgba(255,255,255,.52) !important;background-color:#654a4a !important}html[data-background-style='nightRider'] .bg-primary{color:rgba(255,255,255,.52) !important;background-color:#546c81 !important}html[data-background-style='nightRider'] .bg-success-dark{background-color:#61725a !important}html[data-background-style='nightRider'] .bg-info-dark{background-color:#596e78 !important}html[data-background-style='nightRider'] .bg-warning-dark{background-color:#686246 !important}html[data-background-style='nightRider'] .bg-danger-dark{background-color:#654a4a !important}html[data-background-style='nightRider'] .bg-primary-dark{background-color:#546c81 !important}html[data-background-style='nightRider'] .alert-warning:hover,html[data-background-style='nightRider'] .alert-warning{color:rgba(234,239,238,.70);border-color:rgba(222,180,93,.13);background-color:rgba(128,118,64,.08)}html[data-background-style='nightRider'] tr[bgcolor='#ff8888'],html[data-background-style='nightRider'] .alert-danger:hover,html[data-background-style='nightRider'] .alert-danger{color:rgba(234,239,238,.70);border-color:rgba(224,60,87,.15);background-color:rgba(145,94,94,.88)}html[data-background-style='nightRider'] .alert-info:hover,html[data-background-style='nightRider'] .alert-info{color:rgba(234,239,238,.70);border-color:rgba(65,108,117,.29);background-color:rgba(131,162,177,.20)}html[data-background-style='nightRider'] .alert-success:hover,html[data-background-style='nightRider'] .alert-success{color:rgba(234,239,238,.70);border-color:rgba(71,101,47,.33);background-color:rgba(62,118,38,.20)}html[data-background-style='nightRider'] .graph-container>.graph{background-color:rgba(133,138,143,.17)}html[data-background-style='nightRider'] .graph-container>.graph>.bar{color:rgba(255,255,255,.47);border-right-color:#ca524f;background-color:rgba(169,68,66,.78)}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:1%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:2%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:3%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:4%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:5%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:6%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:7%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:8%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:9%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:10%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:11%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:12%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:13%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:14%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:15%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:16%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:17%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:18%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:19%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:20%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:21%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:22%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:23%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:24%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:25%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:26%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:27%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:28%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:29%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:30%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:31%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:32%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:33%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:34%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:35%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:36%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:37%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:38%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:39%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:40%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:41%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:42%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:43%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:44%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:45%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:46%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:47%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:48%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:49%']{border-right-color:#18aa80;background-color:#21795f}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:50%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:51%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:52%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:53%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:54%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:55%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:56%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:57%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:58%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:59%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:60%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:61%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:62%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:63%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:64%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:65%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:66%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:67%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:68%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:69%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:70%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:71%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:72%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:73%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:74%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:75%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:76%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:77%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:78%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:79%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:80%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:81%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:82%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:83%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:84%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:85%']{border-right-color:#ab844c;background-color:#8a6939}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:0%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: 0%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:0'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: 0'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:-'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: -']{border-right-color:#515151;background-color:#444950}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:-'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: -']{color:#aaa}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){html[data-background-style='nightRider'] .graph-container>.graph>.bar{border-right-color:#515151 !important;background-color:#444950 !important}}html[data-background-style='nightRider'] font[color='green'],html[data-background-style='nightRider'] font[color='#00aa00'],html[data-background-style='nightRider'] .text-success{color:rgba(59,214,59,.44) !important}html[data-background-style='nightRider'] font[color='orange']{color:#a2782c !important}html[data-background-style='nightRider'] font[color='#ff4400'],html[data-background-style='nightRider'] font[color='#ff0000']{color:rgba(232,67,63,.66) !important}html[data-background-style='nightRider'] font[color='#0000ff']{color:rgba(81,114,204,.66) !important}html[data-background-style='nightRider'] .btn-default{color:#a8abad !important;border-color:rgba(80,85,99,.75) !important;background-color:rgba(97,103,121,.07) !important}html[data-background-style='nightRider'] .btn-default:hover,html[data-background-style='nightRider'] .btn-default:focus,html[data-background-style='nightRider'] .btn-default.focus{color:#fff !important;border-color:#505563 !important;outline:0 !important;background-color:rgba(97,103,121,.1) !important;-webkit-box-shadow:none !important;box-shadow:none !important}html[data-background-style='nightRider'] .badge-success{color:rgba(221,221,221,.82) !important;background-color:rgba(38,147,115,.60) !important}html[data-background-style='nightRider'] .badge-warning{color:rgba(244,244,244,.82) !important;background-color:rgba(195,141,64,.65) !important}html[data-background-style='nightRider'] body>div.right-side-tabs-toggler>.btn-primary.btn-menu-toggler .badge,html[data-background-style='nightRider'] .label-danger,html[data-background-style='nightRider'] #right-side-tabs .right-side-tab-notification-asterix,html[data-background-style='nightRider'] .badge-danger{color:#ddd !important;background-color:#a94442 !important}html[data-background-style='nightRider'] #sidebar ul.user-links li:not(.menu-container):not(.sub-wrapper){border:1px solid rgba(255,255,255,.04)}html[data-background-style='nightRider'] .info-container .graph-container>.graph>.description{color:#222}html[data-background-style='nightRider'] body .mppopup .modal-body .table tr td img{filter:saturate(.9) brightness(.8) contrast(.7);-webkit-filter:saturate(.9) brightness(.8) contrast(.7)}html[data-background-style='nightRider'] .breadcrumbx{background:#3a3c41}html[data-background-style='nightRider'] .breadcrumbx a{background:rgba(42,45,49,.78)}html[data-background-style='nightRider'] ::-webkit-scrollbar-track-piece{background-color:rgba(83,85,88,.60)}html[data-background-style='nightRider'] ::-webkit-scrollbar-thumb{border:2px solid #484b4f;background-color:#373a41}html[data-background-style='nightRider'] ::-webkit-scrollbar-thumb:hover{background-color:rgba(202,133,21,.80)}html[data-background-style='nightRider'] #list_form tbody tr.hl-aw.m-not-active:not(.m-active),html[data-background-style='nightRider'] .panel-body form .table-hardcoded tbody tr td>table.table-striped tbody>tr.hl-aw.ui_checked_columns:nth-of-type(odd) td,html[data-background-style='nightRider'] .panel-body form .table-hardcoded tbody tr td>table.table-striped tbody>tr.hl-aw.ui_checked_columns:nth-of-type(even) td,html[data-background-style='nightRider'] body[data-module*='htaccess-htpasswd'] #DataTables_Table_0>tbody>tr.hl-aw:nth-child(odd) td>table.ui_grid_table tr.ui_grid_row td,html[data-background-style='nightRider'] body[data-module*='htaccess-htpasswd'] #DataTables_Table_0>tbody>tr.hl-aw:nth-child(even) td>table.ui_grid_table tr.ui_grid_row td,html[data-background-style='nightRider'] form[action='save_newshells.cgi'] .hl-aw:nth-of-type(odd),body[class*='file-manager'] #list_form tbody tr.checked:hover,html[data-background-style='nightRider'] .hl-aw{background-color:#3d353b !important}html[data-background-style='nightRider'] .file-manager .breadcrumb>li a+span[data-tree] a:hover,html[data-background-style='nightRider'] .dropdown-menu>li>a:hover,html[data-background-style='nightRider'] .dropdown-menu>li>a:focus,html[data-background-style='nightRider'] .dropdown-submenu>li>a:hover,html[data-background-style='nightRider'] .dropdown-submenu>li>a:focus,html[data-background-style='nightRider'] .hl-ow,html[data-background-style='nightRider'] body[class*='file-manager'] #list_form tbody tr:hover,html[data-background-style='nightRider'] #list_form tbody tr.checked:hover.m-active.m-not-active,html[data-background-style='nightRider'] #list_form tbody tr:hover.m-active.m-not-active,html[data-background-style='nightRider'] #list_form tbody tr.m-active,.panel-body form .table-hardcoded tbody tr td>table.table-striped tbody>tr:hover.ui_checked_columns:nth-of-type(odd) td,.panel-body form .table-hardcoded tbody tr td>table.table-striped tbody>tr:hover.ui_checked_columns:nth-of-type(even) td,html[data-background-style='nightRider'] body[data-module*='htaccess-htpasswd'] #DataTables_Table_0>tbody>tr:hover:nth-child(odd) td>table.ui_grid_table tr.ui_grid_row td,html[data-background-style='nightRider'] body[data-module*='htaccess-htpasswd'] #DataTables_Table_0>tbody>tr:hover:nth-child(even) td>table.ui_grid_table tr.ui_grid_row td,html[data-background-style='nightRider'] tr.atshover:hover td kbd,html[data-background-style='nightRider'] tr.atshover:hover td code,html[data-background-style='nightRider'] tr.atshover:hover td div,html[data-background-style='nightRider'] tr.atshover:hover td:not(.atscontent) span:not(.awobject),html[data-background-style='nightRider'] tr.atshover:hover td,html[data-background-style='nightRider'] #atsettings>form>div>table>tbody>tr>td>table>tbody>tr.atshover:hover,html[data-background-style='nightRider'] #atsettings>form>div>table>tbody>tr>td>table>tbody>tr.atshover:hover td div,html[data-background-style='nightRider'] #atsettings>form>div>table>tbody>tr>td>table>tbody>tr.atshover:hover td,html[data-background-style='nightRider'][data-script-name*='settings-user.cgi'] div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form#settings_>div>table>tbody>tr>td>table>tbody>tr:hover td:not([colspan='2']),html[data-background-style='nightRider'] body:not(.csf) .panel-body:not(.xqcontent-forced) .table-striped:not(.table-subtable)>tbody>tr:hover,html[data-background-style='nightRider'] body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td b,html[data-background-style='nightRider'] body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td a,html[data-background-style='nightRider'] body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td,html[data-background-style='nightRider'] .table-hover>tbody>tr.ui_checked_columns:hover,html[data-background-style='nightRider'] .panel-body form[action='script_form.cgi'] table tbody tr:not(.thead):not(.ui_checked_columns):hover td:not(._c__op_d):not(.opener_table_cell_style_small),html[data-background-style='nightRider'] .table-hover>tbody>tr:not(.tr_tag):hover{background-color:#393737 !important}html[data-background-style='nightRider'] .opener_sub_container .table-hardcoded,html[data-background-style='nightRider'] ._c__op_r,html[data-background-style='nightRider'] .panel,html[data-background-style='nightRider'] .panel-loading{border-color:rgba(99,99,99,.18);background-color:#2f3238 !important}html[data-background-style='nightRider'] #right-side-tabs .panel[data-sorter]{background-color:#2d3035 !important}html[data-background-style='nightRider'] mark{color:#aaa;background-color:#584819}html[data-background-style='nightRider'] .favorites.xcustom-favorites.fa-star-o,html[data-background-style='nightRider'] #headln2c>.favorites.fa-star-o{color:rgba(201,201,201,.30)}html[data-background-style='nightRider'] .favorites.xcustom-favorites.fa-star,html[data-background-style='nightRider'] #headln2c>.favorites.fa-star{color:#8f6b37 !important}html[data-background-style='nightRider'] .favorites.xcustom-favorites.fa-star:not(.dummy):hover:before,html[data-background-style='nightRider'] #headln2c .favorites.fa-star:not(.dummy):hover:before{content:'\f091';color:rgba(219,82,75,.69)}html[data-background-style='nightRider'] .favorites.xcustom-favorites.fa-star-o:not(.dummy):hover,html[data-background-style='nightRider'] #headln2c .favorites.fa-star-o:not(.dummy):hover{color:rgba(39,255,184,.2)}html[data-background-style='nightRider'] .xcustom-favorites.fa.fa-star:before,html[data-background-style='nightRider'] #headln2c>.fa.fa-star:before{content:'\f091'}html[data-background-style='nightRider'] .panel-default-loading>.panel-heading-loading,html[data-background-style='nightRider'] .panel-default>.panel-heading{color:rgba(201,201,201,.70);border-color:#242528;background-color:rgba(39,43,48,.69)}html[data-background-style='nightRider'] .ui_form>.ui_grid_table.table-hardcoded:not(.sub_table_container):not(.ui_radio_table):not(.ui_grid_table),html[data-background-style='nightRider'] .panel-body .ui_form table.table .opener_shown table tbody tr,html[data-background-style='nightRider'] .panel-body .table-responsive table.table-subtable tbody tr td.col_value table.table,html[data-background-style='nightRider'] .panel-body>form>table:not(.table-hardcoded)>tbody>tr,html[data-background-style='nightRider'] .panel-body>form>table>tbody,html[data-background-style='nightRider'] .table table,html[data-background-style='nightRider'] table.ui_grid_table tbody{border-color:#242528}html[data-background-style='nightRider'] .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#242528}html[data-background-style='nightRider'] .ui_table thead>tr>th,html[data-background-style='nightRider'] .ui_table tbody>tr>th,html[data-background-style='nightRider'] .ui_table tfoot>tr>th,html[data-background-style='nightRider'] .ui_table thead>tr>td,html[data-background-style='nightRider'] .ui_table tbody>tr>td,html[data-background-style='nightRider'] .ui_table tfoot>tr>td,html[data-background-style='nightRider'] .table>thead>tr>th,html[data-background-style='nightRider'] .table>tbody>tr>th,html[data-background-style='nightRider'] .table>tfoot>tr>th,html[data-background-style='nightRider'] .table>thead>tr>td,html[data-background-style='nightRider'] .table>tbody>tr>td,html[data-background-style='nightRider'] .table>tfoot>tr>td{border-top-color:rgba(63,65,71,.52)}html[data-background-style='nightRider'] .table>thead>tr:first-child>th,html[data-background-style='nightRider'] .table>tbody>tr:first-child>th,html[data-background-style='nightRider'] .table>tfoot>tr:first-child>th,html[data-background-style='nightRider'] .table>thead>tr:first-child>td,html[data-background-style='nightRider'] .table>tbody>tr:first-child>td,html[data-background-style='nightRider'] .table>tfoot>tr:first-child>td{border-color:#252729}html[data-background-style='nightRider'] .popover-content .table>thead>tr:first-child>th,html[data-background-style='nightRider'] .popover-content .table>tbody>tr:first-child>th,html[data-background-style='nightRider'] .popover-content .table>tfoot>tr:first-child>th,html[data-background-style='nightRider'] .popover-content .table>thead>tr:first-child>td,html[data-background-style='nightRider'] .popover-content .table>tbody>tr:first-child>td,html[data-background-style='nightRider'] .popover-content .table>tfoot>tr:first-child>td{border-color:#41464d}html[data-background-style='nightRider'] .ui_form>.ui_grid_table.table-hardcoded:not(.sub_table_container):not(.ui_radio_table):not(.ui_grid_table),html[data-background-style='nightRider'] .panel-body .ui_form table.table .opener_shown table tbody tr,html[data-background-style='nightRider'] .panel-body .table-responsive table.table-subtable tbody tr td.col_value table.table,html[data-background-style='nightRider'] .panel-body>form>table:not(.table-hardcoded)>tbody>tr,html[data-background-style='nightRider'] .panel-body>form>table>tbody,html[data-background-style='nightRider'] .table table,html[data-background-style='nightRider'] table.ui_grid_table tbody{border-color:#424449}html[data-background-style='nightRider'] pre:not(.CodeMirror-line){border:1px solid #424449}html[data-background-style='nightRider'] .CodeMirror,html[data-background-style='nightRider'] .panel-body>form>.CodeMirror{border:1px solid #393c41;border-top:0}html[data-background-style='nightRider'] pre:not(.CodeMirror-line),html[data-background-style='nightRider'] .cm-s-monokai.CodeMirror{color:rgba(255,255,255,.85);background:#2a2c2e}html[data-background-style='nightRider'] .cm-s-monokai span.cm-comment{color:#777}html[data-background-style='nightRider'] .cm-s-monokai .CodeMirror-gutters{background:#272828}html[data-background-style='nightRider'] .cm-s-monokai .CodeMirror-activeline-background{background:#3b3e42}html[data-background-style='nightRider'] .cm-s-monokai .CodeMirror-linenumber{color:#606060}html[data-background-style='nightRider'] .CodeMirror-dialog-top{border-bottom-color:#404040}html[data-background-style='nightRider'] .modal-dialog-update .modal-body>h4:first-child{border-bottom-color:rgba(76,79,84,.40)}html[data-background-style='nightRider'] .modal-dialog-update .modal-body .version_separator+hr,html[data-background-style='nightRider'] .modal-dialog-update .modal-body a+hr{border-style:dashed !important}html[data-background-style='nightRider'] .hr-dashed{border-style:dashed !important}html[data-background-style='nightRider'] .modal-dialog-update a[data-update-force]{color:#47756b}html[data-background-style='nightRider'] .modal-dialog-update a[data-update-force]:hover{color:#6c8482}html[data-background-style='nightRider'] .CodeMirror-focused .CodeMirror-selected{background-color:#bfb19e !important}html[data-background-style='nightRider'] .CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background-color:#bfb19e !important}html[data-background-style='nightRider'] .CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background-color:#bfb19e !important}html[data-background-style='nightRider'] .table-subtable>tbody>tr:nth-child(odd){background-color:transparent}html[data-background-style='nightRider'] .sub_table_container:not(.xcontent-force-no-styling) *:not(.popover):not(.popover-title):not(.popover-content):not(.arrow):not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th):not(textarea):not(select):not(.opener_table_cell_style_small):not(.link_hover_effect),html[data-background-style='nightRider'] .table .table,html[data-background-style='nightRider'] body>div.modal.fade.fade5.mppopup.in>div>div>div.modal-footer>div>div>input[type='text'],html[data-background-style='nightRider'] #atsettings>form>div>table>tbody>tr>td>table>tbody>tr>td.col_value.atscontent>span>div.bootstrap-tagsinput>input[type='text'],html[data-background-style='nightRider'] .atshover .bootstrap-tagsinput:hover .tag [data-role='remove'],html[data-background-style='nightRider'] .atshover:hover .bootstrap-tagsinput .tag [data-role='remove'],html[data-background-style='nightRider'] .bootstrap-tagsinput .tag [data-role='remove']{background-color:transparent !important}html[data-background-style='nightRider'] .bootstrap-tagsinput .label,html[data-background-style='nightRider'] code{background-color:rgba(249,242,244,.11) !important}html[data-background-style='nightRider'] code{color:#f43566 !important}html[data-background-style='nightRider'] .panel-heading.panel-heading-cxs code{background-color:transparent !important;color:rgba(151,155,160,0.82) !important}html[data-background-style='nightRider'] .bootstrap-tagsinput .label{color:rgba(255,255,255,.80) !important}html[data-background-style='nightRider'] tr td:hover+td>span>.bootstrap-tagsinput .label,html[data-background-style='nightRider'] tr td:hover>span>.bootstrap-tagsinput .label{color:rgba(0,0,0,.60) !important}html[data-background-style='nightRider'] body.shell #content>div>div>div.panel-body>div>table>tbody>tr>td>table>tbody>tr>td>pre,html[data-background-style='nightRider'] .-shell-port- pre{border:0 !important;background-color:#060606 !important}html[data-background-style='nightRider'] table.table.table-striped.table-condensed>thead>tr:first-child,html[data-background-style='nightRider'] table.dataTable{border-top:1px solid #3d3f43 !important;border-right:1px solid #3a3c41 !important;border-left:1px solid #3a3c41 !important}html[data-background-style='nightRider'] td.col_value>table.table.table-striped.table-condensed>thead>tr{border-top:1px solid #3d3f43 !important}html[data-background-style='nightRider'] .custom_table_head,html[data-background-style='nightRider'] td.col_value>table.table.table-striped.table-condensed>thead>tr>th{background-color:#292c32}html[data-background-style='nightRider'] a.opener_extra_container_a_style:before,html[data-background-style='nightRider'] .panel .panel-heading .panel-title a:before,html[data-background-style='nightRider'] td .opener_trigger[id]:before{color:#525459}html[data-background-style='nightRider'] .awcheckbox label::before,html[data-background-style='nightRider'] .awradio label::before{border-color:rgba(95,96,99,.41);background-color:rgba(67,70,75,.48)}html[data-background-style='nightRider'] .awcheckbox label::after{color:#999}html[data-background-style='nightRider'] .awradio label::after{background-color:#999}html[data-background-style='nightRider'] .panel-heading .header a.btn{border-color:#3d3f43}html[data-background-style='nightRider'] table,html[data-background-style='nightRider'] .bootstrap-tagsinput,html[data-background-style='nightRider'] table.dataTable{border-color:#393b40 !important}html[data-background-style='nightRider'] .bootstrap-tagsinput{border:1px solid #e0e0e0;background-color:#2f3237}html[data-background-style='nightRider'] .bootstrap-tagsinput>input{background-color:rgba(197,38,38,0) !important}html[data-background-style='nightRider'] .bootstrap-tagsinput .label{color:#bdc5ce !important;background-color:rgba(121,123,132,.28) !important}html[data-background-style='nightRider'] #att_new>form:nth-child>table.table.table-striped.table-hover.table-condensed>tbody:nth-child>tr>td>input[type='image'],html[data-background-style='nightRider'] .bootstrap-tagsinput .tag [data-role='remove']{background-color:transparent !important}html[data-background-style='nightRider'] .bootstrap-tagsinput .tag [data-role='remove']:hover{color:red !important}html[data-background-style='nightRider'] body[class*='postgresql']:not(.__non_res__) #DataTables_Table_0>tbody>tr:nth-child(even):not(.hl-aw):not(:hover)>td,html[data-background-style='nightRider'] body[class*='postgresql']:not(.__non_res__) #DataTables_Table_1>tbody>tr:nth-child(even):not(.hl-aw):not(:hover)>td,html[data-background-style='nightRider'] body[class*='mysql']:not(.__non_res__) #DataTables_Table_0>tbody>tr:nth-child(even):not(.hl-aw):not(:hover)>td,html[data-background-style='nightRider'] body[class*='mysql']:not(.__non_res__) #DataTables_Table_1>tbody>tr:nth-child(even):not(.hl-aw):not(:hover)>td{background-color:#2a2d31 !important}html[data-background-style='nightRider'] .table-striped>tbody>tr:nth-child(even){background-color:#2a2d31}html[data-background-style='nightRider'] body[data-module*='htaccess-htpasswd'] #DataTables_Table_0>tbody>tr:nth-child(even) td>table.ui_grid_table tr.ui_grid_row td{background-color:#2a2d31 !important}html[data-background-style='nightRider'] .opener_extra_container_a_style,html[data-background-style='nightRider'] .opener_extra_container_style,html[data-background-style='nightRider'] .opener_shown table tbody tr,html[data-background-style='nightRider'] a.help_popup+.popover>.popover-content tt{background-color:#2f3237 !important}html[data-background-style='nightRider'] .sub_table_container.xcontent-force-no-styling tr.ui_checked_columns td,html[data-background-style='nightRider'] .sub_table_container.xcontent-force-no-styling tr.ui_checked_columns,html[data-background-style='nightRider'] .ui_form>.table-responsive>.table.table-subtable>tbody>tr>td>table>tbody tr,html[data-background-style='nightRider'] .table-striped>tbody>tr:nth-child(odd){background-color:#2f3237}html[data-background-style='nightRider'] table thead{background-color:rgba(42,45,49,.6)}.panel-body form .table-hardcoded tbody tr td>table.table-striped tbody>tr.ui_checked_columns:nth-of-type(even) td,html[data-background-style='nightRider'] .panel-body form table tbody tr.thead td,html[data-background-style='nightRider'] tr.thead,html[data-background-style='nightRider'] .table-title,html[data-background-style='nightRider'] .panel-body form+table.table-hardcoded>tbody>tr.thead>td{color:rgba(201,201,201,.73) !important;border-color:rgba(57,59,64,.95) !important;background-color:rgba(44,47,52,.50) !important}html[data-background-style='nightRider'] .table-striped>tbody>tr:nth-child(even) td>table.ui_grid_table tr.ui_grid_row td,html[data-background-style='nightRider'] .table-hover tr[bgcolor='#ffffff']._c__op_r+tr[bgcolor='#feffff']:hover{background-color:#2a2d31 !important}html[data-background-style='nightRider'] tr[bgcolor='#feffff'] td,html[data-background-style='nightRider'] .panel-body form table tbody tr:not(.thead) td,html[data-background-style='nightRider'] .col_header_custom,html[data-background-style='nightRider'] form[action='save_check.cgi']>b,html[data-background-style='nightRider'] .col_header b{border-color:rgba(57,59,64,.95) !important;border-top-width:1px !important;border-right:0 !important;border-left:0 !important}html[data-background-style='nightRider'] .panel-body form table:not(.ui_form_end_buttons) tbody tr:not(.thead):not(.ui_checked_columns) td:not(._c__op_d):not(.opener_table_cell_style_small):not(.hl-ow),html[data-background-style='nightRider'] .col_header_custom,html[data-background-style='nightRider'] form[action='save_check.cgi']>b,html[data-background-style='nightRider'] .col_header b{background-color:#2f3237 !important}html[data-background-style='nightRider'] .panel-body form table tbody tr:not(.thead) td._c__op_d{border-right:1px solid #393b3f !important;border-left:1px solid #393b3f !important}html[data-background-style='nightRider'] .file-manager .breadcrumb>li a+span[data-tree]{border:1px solid rgba(66,68,73,.78);background:rgba(47,50,56,.89)}html[data-background-style='nightRider'] .file-manager .breadcrumb .fa.fa-caret-right:hover,html[data-background-style='nightRider'] .file-manager .breadcrumb .fa.fa-caret-down:hover{color:#717171;border-color:#424449}html[data-background-style='nightRider'] .file-manager .btn-group.pull-right>.btn-group>button.btn-inverse,html[data-background-style='nightRider'] .file-manager .btn-group.pull-right>button.btn-inverse{border-color:rgba(66,68,73,.82) !important;background-color:#2f3237 !important}html[data-background-style='nightRider'] .file-manager .dropdown-menu{border:1px solid rgba(66,68,73,.78);background:rgba(47,50,56,.95)}html[data-background-style='nightRider'] .file-manager .dropdown-menu li.disabled{opacity:.5}html[data-background-style='nightRider'] .dropdown-submenu>a:after{border-left-color:rgba(204,204,204,.35)}html[data-background-style='nightRider'] .file-manager .fa-minus-circle.file-manager-remove-bookmark,html[data-background-style='nightRider'] .dropdown-menu>li>span,html[data-background-style='nightRider'] .file-manager .dropdown-menu a:not(.opener_trigger):not([data-toggle='collapse']):not(.help_popup):not(.btn),html[data-background-style='nightRider'] .file-manager>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>div.btn-group.pull-right>div>ul.at-o__f_m-favorites-dropdown>li>*{color:rgba(172,172,172,.67) !important}html[data-background-style='nightRider'] .dropdown-menu>li>span:hover,html[data-background-style='nightRider'] .dropdown-menu>li>span:focus,html[data-background-style='nightRider'] .file-manager .dropdown-menu>li>a:hover,html[data-background-style='nightRider'] .file-manager .dropdown-menu>li>a:focus{background-color:rgba(67,69,72,.54)}html[data-background-style='nightRider'] .well{border:1px solid rgba(77,80,87,.28);background-color:rgba(65,67,71,.21)}html[data-background-style='nightRider'] .dropdown-menu .divider{background-color:#424449}html[data-background-style='nightRider'] .breadcrumb>li+li:before{color:#666}html[data-background-style='nightRider'] .file-manager .table-striped>tbody>tr td:nth-child(2) img{filter:saturate(.4) brightness(.75) contrast(.9);-webkit-filter:saturate(.4) brightness(.75) contrast(.9)}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs{border-bottom-color:#424449;background:#2f3237}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs>li{border-bottom-color:#eee}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs>li>a{color:#444 !important;border:1px solid #424449;background:#2f3237}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs>li>a:hover{border:1px solid #424449;background:#2c2f33}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs>li.active>a{border-color:#424449;border-top:2px solid #3f7e76;border-bottom:1px solid #2f3238;background:#2c2f33}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs>li>a>i{color:#a34746}html[data-background-style='nightRider'] .file-manager .ui_checked_columns.directory_go_up.hl-aw td{background:#2f3238}html[data-background-style='nightRider'] .file-manager .jsPanel .dropdown{top:3px}html[data-background-style='nightRider'] .file-manager .jsPanel .dropdown-menu li html[data-background-style='nightRider'] .file-manager .jsPanel .dropdown-menu li a{color:#fff !important}@-moz-document url-prefix(){html[data-background-style='nightRider'] .file-manager .jsPanel .dropdown{top:2px}}html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar{margin-top:-2px}html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-encoding-label]{margin-top:-10px}html[data-background-style='nightRider'] .jsPanel .jsPanel-content{border-top-color:transparent !important;border-bottom:1px solid #393c41}html[data-background-style='nightRider'] .file-manager .jsPanel-title,html[data-background-style='nightRider'] .file-manager .jsPanel-replacement .jsPanel-title,html[data-background-style='nightRider'] .file-manager .jsPanel-replacement .jsPanel-btn span{color:rgba(255,255,255,.66) !important}html[data-background-style='nightRider'] .file-manager .jsPanel-hdr{color:rgba(255,255,255,.66);border:1px solid #393c41;border-bottom-color:0;background:#292c32}html[data-background-style='nightRider'] .file-manager .cspinner .cspinner-icon,html[data-background-style='nightRider'] .file-manager .table .cspinner .cspinner-icon{border-top-color:#333;border-left-color:#777}html[data-background-style='nightRider'] .file-manager .jsPanel-hdr ._filemanager_file_editor_save .cspinner .cspinner-icon{border-top-color:#aaa;border-left-color:#fff}html[data-background-style='nightRider'] .file-manager .jsPanel-hdr i:not(.fa-edit):hover,html[data-background-style='nightRider'] .file-manager .jsPanel-hdr span:hover{color:#69768d}html[data-background-style='nightRider'] .fa-question-circle.-helper:hover,html[data-background-style='nightRider'] .file-manager .jsPanel-hdr h3 small,html[data-background-style='nightRider'] .file-manager .jsPanel-hdr h3{color:#ddd}html[data-background-style='nightRider'] .file-manager .jsPanel-hdr>.jsPanel-hdr-r{top:2px}html[data-background-style='nightRider'] .file-manager .jsPanel-content{background:#2a2c2e}html[data-background-style='nightRider'] .pagination>.active>a,html[data-background-style='nightRider'] .pagination>.active>span,html[data-background-style='nightRider'] .pagination>.active>a:hover,html[data-background-style='nightRider'] .pagination>.active>span:hover,html[data-background-style='nightRider'] .pagination>.active>a:focus,html[data-background-style='nightRider'] .pagination>.active>span:focus{border-color:rgba(51,122,183,.44);background-color:rgba(51,122,183,.28)}html[data-background-style='nightRider'] .pagination>.disabled>span,html[data-background-style='nightRider'] .pagination>.disabled>span:hover,html[data-background-style='nightRider'] .pagination>.disabled>span:focus,html[data-background-style='nightRider'] .pagination>.disabled>a,html[data-background-style='nightRider'] .pagination>.disabled>a:hover,html[data-background-style='nightRider'] .pagination>.disabled>a:focus{border-color:#383a3f;background-color:#2f3237}html[data-background-style='nightRider'] .pagination>li>a,html[data-background-style='nightRider'] .pagination>li>span{border:1px solid #383a3f;background-color:#2a2d31}html[data-background-style='nightRider'] .breadcrumb,html[data-background-style='nightRider'] tr[bgcolor='#feffff']{border-color:#393d43 !important;background-color:#2f3237}html[data-background-style='nightRider'] .sub_table_container:not(.xcontent-force-no-styling) *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th):not(textarea):not(select):not(.opener_table_cell_style_small):not(.link_hover_effect):not(.popover-title):not(.arrow){background-color:#31353b !important}html[data-background-style='nightRider'] input[type='button']:not(.btn-success):not(.btn-primary):not(.btn-info):not(.btn-danger):not(.btn-warning),html[data-background-style='nightRider'] #show_backup_destination>tbody,html[data-background-style='nightRider'] .ui_form:not([action='save_iptables.cgi']):not([action='export_mod.cgi/theme.ubt.gz']):not([action='add.cgi']):not([action='save_storage.cgi']):not([action='save_repl.cgi']):not([action='download.cgi']):not([action='upload.cgi']):not([action='install_mod.cgi']):not([action='save_newretention.cgi']):not([action='add_style.cgi']):not([action='save_validate.cgi']):not([action='mass_create.cgi']):not([action='migrate.cgi']):not([action='save_bkey.cgi/key.txt']) div.table-responsive table.table-subtable tbody tr td>table.sub_table_container tbody tr td.col_value table.table-hardcoded tbody{border:1px solid #424449 !important}html[data-background-style='nightRider'] #att_simple .table tbody tr:first-child td:first-child>table:first-child tr:nth-last-child(2),html[data-background-style='nightRider'] .table.table-striped>tbody,html[data-background-style='nightRider'] .table-hardcoded>tbody>tr>td>.table-hardcoded>tbody,html[data-background-style='nightRider'] .table.table-striped.table-condensed .opener_container .table-hardcoded table,html[data-background-style='nightRider'] .panel-body form+table.table-hardcoded tbody tr[bgcolor='#feffff'],html[data-background-style='nightRider'] .panel-body form+table.table-hardcoded tbody tr[bgcolor='#ffffff']{border-color:#3a3c41 !important}html[data-background-style='nightRider'] .btn:not(.btn-link):not(.btn-menu-toggler):not(.dropdown-toggle):before{background:rgba(255,255,255,.020) !important}html[data-background-style='nightRider'] .table.table-striped.table-condensed .opener_container,html[data-background-style='nightRider'] .opener_container{border-right:1px solid #393b3f !important;border-left:1px solid #393b3f !important}html[data-background-style='nightRider'] .opener_container.opener_sub_container,html[data-background-style='nightRider'] .opener_sub_container.margined-top{border-color:transparent !important}.panel-body form .ui_grid_table tbody tr.ui_grid_row td.ui_grid_cell>table.table tbody>tr.ui_checked_columns td{border-top:1px solid rgba(61,63,67,.58) !important;background-color:rgba(42,45,49,.2) !important}html[data-background-style='nightRider'] body[class='acl'] .panel-body>h3{border-bottom:1px solid rgba(76,79,84,.40) !important}html[data-background-style='nightRider'] .opener_container .opener_shown hr,html[data-background-style='nightRider'] hr{border-top:1px solid rgba(76,79,84,.40) !important}html[data-background-style='nightRider'] .btn:active,html[data-background-style='nightRider'] .btn.active{box-shadow:none !important}html[data-background-style='nightRider'] .ui_link.btn.btn-inverse.btn-tiny.ui_link_replaced,html[data-background-style='nightRider'] .btn-inverse.btn-tiny,html[data-background-style='nightRider'] .btn-tiny,html[data-background-style='nightRider'] .btn{color:rgba(199,199,200,.60) !important;border-color:rgba(80,85,99,.61) !important;background-color:transparent !important}html[data-background-style='nightRider'] .btn.btn-borderless{border-color:transparent !important}html[data-background-style='nightRider'] .btn.diffctl,html[data-background-style='nightRider'] .btn.bctl{border-color:transparent !important}html[data-background-style='nightRider'] .ui_link.btn.btn-inverse.btn-tiny.ui_link_replaced:hover,html[data-background-style='nightRider'] .btn-inverse.btn-tiny:hover,html[data-background-style='nightRider'] .btn-tiny:hover{border-color:#585d6e !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .panel-body p>a[href^='edit_part.cgi'],html[data-background-style='nightRider'] table+a[href^='edit_part.cgi'],html[data-background-style='nightRider'] .panel-body>.table.table-striped+.ui_link,html[data-background-style='nightRider'] .panel-body>.ui_link,html[data-background-style='nightRider'] input[type='submit'],html[data-background-style='nightRider'] input[type='button'],html[data-background-style='nightRider'] .btn-default{color:#a8abad !important;border-color:rgba(80,85,99,.75) !important;background-color:rgba(97,103,121,.07) !important}html[data-background-style='nightRider'] .btn-default:focus,html[data-background-style='nightRider'] .btn-default.focus{color:#fff !important;border-color:#505563 !important;outline:0 !important;background-color:rgba(97,103,121,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .panel-body p>a[href^='edit_part.cgi']:hover,html[data-background-style='nightRider'] .panel-body p>a[href^='edit_part.cgi']:focus,html[data-background-style='nightRider'] table+a[href^='edit_part.cgi']:hover,html[data-background-style='nightRider'] table+a[href^='edit_part.cgi']:focus,html[data-background-style='nightRider'] .panel-body>.table.table-striped+.ui_link:hover,html[data-background-style='nightRider'] .panel-body>.table.table-striped+.ui_link:focus,html[data-background-style='nightRider'] .panel-body>.ui_link:hover,html[data-background-style='nightRider'] .panel-body>.ui_link:focus,html[data-background-style='nightRider'] input[type='button']:hover,html[data-background-style='nightRider'] input[type='submit']:hover,html[data-background-style='nightRider'] input[type='button']:focus,html[data-background-style='nightRider'] input[type='submit']:focus,html[data-background-style='nightRider'] .btn-default:hover{color:#fff !important;border-color:#505563 !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] input[type='button']:focus+.file_chooser_button_attached,html[data-background-style='nightRider'] button>i.fa-chevron-circle-right,html[data-background-style='nightRider'] input[onclick*='datePicker']+.fa-calendar,html[data-background-style='nightRider'] .file-input-wrapper:hover i,html[data-background-style='nightRider'] input:hover+.file_chooser_button_attached,html[data-background-style='nightRider'] .file_chooser_button:hover i,html[data-background-style='nightRider'] .file_chooser_button_emulate:hover,html[data-background-style='nightRider'] .file_chooser_button:hover,html[data-background-style='nightRider'] .file-input-wrapper:hover{color:#8e8e8e !important;background-color:transparent !important}html[data-background-style='nightRider'] .fa.fa-paperclip,html[data-background-style='nightRider'] .fa.fa-files-o,html[data-background-style='nightRider'] .file_chooser_button_attached{color:#a8abad !important;background-color:transparent}html[data-background-style='nightRider'] input[data-mmclick],html[data-background-style='nightRider'] .file_chooser_button{margin-left:-5px !important}html[data-background-style='nightRider'] .file_chooser_button[style*='width:100%']{margin-left:0 !important}html[data-background-style='nightRider'] .tooltip-inner{color:#acaeb2;background-color:#1e2125}html[data-background-style='nightRider'] .tooltip.top .tooltip-arrow{border-top-color:#1e2125}html[data-background-style='nightRider'] .tooltip.top-left .tooltip-arrow{border-top-color:#1e2125}html[data-background-style='nightRider'] .tooltip.top-right .tooltip-arrow{border-top-color:#1e2125}html[data-background-style='nightRider'] .tooltip.right .tooltip-arrow{border-right-color:#1e2125}html[data-background-style='nightRider'] .tooltip.left .tooltip-arrow{border-left-color:#1e2125}html[data-background-style='nightRider'] .tooltip.bottom .tooltip-arrow{border-bottom-color:#1e2125}html[data-background-style='nightRider'] .tooltip.bottom-left .tooltip-arrow{border-bottom-color:#1e2125}html[data-background-style='nightRider'] .tooltip,html[data-background-style='nightRider'] .popover{background-color:transparent}html[data-background-style='nightRider'] .popover-content{color:#acaeb2 !important;background-color:#35393f !important}html[data-background-style='nightRider'] .popover-title{color:#b0b0b0;border-bottom-color:#242528;background-color:#2f3238 !important}html[data-background-style='nightRider'] .popover.left>.arrow:after{right:2px;border-left-color:#35393f}html[data-background-style='nightRider'] .popover.right>.arrow:after{left:2px;border-right-color:#35393f}html[data-background-style='nightRider'] .popover.right>.arrow{border-right-color:rgba(0,0,0,.15)}html[data-background-style='nightRider'] tr.thead,html[data-background-style='nightRider'] .table-title,html[data-background-style='nightRider'] .panel-body form+table.table-hardcoded>tbody>tr.thead>td,html[data-background-style='nightRider'] .panel,html[data-background-style='nightRider'] .panel-loading{border-top-width:1px !important}html[data-background-style='nightRider'] .opener_shown table tbody tr td{padding-left:1px !important}html[data-background-style='nightRider'] .dropdown-menu{background-color:#292b31}html[data-background-style='nightRider'] .datepicker-dropdown.datepicker-orient-top:after{border-top:6px solid #292b31}html[data-background-style='nightRider'] ._c__op_d,html[data-background-style='nightRider'] .tab-pane .table-responsive .table-subtable .table-title{border-top:1px solid #3a3c41 !important}html[data-background-style='nightRider'] .table-hover ._c__op_r:hover,html[data-background-style='nightRider'] .table-hover ._c__op_d:hover,html[data-background-style='nightRider'] .table-hover ._c__op_r,html[data-background-style='nightRider'] .table-hover ._c__op_d{border-color:rgba(61,63,67,.81) !important;background-color:#2b2e34}html[data-background-style='nightRider'] .row.icons-row.vertical-align[style*='border-']{border-top-color:#3d3f43 !important;border-bottom-color:#3d3f43 !important}html[data-background-style='nightRider'] .opener_table_style_small .table-title,html[data-background-style='nightRider'] .opener_table_style_small .sub_table_container.table-hardcoded{border:1px solid #3d3f43 !important}html[data-background-style='nightRider'] .opener_table_style_small .opener_container.margined-top,html[data-background-style='nightRider'] .opener_table_style .opener_container.margined-top{border-bottom:1px solid #3d3f43 !important}html[data-background-style='nightRider'] .link_hover_effect_style{background:transparent !important}html[data-background-style='nightRider'] .opener_table_cell_style_small_exclusion_border_top{border-top-width:1px !important;border-top-color:#424449 !important;border-bottom-color:#424449 !important}html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style>div.opener_extra_container.opener_extra_container_style{border:0 !important;border-bottom:1px solid rgba(66,68,73,.78) !important}html[data-background-style='nightRider'] p+.opener_container.opener_sub_container.margined-top,html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style+.opener_container.opener_sub_container.margined-top,html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style{border:1px solid rgba(66,68,73,.78) !important}html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style a.opener_extra_container_a_style,html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style{background-color:#292c32 !important}html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style a.opener_extra_container_a_style{color:rgba(151,155,160,.94) !important}html[data-background-style='nightRider'] .col_header.opener_table_cell_style_small{background-color:#2c2f34 !important}html[data-background-style='nightRider'] input[type='range']::-webkit-slider-runnable-track{background:rgba(255,255,255,.27)}html[data-background-style='nightRider'] input[type='range']::-webkit-slider-thumb{background:#aaa}html[data-background-style='nightRider'] input[type='range']:focus::-webkit-slider-runnable-track{background:rgba(255,255,255,.47)}html[data-background-style='nightRider'] input[type='range']::-moz-range-track{background:rgba(255,255,255,.27)}html[data-background-style='nightRider'] input[type='range']::-moz-range-thumb{background:#aaa}html[data-background-style='nightRider'] input[type='range']::-ms-fill-lower{background:#777}html[data-background-style='nightRider'] input[type='range']::-ms-fill-upper{background:rgba(255,255,255,.27)}html[data-background-style='nightRider'] input[type='range']::-ms-thumb{background:#aaa}html[data-background-style='nightRider'] input[type='range']:focus::-ms-fill-lower{background:#888}html[data-background-style='nightRider'] input[type='range']:focus::-ms-fill-upper{background:rgba(255,255,255,.47)}html[data-background-style='nightRider'] .modal-header{border-bottom:1px solid #35363b}html[data-background-style='nightRider'] .modal-content{border:1px solid #35363b;background-color:#2a2d32;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}html[data-background-style='nightRider'] .modal-footer{border-top:1px solid #35363b}html[data-background-style='nightRider'] .close{opacity:.3;color:#fff;text-shadow:0 1px 0 #36383d}html[data-background-style='nightRider'] .close:hover,html[data-background-style='nightRider'] .close:focus{opacity:.7;color:#fff}html[data-background-style='nightRider'] button.file-input-wrapper:hover,html[data-background-style='nightRider'] button.file_chooser_button:hover,html[data-background-style='nightRider'] button.file_chooser_button:focus,html[data-background-style='nightRider'] button.file_chooser_button:active,html[data-background-style='nightRider'] button.file_chooser_button.active,html[data-background-style='nightRider'] button:focus>.fa-files-o{background-color:transparent !important}html[data-background-style='nightRider'] .btn-default:active,html[data-background-style='nightRider'] .btn-default.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-default{color:#fff !important;border-color:#505563 !important;background-color:#32363c !important}html[data-background-style='nightRider'] .btn-default:active:hover,html[data-background-style='nightRider'] .btn-default.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-default:hover,html[data-background-style='nightRider'] .btn-default:active:focus,html[data-background-style='nightRider'] .btn-default.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-default:focus,html[data-background-style='nightRider'] .btn-default:active.focus,html[data-background-style='nightRider'] .btn-default.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-default.focus{color:#fff !important;border-color:#798094 !important;outline:0 !important;background-color:rgba(97,103,121,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-default:active,html[data-background-style='nightRider'] .btn-default.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-default{background-image:none !important}html[data-background-style='nightRider'] .btn-default.disabled:hover,html[data-background-style='nightRider'] .btn-default[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-default:hover,html[data-background-style='nightRider'] .btn-default.disabled:focus,html[data-background-style='nightRider'] .btn-default[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-default:focus,html[data-background-style='nightRider'] .btn-default.disabled.focus,html[data-background-style='nightRider'] .btn-default[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-default.focus{border-color:#505563 !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .btn-default .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .badge.fa.fa-github{background-color:rgba(28,28,28,.73)}html[data-background-style='nightRider'] .badge.fa.fa-github:hover{background-color:rgba(230,230,230,.08)}html[data-background-style='nightRider'] .badge.background-info.fa.fa-twitter{color:rgba(255,255,255,.58)}html[data-background-style='nightRider'] .badge.background-info.fa.fa-twitter:hover{background-color:rgba(78,212,251,.4)}html[data-background-style='nightRider'] a.label,html[data-background-style='nightRider'] a.badge{color:#8e8f92}html[data-background-style='nightRider'] .background-success{background-color:rgba(38,147,115,.57)}html[data-background-style='nightRider'] .background-primary{background-color:rgba(24,134,189,.41)}html[data-background-style='nightRider'] .background-info{background-color:rgba(79,167,193,.38)}html[data-background-style='nightRider'] .background-warning{background-color:rgba(181,121,28,.38)}html[data-background-style='nightRider'] .background-danger{background-color:rgba(190,60,57,.42)}html[data-background-style='nightRider'] .atshover:hover .bootstrap-tagsinput .label,html[data-background-style='nightRider'] .atshover .bootstrap-tagsinput:hover .label{color:#2f3238 !important;background-color:rgba(121,123,132,.91) !important}html[data-background-style='nightRider'] .label-warning{color:rgba(198,198,198,.76);background-color:rgba(207,157,87,.33)}html[data-background-style='nightRider'] .label-default{color:#2f3238 !important;border:1px solid rgba(70,72,75,.48);background-color:rgba(18,20,23,.06)}html[data-background-style='nightRider'] .label-default:hover{color:#a3a3a4;border:1px solid rgba(70,72,75,.73);background-color:rgba(18,20,23,.32)}html[data-background-style='nightRider'] .modal.in .label-default{color:#8d8d8d !important;border:1px solid rgba(70,72,75,.48);background-color:#282b30}html[data-background-style='nightRider'] .modal.in .label-default:hover{color:#a3a3a4;border:1px solid rgba(70,72,75,.73);background-color:rgba(18,20,23,.32)}html[data-background-style='nightRider'] .badge-custom{color:#939393;background-color:rgba(240,240,240,.04)}html[data-background-style='nightRider'] .btn-grey{color:#a8abad !important;border-color:rgba(80,85,99,.61) !important;background-color:transparent !important}html[data-background-style='nightRider'] .btn-grey:focus,html[data-background-style='nightRider'] .btn-grey.focus{color:#fff !important;border-color:#505563 !important;outline:0 !important;background-color:rgba(97,103,121,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-grey:hover{color:#fff !important;border-color:#505563 !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .btn-grey:active,html[data-background-style='nightRider'] .btn-grey.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-grey{color:#fff !important;border-color:#505563 !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .btn-grey:active:hover,html[data-background-style='nightRider'] .btn-grey.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-grey:hover,html[data-background-style='nightRider'] .btn-grey:active:focus,html[data-background-style='nightRider'] .btn-grey.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-grey:focus,html[data-background-style='nightRider'] .btn-grey:active.focus,html[data-background-style='nightRider'] .btn-grey.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-grey.focus{color:#fff !important;border-color:#798094 !important;outline:0 !important;background-color:rgba(97,103,121,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-grey:active,html[data-background-style='nightRider'] .btn-grey.active,.open>.dropdown-toggle.btn-grey{background-image:none !important}html[data-background-style='nightRider'] .btn-grey.disabled:hover,html[data-background-style='nightRider'] .btn-grey[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-grey:hover,html[data-background-style='nightRider'] .btn-grey.disabled:focus,html[data-background-style='nightRider'] .btn-grey[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-grey:focus,html[data-background-style='nightRider'] .btn-grey.disabled.focus,html[data-background-style='nightRider'] .btn-grey[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-grey.focus{border-color:#505563 !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .btn-grey .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .btn-primary:not(.page_footer_submit){color:#bfc9d3 !important;border-color:rgba(15,131,201,.7) !important;background-color:rgba(15,131,201,.07) !important}html[data-background-style='nightRider'] .btn-primary.page_footer_submit{color:#bfc9d3 !important;border-color:rgba(15,131,201,.68) !important;background-color:rgba(15,131,201,.15) !important}html[data-background-style='nightRider'] .ui_form_end_submit .cspinner .cspinner-icon.dark{border-top-color:#aaa;border-left-color:#fff}html[data-background-style='nightRider'] .btn-primary.page_footer_submit:hover{color:#fff !important;border-color:rgba(15,131,201,.80) !important;background-color:rgba(15,131,201,.25) !important}html[data-background-style='nightRider'] .btn-primary:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.focus:not(.page_footer_submit){color:#fff !important;border-color:#0f83c9 !important;outline:0 !important;background-color:rgba(15,131,201,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-primary:hover:not(.page_footer_submit){color:#fff !important;border-color:#0f83c9 !important;background-color:rgba(15,131,201,.1) !important}html[data-background-style='nightRider'] .btn-primary:active:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.active:not(.page_footer_submit),html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-primary{color:#fff !important;border-color:#0f83c9 !important;background-color:rgba(15,131,201,.1) !important}html[data-background-style='nightRider'] .btn-primary:active:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.active:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-primary:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary:active:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.active:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-primary:focus,html[data-background-style='nightRider'] .btn-primary:active.focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.active.focus:not(.page_footer_submit),html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-primary.focus:not(.page_footer_submit){color:#fff !important;border-color:#1d9fee !important;outline:0 !important;background-color:rgba(15,131,201,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-primary:active:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.active:not(.page_footer_submit),.open>.dropdown-toggle.btn-primary{background-image:none !important}html[data-background-style='nightRider'] .btn-primary.disabled:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary[disabled]:hover:not(.page_footer_submit),html[data-background-style='nightRider'] fieldset[disabled] .btn-primary:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.disabled:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary[disabled]:focus:not(.page_footer_submit),html[data-background-style='nightRider'] fieldset[disabled] .btn-primary:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.disabled.focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary[disabled].focus:not(.page_footer_submit),html[data-background-style='nightRider'] fieldset[disabled] .btn-primary.focus:not(.page_footer_submit){border-color:#0f83c9 !important;background-color:rgba(15,131,201,.1) !important}html[data-background-style='nightRider'] .btn-primary:not(.page_footer_submit) .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] b.btn.btn-success.btn-tiny,html[data-background-style='nightRider'] .btn-success{color:#bfc9d3 !important;border-color:rgba(27,191,137,.55) !important;background-color:rgba(27,191,137,.07) !important}html[data-background-style='nightRider'] b.btn.btn-success.btn-tiny:focus,html[data-background-style='nightRider'] .btn-success:focus,html[data-background-style='nightRider'] .btn-success.focus{color:#fff !important;border-color:#1bbf89 !important;outline:0 !important;background-color:rgba(27,191,137,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] b.btn.btn-success.btn-tiny:hover,html[data-background-style='nightRider'] .btn-success:hover{color:#fff !important;border-color:#1bbf89 !important;background-color:rgba(27,191,137,.1) !important}html[data-background-style='nightRider'] .btn-success:active,html[data-background-style='nightRider'] .btn-success.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-success{color:#fff !important;border-color:#1bbf89 !important;background-color:rgba(27,191,137,.1) !important}html[data-background-style='nightRider'] .btn-success:active:hover,html[data-background-style='nightRider'] .btn-success.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-success:hover,html[data-background-style='nightRider'] .btn-success:active:focus,html[data-background-style='nightRider'] .btn-success.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-success:focus,html[data-background-style='nightRider'] .btn-success:active.focus,html[data-background-style='nightRider'] .btn-success.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-success.focus{color:#fff !important;border-color:#2ce1a5 !important;outline:0 !important;background-color:rgba(27,191,137,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-success:active,html[data-background-style='nightRider'] .btn-success.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-success{background-image:none !important}html[data-background-style='nightRider'] .btn-success.disabled:hover,html[data-background-style='nightRider'] .btn-success[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-success:hover,html[data-background-style='nightRider'] .btn-success.disabled:focus,html[data-background-style='nightRider'] .btn-success[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-success:focus,html[data-background-style='nightRider'] .btn-success.disabled.focus,html[data-background-style='nightRider'] .btn-success[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-success.focus{border-color:#1bbf89 !important;background-color:rgba(27,191,137,.1) !important}html[data-background-style='nightRider'] .btn-success .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .btn-info{color:#bfc9d3 !important;border-color:rgba(86,192,224,.72) !important;background-color:rgba(86,192,224,.07) !important}html[data-background-style='nightRider'] .btn-info:focus,html[data-background-style='nightRider'] .btn-info.focus{color:#fff !important;border-color:#56c0e0 !important;outline:0 !important;background-color:rgba(86,192,224,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-info:hover{color:#fff !important;border-color:#56c0e0 !important;background-color:rgba(86,192,224,.1) !important}html[data-background-style='nightRider'] .btn-info:active,html[data-background-style='nightRider'] .btn-info.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-info{color:#fff !important;border-color:#56c0e0 !important;background-color:rgba(86,192,224,.1) !important}html[data-background-style='nightRider'] .btn-info:active:hover,html[data-background-style='nightRider'] .btn-info.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-info:hover,html[data-background-style='nightRider'] .btn-info:active:focus,html[data-background-style='nightRider'] .btn-info.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-info:focus,html[data-background-style='nightRider'] .btn-info:active.focus,html[data-background-style='nightRider'] .btn-info.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-info.focus{color:#fff !important;border-color:#81d0e8 !important;outline:0 !important;background-color:rgba(86,192,224,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-info:active,html[data-background-style='nightRider'] .btn-info.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-info{background-image:none !important}html[data-background-style='nightRider'] .btn-info.disabled:hover,html[data-background-style='nightRider'] .btn-info[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-info:hover,html[data-background-style='nightRider'] .btn-info.disabled:focus,html[data-background-style='nightRider'] .btn-info[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-info:focus,html[data-background-style='nightRider'] .btn-info.disabled.focus,html[data-background-style='nightRider'] .btn-info[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-info.focus{border-color:#56c0e0 !important;background-color:rgba(86,192,224,.1) !important}html[data-background-style='nightRider'] .btn-info .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .btn-warning{color:#bfc9d3 !important;border-color:rgba(247,175,62,.68) !important;background-color:rgba(247,175,62,.07) !important}html[data-background-style='nightRider'] .btn-warning:focus,html[data-background-style='nightRider'] .btn-warning.focus{color:#fff !important;border-color:#f7af3e !important;outline:0 !important;background-color:rgba(247,175,62,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-warning:hover{color:#fff !important;border-color:#f7af3e !important;background-color:rgba(247,175,62,.1) !important}html[data-background-style='nightRider'] .btn-warning:active,html[data-background-style='nightRider'] .btn-warning.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-warning{color:#fff !important;border-color:#f7af3e !important;background-color:rgba(247,175,62,.1) !important}html[data-background-style='nightRider'] .btn-warning:active:hover,html[data-background-style='nightRider'] .btn-warning.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-warning:hover,html[data-background-style='nightRider'] .btn-warning:active:focus,html[data-background-style='nightRider'] .btn-warning.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-warning:focus,html[data-background-style='nightRider'] .btn-warning:active.focus,html[data-background-style='nightRider'] .btn-warning.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-warning.focus{color:#fff !important;border-color:#f9c36f !important;outline:0 !important;background-color:rgba(247,175,62,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-warning:active,html[data-background-style='nightRider'] .btn-warning.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-warning{background-image:none !important}html[data-background-style='nightRider'] .btn-warning.disabled:hover,html[data-background-style='nightRider'] .btn-warning[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-warning:hover,html[data-background-style='nightRider'] .btn-warning.disabled:focus,html[data-background-style='nightRider'] .btn-warning[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-warning:focus,html[data-background-style='nightRider'] .btn-warning.disabled.focus,html[data-background-style='nightRider'] .btn-warning[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-warning.focus{border-color:#f7af3e !important;background-color:rgba(247,175,62,.1) !important}html[data-background-style='nightRider'] .btn-warning .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .btn-danger{color:#bfc9d3 !important;border-color:rgba(219,82,75,.69) !important;background-color:rgba(219,82,75,.07) !important}html[data-background-style='nightRider'] .btn-danger:focus,html[data-background-style='nightRider'] .btn-danger.focus{color:#fff !important;border-color:#db524b !important;outline:0 !important;background-color:rgba(219,82,75,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-danger:hover{color:#fff !important;border-color:#db524b !important;background-color:rgba(219,82,75,.1) !important}html[data-background-style='nightRider'] .btn-danger:active,html[data-background-style='nightRider'] .btn-danger.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-danger{color:#fff !important;border-color:#db524b !important;background-color:rgba(219,82,75,.1) !important}html[data-background-style='nightRider'] .btn-danger:active:hover,html[data-background-style='nightRider'] .btn-danger.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-danger:hover,html[data-background-style='nightRider'] .btn-danger:active:focus,html[data-background-style='nightRider'] .btn-danger.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-danger:focus,html[data-background-style='nightRider'] .btn-danger:active.focus,html[data-background-style='nightRider'] .btn-danger.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-danger.focus{color:#fff !important;border-color:#e47b75 !important;outline:0 !important;background-color:rgba(219,82,75,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-danger:active,html[data-background-style='nightRider'] .btn-danger.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-danger{background-image:none !important}html[data-background-style='nightRider'] .btn-danger.disabled:hover,html[data-background-style='nightRider'] .btn-danger[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-danger:hover,html[data-background-style='nightRider'] .btn-danger.disabled:focus,html[data-background-style='nightRider'] .btn-danger[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-danger:focus,html[data-background-style='nightRider'] .btn-danger.disabled.focus,html[data-background-style='nightRider'] .btn-danger[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-danger.focus{border-color:#db524b !important;background-color:rgba(219,82,75,.1) !important}html[data-background-style='nightRider'] .btn-danger .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .btn-default:hover,html[data-background-style='nightRider'] .btn-default:active,html[data-background-style='nightRider'] .btn-default:active:focus,html[data-background-style='nightRider'] .btn-default:focus,html[data-background-style='nightRider'] .btn-default.active{background-color:#3d404c !important}html[data-background-style='nightRider'] .btn-link:hover,html[data-background-style='nightRider'] .btn-link:active,html[data-background-style='nightRider'] .btn-link:active:focus,html[data-background-style='nightRider'] .btn-link:focus,html[data-background-style='nightRider'] .btn-link.active{text-decoration:none !important;color:#f6a821 !important}html[data-background-style='nightRider'] .btn-group .btn+.btn,html[data-background-style='nightRider'] .btn-group .btn+.btn-group,html[data-background-style='nightRider'] .btn-group .btn-group+.btn,html[data-background-style='nightRider'] .btn-group .btn-group+.btn-group{margin-left:-1px}html[data-background-style='nightRider'] .btn-group .btn+.btn.btn-default{margin-left:0 !important}html[data-background-style='nightRider'] .btn-link,html[data-background-style='nightRider'] .btn-link{color:#767676;border-color:rgba(61,63,67,.55) !important}html[data-background-style='nightRider'] .btn-link:hover,html[data-background-style='nightRider'] .btn-link:focus{color:#e91;border-color:rgba(61,63,67,.99) !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .btn-link-bordered:hover,html[data-background-style='nightRider'] .btn-link-bordered:focus,html[data-background-style='nightRider'] .btn-link-bordered:active,html[data-background-style='nightRider'] .btn-link-bordered.active,html[data-background-style='nightRider'] .btn-link-bordered{border:1px solid #444649 !important}html[data-background-style='nightRider'] .btn-link-bordered:hover,html[data-background-style='nightRider'] .btn-link-bordered:focus{border:1px solid rgba(147,107,37,.72) !important}html[data-background-style='nightRider'] input:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']){color:#bbb}html[data-background-style='nightRider'] div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>.row.icons-row .icons-container a.icon_link{color:rgba(182,182,182,.71) !important}html[data-background-style='nightRider'] .row.icons-row .icons-container img{filter:saturate(0) brightness(.6) contrast(1.5);-webkit-filter:saturate(0) brightness(.6) contrast(1.5)}html[data-background-style='nightRider'] .row.icons-row .icons-container:hover img{filter:saturate(.6) brightness(1.2) contrast(.6);-webkit-filter:saturate(.6) brightness(1.2) contrast(.6)}html[data-background-style='nightRider'] .row.icons-row .small-icons-container:not(.highlighted),html[data-background-style='nightRider'] .row.icons-row .icons-container:not(.highlighted){background:linear-gradient(to bottom,rgba(255,255,255,.05) 0,rgba(255,255,255,.02) 100%) repeat scroll 0 0 transparent}html[data-background-style='nightRider'] .row.icons-row .small-icons-container.highlighted,html[data-background-style='nightRider'] .row.icons-row .icons-container.highlighted{background:#3d353b !important}html[data-background-style='nightRider'] .row.icons-row .small-icons-container,html[data-background-style='nightRider'] .row.icons-row .icons-container{border:1px solid #43464b;border-bottom:1px solid #3f4247}html[data-background-style='nightRider'] body form>div>div>span.hidden-forged-7>a>i,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-selected,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-select,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-edit{color:rgba(238,153,17,.60)}html[data-background-style='nightRider'] body form>div>div>span.hidden-forged-7>a>i:hover,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-selected:hover,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-select:hover,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-edit:hover{color:rgba(219,82,75,.79)}html[data-background-style='nightRider'] .row.icons-row .icon_link{color:#cacaca;text-shadow:none}html[data-background-style='nightRider'] input:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']):not(.dataTable-mirror):not(.sidebar-search):not(.form-control-rea),html[data-background-style='nightRider'] textarea:not([disabled]),html[data-background-style='nightRider'] textarea.form-control:not([disabled]),html[data-background-style='nightRider'] select:not([disabled]),html[data-background-style='nightRider'] input.form-control:not(.sidebar-search):not([disabled]){color:rgba(151,155,160,.94) !important;border-color:rgba(78,81,87,.37) !important;background:#2f3237 !important}html[data-background-style='nightRider'] select[multiple] option:checked{background:linear-gradient(#757980,#757980)}html[data-background-style='nightRider'] select option{background:#3c3f46}html[data-background-style='nightRider'] select[name='settings_font_family'] option[disabled]{display:none}html[data-background-style='nightRider'] input:focus:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']):not(.dataTable-mirror):not(.sidebar-search),html[data-background-style='nightRider'] textarea:focus,html[data-background-style='nightRider'] textarea.form-control:focus,html[data-background-style='nightRider'] select:focus,html[data-background-style='nightRider'] .dataTables_filter input[type='search']:focus,html[data-background-style='nightRider'] .dataTables_filter input[type='search']:hover,html[data-background-style='nightRider'] .csf input[type='text']:not(.dataTable-mirror):focus,html[data-background-style='nightRider'] .csf input[type='search']:focus,html[data-background-style='nightRider'] input[id^='CSF']:focus,html[data-background-style='nightRider'] input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.sidebar-search):focus{border-color:rgba(137,106,17,.74) !important;-webkit-box-shadow:none !important;box-shadow:none !important}html[data-background-style='nightRider'] input:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']),html[data-background-style='nightRider'] input:focus:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']){background-color:transparent !important}html[data-background-style='nightRider'] input[disabled]:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']),html[data-background-style='nightRider'] .file_chooser_button_preview.disabled,html[data-background-style='nightRider'] .file_chooser_button_preview.disabled i,html[data-background-style='nightRider'] .file-input-wrapper.disabled,html[data-background-style='nightRider'] .file-input-wrapper.disabled i,html[data-background-style='nightRider'] select[disabled],html[data-background-style='nightRider'] select[multiple][disabled] option,html[data-background-style='nightRider'] .form-control[disabled],html[data-background-style='nightRider'] .form-control[readonly],html[data-background-style='nightRider'] input[disabled].form-control.ui_textarea,html[data-background-style='nightRider'] input[disabled],html[data-background-style='nightRider'] fieldset[disabled] .form-control,html[data-background-style='nightRider'] .sub_table_container button[disabled],html[data-background-style='nightRider'] .sub_table_container select[disabled],html[data-background-style='nightRider'] .sub_table_container input[disabled]{cursor:not-allowed;color:#555 !important;border-color:rgba(78,81,87,.2) !important;background:rgba(92,92,92,.05) !important}html[data-background-style='nightRider'] input[disabled]+.lawobject{opacity:.1}html[data-background-style='nightRider'] .loader_initial_square1,html[data-background-style='nightRider'] .loader_initial_square2,html[data-background-style='nightRider'] .ui_form .table-responsive .table-subtable .table.table-striped.table-hover.table-condensed thead tr th{background-color:#2f3238 !important}html[data-background-style='nightRider'] .initial_loader_container .loading span{color:#999;text-shadow:1px 1px 0 rgba(0,50,90,.3)}html[data-background-style='nightRider'] .datepicker table tr td span.active:active,html[data-background-style='nightRider'] .datepicker table tr td span.active:hover:active,html[data-background-style='nightRider'] .datepicker table tr td span.active.disabled:active,html[data-background-style='nightRider'] .datepicker table tr td span.active.disabled:hover:active,html[data-background-style='nightRider'] .datepicker table tr td span.active.active,html[data-background-style='nightRider'] .datepicker table tr td span.active:hover.active,html[data-background-style='nightRider'] .datepicker table tr td span.active.disabled.active,html[data-background-style='nightRider'] .datepicker table tr td span.active.disabled:hover.active html[data-background-style='nightRider'] .datepicker table tr td.active:active,html[data-background-style='nightRider'] .datepicker table tr td.active.highlighted:active,html[data-background-style='nightRider'] .datepicker table tr td.active.active,html[data-background-style='nightRider'] .datepicker table tr td.active.highlighted.active{background-color:#27455b}html[data-background-style='nightRider'] .datepicker .datepicker-switch:hover,html[data-background-style='nightRider'] .datepicker .prev:hover,html[data-background-style='nightRider'] .datepicker .next:hover,html[data-background-style='nightRider'] .datepicker tfoot tr th:hover,html[data-background-style='nightRider'] .datepicker table tr td span:hover,html[data-background-style='nightRider'] .datepicker table tr td span.focused,html[data-background-style='nightRider'] .datepicker table tr td.day:hover,html[data-background-style='nightRider'] .datepicker table tr td.focused{background-color:#373b40}html[data-background-style='nightRider'] .nav-tabs{border-bottom:1px solid #3a3c41}html[data-background-style='nightRider'] .panel-body table.table table table.table td{border-left-color:#3a3c41}html[data-background-style='nightRider'] table.table table table.table tbody td{border-top-color:#3a3c41}html[data-background-style='nightRider'] .nav-tabs>li>a:hover{border-color:#3a3c41 #3a3c41 #3a3c41}html[data-background-style='nightRider'] .nav-tabs>li.active>a,html[data-background-style='nightRider'] .nav-tabs>li.active>a:hover,html[data-background-style='nightRider'] .nav-tabs>li.active>a:focus{color:#eaeaea;border:1px solid #3a3c41;border-bottom-color:transparent;background-color:#2f3238}html[data-background-style='nightRider'] .nav>li>a:hover,html[data-background-style='nightRider'] .nav>li>a:focus{background-color:#3a3c41}html[data-background-style='nightRider'] table.dataTable thead .sorting{opacity:.8;background:url(../../../images/palettes/nightRider/sort_both.png) no-repeat center left}html[data-background-style='nightRider'] table.dataTable thead .sorting_asc{background:url(../../../images/palettes/nightRider/sort_asc.png) no-repeat center left}html[data-background-style='nightRider'] table.dataTable thead .sorting_desc{background:url(../../../images/palettes/nightRider/sort_desc.png) no-repeat center left}html[data-background-style='nightRider'] .piechart .percent{color:#b0b0b1}html[data-background-style='nightRider'] .piechart .label{color:#8e8e8e}html[data-background-style='nightRider'] body[class*='postgresql']:not(.__non_res__) form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed th,html[data-background-style='nightRider'] body[class*='mysql']:not(.__non_res__) form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed th{border-right:1px dotted #4b4b4b}html[data-background-style='nightRider'] body[class*='postgresql']:not(.__non_res__) .container-resizeable-head,html[data-background-style='nightRider'] body[class*='mysql']:not(.__non_res__) .container-resizeable-head{border-top-color:#393b40;border-right-color:#393b40;border-bottom-color:#393b40;background-color:#2d3035}html[data-background-style='nightRider'] .db_editor_collapse:hover{color:#a94442}html[data-background-style='nightRider'] body[class*='php-pear'][data-uri*='view.cgi'] .table .table-hardcoded tbody tr:not(:last-child) td:not(:first-child){border-bottom:1px solid rgba(66,68,73,.34)}html[data-background-style='nightRider'] form[action='save_owner.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value,html[data-background-style='nightRider'] form[action='save_plan.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value,html[data-background-style='nightRider'] form[action='backup_sched.cgi'] table.table:nth-child(3) .table-hardcoded tr td.col_value,html[data-background-style='nightRider'] form[action='backup.cgi/backup.tgz'] table.table:nth-child(3) .table-hardcoded tr td.col_value,html[data-background-style='nightRider'] form[action='restore.cgi'] table.table:nth-child(3) .table-hardcoded tr td.col_value{border:1px solid rgba(66,68,73,.59) !important}html[data-background-style='nightRider'] body[data-uri*='virtual-server/backup_form'] .table-condensed.opener_table_style.opener_table_style_small>tbody>tr._c__op_r>td,html[data-background-style='nightRider'] body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small{border:1px solid #383a3f !important}html[data-background-style='nightRider'] .timeplot-container{border:1px solid #3d3f43}html[data-background-style='nightRider'] font[color='#393939']{color:rgba(225,225,224,.72) !important}html[data-background-style='nightRider'] .graph-container>.graph>.description{color:#1a1c20}html[data-background-style='nightRider'] .container-fluid>.panel>.panel-body>pre,html[data-background-style='nightRider'] .container-fluid>.panel>.panel-body>ul>pre,html[data-background-style='nightRider'] #content .container-fluid>.panel>.panel-body .table-responsive>.table .sub_table_container td>pre,html[data-background-style='nightRider'] body.server-manager[data-uri*='shell.cgi'] #content .sub_table_container:not(.xcontent-force-no-styling) *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th),html[data-background-style='nightRider'] body.shell .sub_table_container:not(.xcontent-force-no-styling) #content *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th){color:#dee0e5 !important;background-color:#121417 !important}html[data-background-style='nightRider'] .file-manager .directory_go_up,html[data-background-style='nightRider'] .file-manager .directory_go_up td i.fa{color:#666}html[data-background-style='nightRider'] body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container+div+p>a{border-bottom-color:#434751 !important}html[data-background-style='nightRider'] body[data-module*='virtualmin-mailman'] .table-hardcoded td[bgcolor='#FFF0D0']{border:1px solid #393b40;background-color:rgba(41,44,50,.49)}html[data-background-style='nightRider'] .badge.label-default{color:#2a2d32;background-color:#777}html[data-background-style='nightRider'] .label-transparent-50{background-color:rgba(125,125,125,.5)}html[data-background-style='nightRider'] .label-transparent-35{background-color:rgba(125,125,125,.35)}html[data-background-style='nightRider'] ::-webkit-input-placeholder{color:#44454b !important}html[data-background-style='nightRider'] :focus::-webkit-input-placeholder{color:#5a5c65 !important}html[data-background-style='nightRider'] .form-group .form-control.sidebar-search{border-bottom:1px solid rgba(255,255,255,.05) !important}html[data-background-style='nightRider'] .session_login .awcheckbox label::after{margin-left:-14px}html[data-background-style='nightRider'] .session_login i.wbm-webmin,html[data-background-style='nightRider'] .session_login .form-signin-heading{color:rgba(184,186,187,.94)}html[data-background-style='nightRider'] .session_login .form-signin-banner,html[data-background-style='nightRider'] .session_login .form-signin{color:rgba(151,155,160,.94);border:1px solid #424449;background-color:#2f3237 !important}html[data-background-style='nightRider'] .session_login .alert-warning:hover,html[data-background-style='nightRider'] .session_login .alert-warning,html[data-background-style='nightRider'] .session_login .alert-danger:hover,html[data-background-style='nightRider'] .session_login .alert-danger{color:rgba(234,239,238,.64);background-color:rgba(145,94,94,.44)}html[data-background-style='nightRider'] .session_login .alert-success:hover,html[data-background-style='nightRider'] .session_login .alert-success{color:rgba(208,216,214,.66);background-color:rgba(27,250,41,.12)}html[data-background-style='nightRider'] .text-semi-light{color:#6d6d6d}html[data-background-style='nightRider'] .text-semi-dark.text-dark-hoverd:hover,html[data-background-style='nightRider'] .text-dark.text-dark-hoverd:hover,html[data-background-style='nightRider'] .text-semi-dark:visited,html[data-background-style='nightRider'] .text-semi-dark:focus,html[data-background-style='nightRider'] .text-semi-dark:active,html[data-background-style='nightRider'] .text-semi-dark:hover{color:#757272}html[data-background-style='nightRider'] font[color='#ff1100']{color:#a94442 !important}html[data-background-style='nightRider'] font[color='#00c000'],html[data-background-style='nightRider'] font[color='#00ff00']{color:#269373 !important}html[data-background-style='nightRider'] .text-lighter{color:#6e727b}html[data-background-style='nightRider'] label.select-styled:after{color:#555;border-color:#444}html[data-background-style='nightRider'] body[class*='virtual-server'] img[src*='grey'],html[data-background-style='nightRider'] body[class*='virtual-server'] img[src*='blue'],html[data-background-style='nightRider'] body[class*='virtual-server'] img[src*='red'],html[data-background-style='nightRider'] body[class*='virtual-server'] img[src*='usage-'],html[data-background-style='nightRider'] body[class*='server-manager'] img[src*='grey'],html[data-background-style='nightRider'] body[class*='server-manager'] img[src*='blue'],html[data-background-style='nightRider'] body[class*='server-manager'] img[src*='purple'],html[data-background-style='nightRider'] body[class*='server-manager'] img[src*='red'],html[data-background-style='nightRider'] body[class*='server-manager'] img[src*='usage-']{filter:saturate(.6) brightness(.6) contrast(.5) hue-rotate(-29deg);-webkit-filter:saturate(.6) brightness(.6) contrast(.5) hue-rotate(-29deg)}html[data-background-style='nightRider'] .file-manager .tabs-top>ul.nav li.sortable-dragging,html[data-background-style='nightRider'] .file-manager .tabs-top>ul.nav li.sortable-placeholder{border-color:#666}html[data-background-style='nightRider'][data-theme='gunmetal'] #right-side-tabs .ui_link,html[data-background-style='nightRider'][data-theme='gunmetal'] #mCSB_2_container>div>div.is-sysinfo_data>div.info-list-data>span>a,html[data-background-style='nightRider'][data-theme='gunmetal'] #right-side-tabs-favorites a{color:rgba(140,145,150,.89) !important}html[data-background-style='nightRider'] #system-status a[data-refresh='system-status']{margin:-8px -12px}html[data-background-style='nightRider'][data-uri*='virtual-server/delete_domain.cgi'] font[size='+1']{color:#e6423ea6}html[data-background-style='nightRider'] .session-reauthenticate{background-color:#333}html[data-background-style='nightRider'] .session-reauthenticate-container-center{border-color:#444}html[data-background-style='nightRider'] .session-reauthenticate-container-center .panel,html[data-background-style='nightRider'] .session-reauthenticate-container-center .panel input{background-color:#323333 !important;border-color:#434444d6}html[data-background-style='nightRider'] .session-reauthenticate-header .session-reauthenticate-header-icon{color:#ffc0538c}html[data-background-style='nightRider'] .session-reauthenticate-header .session-reauthenticate-header-icon i.fa-unlock{color:#439076}@keyframes dots{0,20%{color:#333;text-shadow:.25em 0 0 rgba(200,200,200,0),.5em 0 0 rgba(200,200,200,0)}40%{color:#eee;text-shadow:.25em 0 0 rgba(200,200,200,0),.5em 0 0 rgba(200,200,200,0)}60%{text-shadow:.25em 0 0 #eee,.5em 0 0 rgba(200,200,200,0)}80%,100%{text-shadow:.25em 0 0 #eee,.5em 0 0 #eee}} \ No newline at end of file + */html[data-background-style='nightRider'],html[data-background-style='nightRider'] body,html[data-background-style='nightRider'] .container:not(.form-signin-banner),html[data-background-style='nightRider'] .container-fluid,html[data-background-style='nightRider'] .container-fluid-loading,html[data-background-style='nightRider'] .loader-container,html[data-background-style='nightRider'] .input-group-addon{background-color:#1a1c20 !important}html[data-background-style='nightRider'] .panel-title{line-height:14px;margin-top:1px}html[data-background-style='nightRider'] .modal-header.background-success button,html[data-background-style='nightRider'] .modal-header.background-success h4,html[data-background-style='nightRider'] .modal-header.background-primary button,html[data-background-style='nightRider'] .modal-header.background-primary h4,html[data-background-style='nightRider'] .modal-header.background-info button,html[data-background-style='nightRider'] .modal-header.background-info h4,html[data-background-style='nightRider'] .modal-header.background-warning button,html[data-background-style='nightRider'] .modal-header.background-warning h4,html[data-background-style='nightRider'] .modal-header.background-danger button,html[data-background-style='nightRider'] .modal-header.background-danger h4{color:rgba(198,198,198,.73)}html[data-background-style='nightRider'] .panel-title,html[data-background-style='nightRider'] a[data-toggle='collapse']{color:rgba(151,155,160,.82) !important}html[data-background-style='nightRider'] #right-side-tabs>div>div.right-side-tabs-dismiss.pull-right div ul li>a,html[data-background-style='nightRider'] .dropdown-submenu a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container,html[data-background-style='nightRider'] .btn.btn-transparent-link-inverse:hover,html[data-background-style='nightRider'] input.dataTable-mirror,html[data-background-style='nightRider'] font[color='#000000'],html[data-background-style='nightRider'] a.opener_trigger,html[data-background-style='nightRider'] a.help_popup,html[data-background-style='nightRider'] a[style*='color: #333'],html[data-background-style='nightRider'] body:not(.session_login),html[data-background-style='nightRider'] .sub_table_container.xcontent-force-no-styling tr.ui_checked_columns td,html[data-background-style='nightRider'] .sub_table_container.xcontent-force-no-styling tr.ui_checked_columns,html[data-background-style='nightRider'] .ui_form>.table-responsive>.table.table-subtable>tbody>tr>td>table>tbody tr,html[data-background-style='nightRider'] .sub_table_container:not(.xcontent-force-no-styling) *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th):not(font),html[data-background-style='nightRider'] ._c__op_r,html[data-background-style='nightRider'] .link_hover_effect_style,html[data-background-style='nightRider'] .panel,html[data-background-style='nightRider'] .panel-loading,html[data-background-style='nightRider'] .lawobject,html[data-background-style='nightRider'] table tr td label{color:rgba(151,155,160,.82) !important}html[data-background-style='nightRider'] .container-fluid ._c__op_d:hover>a:last-child,html[data-background-style='nightRider'] .container-fluid .panel-heading:hover h4>a,html[data-background-style='nightRider'] .btn.btn-transparent-link-force,html[data-background-style='nightRider'] .btn.btn-transparent-link-force:hover,html[data-background-style='nightRider'] .btn.btn-transparent-link-inverse,html[data-background-style='nightRider'] .text-force-link,html[data-background-style='nightRider'] .text-force-link-hover:hover,html[data-background-style='nightRider'] .btn.dropdown-toggle:not(.no-style-hover):hover,html[data-background-style='nightRider'] body .mppopup .modal-body .table tr td a[onclick*='select']:hover,html[data-background-style='nightRider'] body .mppopup .modal-body .table tr td a[onclick*='parentdir']:hover,html[data-background-style='nightRider'] body .mppopup .modal-body .table tr td a[onclick*='fileclick'][onclick*=', 1']:hover,html[data-background-style='nightRider'] .dataTable thead th,html[data-background-style='nightRider'] a:not(.ddm-link):not(.label):not(.badge):not(.opener_trigger):not(.opener_extra_container_a_style):not([data-toggle='collapse']):not(.help_popup):not(.btn):not(.no_effect):not(.link_hover_effect_style),html[data-background-style='nightRider'] .ui_checked_checkbox,html[data-background-style='nightRider'] .panel-body .ui_table tbody tr td a b{color:rgba(238,153,17,.60) !important}html[data-background-style='nightRider'] .file-manager .dropdown-submenu .fa.fa-files-o,html[data-background-style='nightRider'] #__f__c__m>li>a,html[data-background-style='nightRider'] #__f__c__m>li>a+ul>li a,html[data-background-style='nightRider'] a:not(.opener_trigger):not([data-toggle='collapse']):not(.help_popup):not(.btn)+span[data-tree]>a{color:rgba(172,172,172,.88) !important}html[data-background-style='nightRider'] .file-manager .breadcrumb .fa.fa-caret-down{color:#888}html[data-background-style='nightRider'] .input-group-addon{border:1px solid #4b4e54}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-warning:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-warning{background-color:rgba(247,175,62,.70) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-info:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-info{background-color:rgba(86,192,224,.70) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-success:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-success{background-color:rgba(38,147,115,.73) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-error:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-error{background-color:rgba(219,82,75,.73) !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'],html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs .active a,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']>button,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>button,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']{background:#2d3035 !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey']{border-left:1px solid #36383d !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a:focus,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a:hover,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a{border-left-color:transparent}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data strong,html[data-background-style='nightRider'] .right-side-tabs #acl_logins-acl-collapse>div>div>table.ui_columns>tbody>tr.thead>td>b,html[data-background-style='nightRider'] .right-side-tabs-dismiss i,html[data-background-style='nightRider'] #right-side-tabs .right_pane_favorites_link,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group>a.list-group-item div.media-body>i,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] a.list-group-item .list-group-item-heading,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] button.list-group-item .list-group-item-heading,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane table.table.table-striped.table-hover.table-condensed>thead>tr>th,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:focus,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:visited,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:active,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:hover,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data]+strong{color:rgba(140,145,150,.89)}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item.no-notifications small,html[data-background-style='nightRider'] #right-side-tabs-favorites .no-favorites_data small,html[data-background-style='nightRider'] #right-side-tabs-sysinfo .no-sysinfo_data small,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] #right-side-tabs-notifications .right-side-tabs-notification div.media-body>small,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body a,html[data-background-style='nightRider'] .right-side-tabs .panel-title,html[data-background-style='nightRider'] .panel .panel-heading .panel-title a:before,html[data-background-style='nightRider'] td .opener_trigger[id]:before,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data],html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data] a{color:rgba(118,122,127,.89) !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item:last-child,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs,html[data-background-style='nightRider'] #right-side-tabs-favorites .no-favorites_data,html[data-background-style='nightRider'] #right-side-tabs-sysinfo .no-sysinfo_data{border-color:rgba(62,65,70,.57)}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] div.media-body>small,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table td,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table tr,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table td,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead{border-color:#44464e !important}html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body{border-top-color:#44464e;border-bottom-color:#44464e}html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn:active,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn:focus,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']>.btn:focus,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn{background-color:#2f3238 !important}html[data-background-style='nightRider'] .right-side-tabs .badge-danger,html[data-background-style='nightRider'] .right-side-tabs .bg-dark-red{background-color:#a94442 !important}html[data-background-style='nightRider'] .right-side-tabs .badge-danger:hover,html[data-background-style='nightRider'] .right-side-tabs .bg-dark-red:hover{background-color:#a23d3b !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-warning:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-warning{background-color:rgba(247,175,62,.70) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-info:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-info{background-color:rgba(86,192,224,.70) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-success:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-success{background-color:rgba(38,147,115,.73) !important}html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-error:hover,html[data-background-style='nightRider'] ul.messenger-theme-air .messenger-message.message-error{background-color:rgba(219,82,75,.73) !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'],html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs .active a,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']>button,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>button,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']{background:#2d3035 !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey']{border-left:1px solid #36383d !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a:focus,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a:hover,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li.active:first-child>a{border-left-color:transparent}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data strong,html[data-background-style='nightRider'] .right-side-tabs #acl_logins-acl-collapse>div>div>table.ui_columns>tbody>tr.thead>td>b,html[data-background-style='nightRider'] .right-side-tabs-dismiss i,html[data-background-style='nightRider'] #right-side-tabs .right_pane_favorites_link,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group>a.list-group-item div.media-body>i,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] a.list-group-item .list-group-item-heading,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] button.list-group-item .list-group-item-heading,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs>li a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane table.table.table-striped.table-hover.table-condensed>thead>tr>th,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:focus,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:visited,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:active,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-heading h4 a:hover,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data]+strong{color:rgba(140,145,150,.89)}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item.no-notifications small,html[data-background-style='nightRider'] #right-side-tabs-favorites .no-favorites_data small,html[data-background-style='nightRider'] #right-side-tabs-sysinfo .no-sysinfo_data small,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] #right-side-tabs-notifications .right-side-tabs-notification div.media-body>small,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row a,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body a,html[data-background-style='nightRider'] .right-side-tabs .panel-title,html[data-background-style='nightRider'] .panel .panel-heading .panel-title a:before,html[data-background-style='nightRider'] td .opener_trigger[id]:before,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data],html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container .info-list-data span[data-data] a{color:rgba(118,122,127,.89) !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .right-side-tabs-dismiss,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .list-group-item:last-child,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .nav-tabs,html[data-background-style='nightRider'] #right-side-tabs-favorites .no-favorites_data,html[data-background-style='nightRider'] #right-side-tabs-sysinfo .no-sysinfo_data{border-color:rgba(62,65,70,.57)}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] .tab-pane .info-container,html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] div.media-body>small,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table td,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-body .table-responsive .table tr,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table tbody tr.ui_columns_row,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table td,html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body table .thead{border-color:#44464e !important}html[data-background-style='nightRider'] .right-side-tabs .tab-pane .info-container .extended-list-data .panel-default .panel-body{border-top-color:#44464e;border-bottom-color:#44464e}html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn:active,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn:focus,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey']>.btn:focus,html[data-background-style='nightRider'] .right-side-tabs-toggler[data-background-style='grey'].opened>.btn{background-color:#2f3238 !important}html[data-background-style='nightRider'] .right-side-tabs .badge-danger,html[data-background-style='nightRider'] .right-side-tabs .bg-dark-red{background-color:#a94442 !important}html[data-background-style='nightRider'] .right-side-tabs .badge-danger:hover,html[data-background-style='nightRider'] .right-side-tabs .bg-dark-red:hover{background-color:#a23d3b !important}html[data-background-style='nightRider'] #system-status .badge-custom{color:rgba(255,255,255,0.52) !important}html[data-background-style='nightRider'] .bg-semi-transparent{background-color:rgba(121,125,141,0.23) !important}html[data-background-style='nightRider'] .bg-success{color:rgba(255,255,255,.52) !important;background-color:#61725a !important}html[data-background-style='nightRider'] .bg-info{color:rgba(255,255,255,.52) !important;background-color:#596e78 !important}html[data-background-style='nightRider'] .bg-warning{color:rgba(255,255,255,.52) !important;background-color:#686246 !important}html[data-background-style='nightRider'] .bg-danger{color:rgba(255,255,255,.52) !important;background-color:#654a4a !important}html[data-background-style='nightRider'] .bg-primary{color:rgba(255,255,255,.52) !important;background-color:#546c81 !important}html[data-background-style='nightRider'] .bg-success-dark{background-color:#61725a !important}html[data-background-style='nightRider'] .bg-info-dark{background-color:#596e78 !important}html[data-background-style='nightRider'] .bg-warning-dark{background-color:#686246 !important}html[data-background-style='nightRider'] .bg-danger-dark{background-color:#654a4a !important}html[data-background-style='nightRider'] .bg-primary-dark{background-color:#546c81 !important}html[data-background-style='nightRider'] .alert-warning:hover,html[data-background-style='nightRider'] .alert-warning{color:rgba(234,239,238,.70);border-color:rgba(222,180,93,.13);background-color:rgba(128,118,64,.08)}html[data-background-style='nightRider'] tr[bgcolor='#ff8888'],html[data-background-style='nightRider'] .alert-danger:hover,html[data-background-style='nightRider'] .alert-danger{color:rgba(234,239,238,.70);border-color:rgba(224,60,87,.15);background-color:rgba(145,94,94,.88)}html[data-background-style='nightRider'] .alert-info:hover,html[data-background-style='nightRider'] .alert-info{color:rgba(234,239,238,.70);border-color:rgba(65,108,117,.29);background-color:rgba(131,162,177,.20)}html[data-background-style='nightRider'] .alert-success:hover,html[data-background-style='nightRider'] .alert-success{color:rgba(234,239,238,.70);border-color:rgba(71,101,47,.33);background-color:rgba(62,118,38,.20)}html[data-background-style='nightRider'] .graph-container>.graph{background-color:rgba(133,138,143,.17)}html[data-background-style='nightRider'] .graph-container>.graph>.bar{color:rgba(255,255,255,.47);border-right-color:#ca524f;background-color:rgba(169,68,66,.78)}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:1%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:2%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:3%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:4%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:5%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:6%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:7%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:8%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:9%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:10%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:11%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:12%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:13%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:14%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:15%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:16%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:17%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:18%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:19%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:20%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:21%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:22%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:23%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:24%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:25%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:26%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:27%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:28%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:29%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:30%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:31%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:32%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:33%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:34%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:35%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:36%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:37%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:38%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:39%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:40%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:41%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:42%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:43%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:44%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:45%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:46%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:47%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:48%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:49%']{border-right-color:#18aa80;background-color:#21795f}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:50%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:51%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:52%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:53%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:54%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:55%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:56%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:57%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:58%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:59%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:60%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:61%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:62%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:63%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:64%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:65%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:66%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:67%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:68%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:69%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:70%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:71%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:72%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:73%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:74%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:75%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:76%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:77%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:78%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:79%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:80%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:81%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:82%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:83%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:84%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:85%']{border-right-color:#ab844c;background-color:#8a6939}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:0%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: 0%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:0'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: 0'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:-'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: -']{border-right-color:#515151;background-color:#444950}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:-'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: -']{color:#aaa}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){html[data-background-style='nightRider'] .graph-container>.graph>.bar{border-right-color:#515151 !important;background-color:#444950 !important}}html[data-background-style='nightRider'] font[color='green'],html[data-background-style='nightRider'] font[color='#00aa00'],html[data-background-style='nightRider'] .text-success{color:rgba(59,214,59,.44) !important}html[data-background-style='nightRider'] font[color='orange']{color:#a2782c !important}html[data-background-style='nightRider'] font[color='#ff4400'],html[data-background-style='nightRider'] font[color='#ff0000']{color:rgba(232,67,63,.66) !important}html[data-background-style='nightRider'] font[color='#0000ff']{color:rgba(81,114,204,.66) !important}html[data-background-style='nightRider'] .btn-default{color:#a8abad !important;border-color:rgba(80,85,99,.75) !important;background-color:rgba(97,103,121,.07) !important}html[data-background-style='nightRider'] .btn-default:hover,html[data-background-style='nightRider'] .btn-default:focus,html[data-background-style='nightRider'] .btn-default.focus{color:#fff !important;border-color:#505563 !important;outline:0 !important;background-color:rgba(97,103,121,.1) !important;-webkit-box-shadow:none !important;box-shadow:none !important}html[data-background-style='nightRider'] .badge-success{color:rgba(221,221,221,.82) !important;background-color:rgba(38,147,115,.60) !important}html[data-background-style='nightRider'] .badge-warning{color:rgba(244,244,244,.82) !important;background-color:rgba(195,141,64,.65) !important}html[data-background-style='nightRider'] body>div.right-side-tabs-toggler>.btn-primary.btn-menu-toggler .badge,html[data-background-style='nightRider'] .label-danger,html[data-background-style='nightRider'] #right-side-tabs .right-side-tab-notification-asterix,html[data-background-style='nightRider'] .badge-danger{color:#ddd !important;background-color:#a94442 !important}html[data-background-style='nightRider'] #sidebar ul.user-links li:not(.menu-container):not(.sub-wrapper){border:1px solid rgba(255,255,255,.04)}html[data-background-style='nightRider'] .info-container .graph-container>.graph>.description{color:#222}html[data-background-style='nightRider'] body .mppopup .modal-body .table tr td img{filter:saturate(.9) brightness(.8) contrast(.7);-webkit-filter:saturate(.9) brightness(.8) contrast(.7)}html[data-background-style='nightRider'] .breadcrumbx{background:#3a3c41}html[data-background-style='nightRider'] .breadcrumbx a{background:rgba(42,45,49,.78)}html[data-background-style='nightRider'] ::-webkit-scrollbar-track-piece{background-color:rgba(83,85,88,.60)}html[data-background-style='nightRider'] ::-webkit-scrollbar-thumb{border:2px solid #484b4f;background-color:#373a41}html[data-background-style='nightRider'] ::-webkit-scrollbar-thumb:hover{background-color:rgba(202,133,21,.80)}html[data-background-style='nightRider'] #list_form tbody tr.hl-aw.m-not-active:not(.m-active),html[data-background-style='nightRider'] .panel-body form .table-hardcoded tbody tr td>table.table-striped tbody>tr.hl-aw.ui_checked_columns:nth-of-type(odd) td,html[data-background-style='nightRider'] .panel-body form .table-hardcoded tbody tr td>table.table-striped tbody>tr.hl-aw.ui_checked_columns:nth-of-type(even) td,html[data-background-style='nightRider'] body[data-module*='htaccess-htpasswd'] #DataTables_Table_0>tbody>tr.hl-aw:nth-child(odd) td>table.ui_grid_table tr.ui_grid_row td,html[data-background-style='nightRider'] body[data-module*='htaccess-htpasswd'] #DataTables_Table_0>tbody>tr.hl-aw:nth-child(even) td>table.ui_grid_table tr.ui_grid_row td,html[data-background-style='nightRider'] form[action='save_newshells.cgi'] .hl-aw:nth-of-type(odd),body[class*='file-manager'] #list_form tbody tr.checked:hover,html[data-background-style='nightRider'] .hl-aw{background-color:#3d353b !important}html[data-background-style='nightRider'] .file-manager .breadcrumb>li a+span[data-tree] a:hover,html[data-background-style='nightRider'] .dropdown-menu>li>a:hover,html[data-background-style='nightRider'] .dropdown-menu>li>a:focus,html[data-background-style='nightRider'] .dropdown-submenu>li>a:hover,html[data-background-style='nightRider'] .dropdown-submenu>li>a:focus,html[data-background-style='nightRider'] .hl-ow,html[data-background-style='nightRider'] body[class*='file-manager'] #list_form tbody tr:hover,html[data-background-style='nightRider'] #list_form tbody tr.checked:hover.m-active.m-not-active,html[data-background-style='nightRider'] #list_form tbody tr:hover.m-active.m-not-active,html[data-background-style='nightRider'] #list_form tbody tr.m-active,.panel-body form .table-hardcoded tbody tr td>table.table-striped tbody>tr:hover.ui_checked_columns:nth-of-type(odd) td,.panel-body form .table-hardcoded tbody tr td>table.table-striped tbody>tr:hover.ui_checked_columns:nth-of-type(even) td,html[data-background-style='nightRider'] body[data-module*='htaccess-htpasswd'] #DataTables_Table_0>tbody>tr:hover:nth-child(odd) td>table.ui_grid_table tr.ui_grid_row td,html[data-background-style='nightRider'] body[data-module*='htaccess-htpasswd'] #DataTables_Table_0>tbody>tr:hover:nth-child(even) td>table.ui_grid_table tr.ui_grid_row td,html[data-background-style='nightRider'] tr.atshover:hover td kbd,html[data-background-style='nightRider'] tr.atshover:hover td code,html[data-background-style='nightRider'] tr.atshover:hover td div,html[data-background-style='nightRider'] tr.atshover:hover td:not(.atscontent) span:not(.awobject),html[data-background-style='nightRider'] tr.atshover:hover td,html[data-background-style='nightRider'] #atsettings>form>div>table>tbody>tr>td>table>tbody>tr.atshover:hover,html[data-background-style='nightRider'] #atsettings>form>div>table>tbody>tr>td>table>tbody>tr.atshover:hover td div,html[data-background-style='nightRider'] #atsettings>form>div>table>tbody>tr>td>table>tbody>tr.atshover:hover td,html[data-background-style='nightRider'][data-script-name*='settings-user.cgi'] div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form#settings_>div>table>tbody>tr>td>table>tbody>tr:hover td:not([colspan='2']),html[data-background-style='nightRider'] body:not(.csf) .panel-body:not(.xqcontent-forced) .table-striped:not(.table-subtable)>tbody>tr:hover,html[data-background-style='nightRider'] body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td b,html[data-background-style='nightRider'] body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td a,html[data-background-style='nightRider'] body#configCGI>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>form>div>table>tbody>tr>td>table>tbody>tr:hover>td,html[data-background-style='nightRider'] .table-hover>tbody>tr.ui_checked_columns:hover,html[data-background-style='nightRider'] .panel-body form[action='script_form.cgi'] table tbody tr:not(.thead):not(.ui_checked_columns):hover td:not(._c__op_d):not(.opener_table_cell_style_small),html[data-background-style='nightRider'] .table-hover>tbody>tr:not(.tr_tag):hover{background-color:#393737 !important}html[data-background-style='nightRider'] .opener_sub_container .table-hardcoded,html[data-background-style='nightRider'] ._c__op_r,html[data-background-style='nightRider'] .panel,html[data-background-style='nightRider'] .panel-loading{border-color:rgba(99,99,99,.18);background-color:#2f3238 !important}html[data-background-style='nightRider'] #right-side-tabs .panel[data-sorter]{background-color:#2d3035 !important}html[data-background-style='nightRider'] mark{color:#aaa;background-color:#584819}html[data-background-style='nightRider'] .favorites.xcustom-favorites.fa-star-o,html[data-background-style='nightRider'] #headln2c>.favorites.fa-star-o{color:rgba(201,201,201,.30)}html[data-background-style='nightRider'] .favorites.xcustom-favorites.fa-star,html[data-background-style='nightRider'] #headln2c>.favorites.fa-star{color:#8f6b37 !important}html[data-background-style='nightRider'] .favorites.xcustom-favorites.fa-star:not(.dummy):hover:before,html[data-background-style='nightRider'] #headln2c .favorites.fa-star:not(.dummy):hover:before{content:'\f091';color:rgba(219,82,75,.69)}html[data-background-style='nightRider'] .favorites.xcustom-favorites.fa-star-o:not(.dummy):hover,html[data-background-style='nightRider'] #headln2c .favorites.fa-star-o:not(.dummy):hover{color:rgba(39,255,184,.2)}html[data-background-style='nightRider'] .xcustom-favorites.fa.fa-star:before,html[data-background-style='nightRider'] #headln2c>.fa.fa-star:before{content:'\f091'}html[data-background-style='nightRider'] .panel-default-loading>.panel-heading-loading,html[data-background-style='nightRider'] .panel-default>.panel-heading{color:rgba(201,201,201,.70);border-color:#242528;background-color:rgba(39,43,48,.69)}html[data-background-style='nightRider'] .ui_form>.ui_grid_table.table-hardcoded:not(.sub_table_container):not(.ui_radio_table):not(.ui_grid_table),html[data-background-style='nightRider'] .panel-body .ui_form table.table .opener_shown table tbody tr,html[data-background-style='nightRider'] .panel-body .table-responsive table.table-subtable tbody tr td.col_value table.table,html[data-background-style='nightRider'] .panel-body>form>table:not(.table-hardcoded)>tbody>tr,html[data-background-style='nightRider'] .panel-body>form>table>tbody,html[data-background-style='nightRider'] .table table,html[data-background-style='nightRider'] table.ui_grid_table tbody{border-color:#242528}html[data-background-style='nightRider'] .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#242528}html[data-background-style='nightRider'] .ui_table thead>tr>th,html[data-background-style='nightRider'] .ui_table tbody>tr>th,html[data-background-style='nightRider'] .ui_table tfoot>tr>th,html[data-background-style='nightRider'] .ui_table thead>tr>td,html[data-background-style='nightRider'] .ui_table tbody>tr>td,html[data-background-style='nightRider'] .ui_table tfoot>tr>td,html[data-background-style='nightRider'] .table>thead>tr>th,html[data-background-style='nightRider'] .table>tbody>tr>th,html[data-background-style='nightRider'] .table>tfoot>tr>th,html[data-background-style='nightRider'] .table>thead>tr>td,html[data-background-style='nightRider'] .table>tbody>tr>td,html[data-background-style='nightRider'] .table>tfoot>tr>td{border-top-color:rgba(63,65,71,.52)}html[data-background-style='nightRider'] .table>thead>tr:first-child>th,html[data-background-style='nightRider'] .table>tbody>tr:first-child>th,html[data-background-style='nightRider'] .table>tfoot>tr:first-child>th,html[data-background-style='nightRider'] .table>thead>tr:first-child>td,html[data-background-style='nightRider'] .table>tbody>tr:first-child>td,html[data-background-style='nightRider'] .table>tfoot>tr:first-child>td{border-color:#252729}html[data-background-style='nightRider'] .popover-content .table>thead>tr:first-child>th,html[data-background-style='nightRider'] .popover-content .table>tbody>tr:first-child>th,html[data-background-style='nightRider'] .popover-content .table>tfoot>tr:first-child>th,html[data-background-style='nightRider'] .popover-content .table>thead>tr:first-child>td,html[data-background-style='nightRider'] .popover-content .table>tbody>tr:first-child>td,html[data-background-style='nightRider'] .popover-content .table>tfoot>tr:first-child>td{border-color:#41464d}html[data-background-style='nightRider'] .ui_form>.ui_grid_table.table-hardcoded:not(.sub_table_container):not(.ui_radio_table):not(.ui_grid_table),html[data-background-style='nightRider'] .panel-body .ui_form table.table .opener_shown table tbody tr,html[data-background-style='nightRider'] .panel-body .table-responsive table.table-subtable tbody tr td.col_value table.table,html[data-background-style='nightRider'] .panel-body>form>table:not(.table-hardcoded)>tbody>tr,html[data-background-style='nightRider'] .panel-body>form>table>tbody,html[data-background-style='nightRider'] .table table,html[data-background-style='nightRider'] table.ui_grid_table tbody{border-color:#424449}html[data-background-style='nightRider'] pre:not(.CodeMirror-line){border:1px solid #424449}html[data-background-style='nightRider'] .CodeMirror,html[data-background-style='nightRider'] .panel-body>form>.CodeMirror{border:1px solid #393c41;border-top:0}html[data-background-style='nightRider'] pre:not(.CodeMirror-line),html[data-background-style='nightRider'] .cm-s-monokai.CodeMirror{color:rgba(255,255,255,.85);background:#2a2c2e}html[data-background-style='nightRider'] .cm-s-monokai span.cm-comment{color:#777}html[data-background-style='nightRider'] .cm-s-monokai .CodeMirror-gutters{background:#272828}html[data-background-style='nightRider'] .cm-s-monokai .CodeMirror-activeline-background{background:#3b3e42}html[data-background-style='nightRider'] .cm-s-monokai .CodeMirror-linenumber{color:#606060}html[data-background-style='nightRider'] .CodeMirror-dialog-top{border-bottom-color:#404040}html[data-background-style='nightRider'] .modal-dialog-update .modal-body>h4:first-child{border-bottom-color:rgba(76,79,84,.40)}html[data-background-style='nightRider'] .modal-dialog-update .modal-body .version_separator+hr,html[data-background-style='nightRider'] .modal-dialog-update .modal-body a+hr{border-style:dashed !important}html[data-background-style='nightRider'] .hr-dashed{border-style:dashed !important}html[data-background-style='nightRider'] .modal-dialog-update a[data-update-force]{color:#47756b}html[data-background-style='nightRider'] .modal-dialog-update a[data-update-force]:hover{color:#6c8482}html[data-background-style='nightRider'] .CodeMirror-focused .CodeMirror-selected{background-color:#bfb19e !important}html[data-background-style='nightRider'] .CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background-color:#bfb19e !important}html[data-background-style='nightRider'] .CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background-color:#bfb19e !important}html[data-background-style='nightRider'] .table-subtable>tbody>tr:nth-child(odd){background-color:transparent}html[data-background-style='nightRider'] .sub_table_container:not(.xcontent-force-no-styling) *:not(.popover):not(.popover-title):not(.popover-content):not(.arrow):not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th):not(textarea):not(select):not(.opener_table_cell_style_small):not(.link_hover_effect),html[data-background-style='nightRider'] .table .table,html[data-background-style='nightRider'] body>div.modal.fade.fade5.mppopup.in>div>div>div.modal-footer>div>div>input[type='text'],html[data-background-style='nightRider'] #atsettings>form>div>table>tbody>tr>td>table>tbody>tr>td.col_value.atscontent>span>div.bootstrap-tagsinput>input[type='text'],html[data-background-style='nightRider'] .atshover .bootstrap-tagsinput:hover .tag [data-role='remove'],html[data-background-style='nightRider'] .atshover:hover .bootstrap-tagsinput .tag [data-role='remove'],html[data-background-style='nightRider'] .bootstrap-tagsinput .tag [data-role='remove']{background-color:transparent !important}html[data-background-style='nightRider'] .bootstrap-tagsinput .label,html[data-background-style='nightRider'] code{background-color:rgba(249,242,244,.11) !important}html[data-background-style='nightRider'] code{color:#f43566 !important}html[data-background-style='nightRider'] .panel-heading.panel-heading-cxs code{background-color:transparent !important;color:rgba(151,155,160,0.82) !important}html[data-background-style='nightRider'] .bootstrap-tagsinput .label{color:rgba(255,255,255,.80) !important}html[data-background-style='nightRider'] tr td:hover+td>span>.bootstrap-tagsinput .label,html[data-background-style='nightRider'] tr td:hover>span>.bootstrap-tagsinput .label{color:rgba(0,0,0,.60) !important}html[data-background-style='nightRider'] body.shell #content>div>div>div.panel-body>div>table>tbody>tr>td>table>tbody>tr>td>pre,html[data-background-style='nightRider'] .-shell-port- pre{border:0 !important;background-color:#060606 !important}html[data-background-style='nightRider'] table.table.table-striped.table-condensed>thead>tr:first-child,html[data-background-style='nightRider'] table.dataTable{border-top:1px solid #3d3f43 !important;border-right:1px solid #3a3c41 !important;border-left:1px solid #3a3c41 !important}html[data-background-style='nightRider'] td.col_value>table.table.table-striped.table-condensed>thead>tr{border-top:1px solid #3d3f43 !important}html[data-background-style='nightRider'] .custom_table_head,html[data-background-style='nightRider'] td.col_value>table.table.table-striped.table-condensed>thead>tr>th{background-color:#292c32}html[data-background-style='nightRider'] a.opener_extra_container_a_style:before,html[data-background-style='nightRider'] .panel .panel-heading .panel-title a:before,html[data-background-style='nightRider'] td .opener_trigger[id]:before{color:#525459}html[data-background-style='nightRider'] .awcheckbox label::before,html[data-background-style='nightRider'] .awradio label::before{border-color:rgba(95,96,99,.41);background-color:rgba(67,70,75,.48)}html[data-background-style='nightRider'] .awcheckbox label::after{color:#999}html[data-background-style='nightRider'] .awradio label::after{background-color:#999}html[data-background-style='nightRider'] .panel-heading .header a.btn{border-color:#3d3f43}html[data-background-style='nightRider'] table,html[data-background-style='nightRider'] .bootstrap-tagsinput,html[data-background-style='nightRider'] table.dataTable{border-color:#393b40 !important}html[data-background-style='nightRider'] .bootstrap-tagsinput{border:1px solid #e0e0e0;background-color:#2f3237}html[data-background-style='nightRider'] .bootstrap-tagsinput>input{background-color:rgba(197,38,38,0) !important}html[data-background-style='nightRider'] .bootstrap-tagsinput .label{color:#bdc5ce !important;background-color:rgba(121,123,132,.28) !important}html[data-background-style='nightRider'] #att_new>form:nth-child>table.table.table-striped.table-hover.table-condensed>tbody:nth-child>tr>td>input[type='image'],html[data-background-style='nightRider'] .bootstrap-tagsinput .tag [data-role='remove']{background-color:transparent !important}html[data-background-style='nightRider'] .bootstrap-tagsinput .tag [data-role='remove']:hover{color:red !important}html[data-background-style='nightRider'] body[class*='postgresql']:not(.__non_res__) #DataTables_Table_0>tbody>tr:nth-child(even):not(.hl-aw):not(:hover)>td,html[data-background-style='nightRider'] body[class*='postgresql']:not(.__non_res__) #DataTables_Table_1>tbody>tr:nth-child(even):not(.hl-aw):not(:hover)>td,html[data-background-style='nightRider'] body[class*='mysql']:not(.__non_res__) #DataTables_Table_0>tbody>tr:nth-child(even):not(.hl-aw):not(:hover)>td,html[data-background-style='nightRider'] body[class*='mysql']:not(.__non_res__) #DataTables_Table_1>tbody>tr:nth-child(even):not(.hl-aw):not(:hover)>td{background-color:#2a2d31 !important}html[data-background-style='nightRider'] .table-striped>tbody>tr:nth-child(even){background-color:#2a2d31}html[data-background-style='nightRider'] body[data-module*='htaccess-htpasswd'] #DataTables_Table_0>tbody>tr:nth-child(even) td>table.ui_grid_table tr.ui_grid_row td{background-color:#2a2d31 !important}html[data-background-style='nightRider'] .opener_extra_container_a_style,html[data-background-style='nightRider'] .opener_extra_container_style,html[data-background-style='nightRider'] .opener_shown table tbody tr,html[data-background-style='nightRider'] a.help_popup+.popover>.popover-content tt{background-color:#2f3237 !important}html[data-background-style='nightRider'] .sub_table_container.xcontent-force-no-styling tr.ui_checked_columns td,html[data-background-style='nightRider'] .sub_table_container.xcontent-force-no-styling tr.ui_checked_columns,html[data-background-style='nightRider'] .ui_form>.table-responsive>.table.table-subtable>tbody>tr>td>table>tbody tr,html[data-background-style='nightRider'] .table-striped>tbody>tr:nth-child(odd){background-color:#2f3237}html[data-background-style='nightRider'] table thead{background-color:rgba(42,45,49,.6)}.panel-body form .table-hardcoded tbody tr td>table.table-striped tbody>tr.ui_checked_columns:nth-of-type(even) td,html[data-background-style='nightRider'] .panel-body form table tbody tr.thead td,html[data-background-style='nightRider'] tr.thead,html[data-background-style='nightRider'] .table-title,html[data-background-style='nightRider'] .panel-body form+table.table-hardcoded>tbody>tr.thead>td{color:rgba(201,201,201,.73) !important;border-color:rgba(57,59,64,.95) !important;background-color:rgba(44,47,52,.50) !important}html[data-background-style='nightRider'] .table-striped>tbody>tr:nth-child(even) td>table.ui_grid_table tr.ui_grid_row td,html[data-background-style='nightRider'] .table-hover tr[bgcolor='#ffffff']._c__op_r+tr[bgcolor='#feffff']:hover{background-color:#2a2d31 !important}html[data-background-style='nightRider'] tr[bgcolor='#feffff'] td,html[data-background-style='nightRider'] .panel-body form table tbody tr:not(.thead) td,html[data-background-style='nightRider'] .col_header_custom,html[data-background-style='nightRider'] form[action='save_check.cgi']>b,html[data-background-style='nightRider'] .col_header b{border-color:rgba(57,59,64,.95) !important;border-top-width:1px !important;border-right:0 !important;border-left:0 !important}html[data-background-style='nightRider'] .panel-body form table:not(.ui_form_end_buttons) tbody tr:not(.thead):not(.ui_checked_columns) td:not(._c__op_d):not(.opener_table_cell_style_small):not(.hl-ow),html[data-background-style='nightRider'] .col_header_custom,html[data-background-style='nightRider'] form[action='save_check.cgi']>b,html[data-background-style='nightRider'] .col_header b{background-color:#2f3237 !important}html[data-background-style='nightRider'] .panel-body form table tbody tr:not(.thead) td._c__op_d{border-right:1px solid #393b3f !important;border-left:1px solid #393b3f !important}html[data-background-style='nightRider'] .file-manager .breadcrumb>li a+span[data-tree]{border:1px solid rgba(66,68,73,.78);background:rgba(47,50,56,.89)}html[data-background-style='nightRider'] .file-manager .breadcrumb .fa.fa-caret-right:hover,html[data-background-style='nightRider'] .file-manager .breadcrumb .fa.fa-caret-down:hover{color:#717171;border-color:#424449}html[data-background-style='nightRider'] .file-manager .btn-group.pull-right>.btn-group>button.btn-inverse,html[data-background-style='nightRider'] .file-manager .btn-group.pull-right>button.btn-inverse{border-color:rgba(66,68,73,.82) !important;background-color:#2f3237 !important}html[data-background-style='nightRider'] .file-manager .dropdown-menu{border:1px solid rgba(66,68,73,.78);background:rgba(47,50,56,.95)}html[data-background-style='nightRider'] .file-manager .dropdown-menu li.disabled{opacity:.5}html[data-background-style='nightRider'] .dropdown-submenu>a:after{border-left-color:rgba(204,204,204,.35)}html[data-background-style='nightRider'] .file-manager .fa-minus-circle.file-manager-remove-bookmark,html[data-background-style='nightRider'] .dropdown-menu>li>span,html[data-background-style='nightRider'] .file-manager .dropdown-menu a:not(.opener_trigger):not([data-toggle='collapse']):not(.help_popup):not(.btn),html[data-background-style='nightRider'] .file-manager>div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>div.btn-group.pull-right>div>ul.at-o__f_m-favorites-dropdown>li>*{color:rgba(172,172,172,.67) !important}html[data-background-style='nightRider'] .dropdown-menu>li>span:hover,html[data-background-style='nightRider'] .dropdown-menu>li>span:focus,html[data-background-style='nightRider'] .file-manager .dropdown-menu>li>a:hover,html[data-background-style='nightRider'] .file-manager .dropdown-menu>li>a:focus{background-color:rgba(67,69,72,.54)}html[data-background-style='nightRider'] .well{border:1px solid rgba(77,80,87,.28);background-color:rgba(65,67,71,.21)}html[data-background-style='nightRider'] .dropdown-menu .divider{background-color:#424449}html[data-background-style='nightRider'] .breadcrumb>li+li:before{color:#666}html[data-background-style='nightRider'] .file-manager .table-striped>tbody>tr td:nth-child(2) img{filter:saturate(.4) brightness(.75) contrast(.9);-webkit-filter:saturate(.4) brightness(.75) contrast(.9)}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs{border-bottom-color:#424449;background:#2f3237}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs>li{border-bottom-color:#eee}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs>li>a{color:#444 !important;border:1px solid #424449;background:#2f3237}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs>li>a:hover{border:1px solid #424449;background:#2c2f33}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs>li.active>a{border-color:#424449;border-top:2px solid #3f7e76;border-bottom:1px solid #2f3238;background:#2c2f33}html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs>li>a>i{color:#a34746}html[data-background-style='nightRider'] .file-manager .ui_checked_columns.directory_go_up.hl-aw td{background:#2f3238}html[data-background-style='nightRider'] .file-manager .jsPanel .dropdown{top:3px}html[data-background-style='nightRider'] .file-manager .jsPanel .dropdown-menu li html[data-background-style='nightRider'] .file-manager .jsPanel .dropdown-menu li a{color:#fff !important}@-moz-document url-prefix(){html[data-background-style='nightRider'] .file-manager .jsPanel .dropdown{top:2px}}html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar{margin-top:-2px}html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-encoding-label]{margin-top:-10px}html[data-background-style='nightRider'] .jsPanel .jsPanel-content{border-top-color:transparent !important;border-bottom:1px solid #393c41}html[data-background-style='nightRider'] .file-manager .jsPanel-title,html[data-background-style='nightRider'] .file-manager .jsPanel-replacement .jsPanel-title,html[data-background-style='nightRider'] .file-manager .jsPanel-replacement .jsPanel-btn span{color:rgba(255,255,255,.66) !important}html[data-background-style='nightRider'] .file-manager .jsPanel-hdr{color:rgba(255,255,255,.66);border:1px solid #393c41;border-bottom-color:0;background:#292c32}html[data-background-style='nightRider'] .file-manager .cspinner .cspinner-icon,html[data-background-style='nightRider'] .file-manager .table .cspinner .cspinner-icon{border-top-color:#333;border-left-color:#777}html[data-background-style='nightRider'] .file-manager .jsPanel-hdr ._filemanager_file_editor_save .cspinner .cspinner-icon{border-top-color:#aaa;border-left-color:#fff}html[data-background-style='nightRider'] .file-manager .jsPanel-hdr i:not(.fa-edit):hover,html[data-background-style='nightRider'] .file-manager .jsPanel-hdr span:hover{color:#69768d}html[data-background-style='nightRider'] .fa-question-circle.-helper:hover,html[data-background-style='nightRider'] .file-manager .jsPanel-hdr h3 small,html[data-background-style='nightRider'] .file-manager .jsPanel-hdr h3{color:#ddd}html[data-background-style='nightRider'] .file-manager .jsPanel-hdr>.jsPanel-hdr-r{top:2px}html[data-background-style='nightRider'] .file-manager .jsPanel-content{background:#2a2c2e}html[data-background-style='nightRider'] .pagination>.active>a,html[data-background-style='nightRider'] .pagination>.active>span,html[data-background-style='nightRider'] .pagination>.active>a:hover,html[data-background-style='nightRider'] .pagination>.active>span:hover,html[data-background-style='nightRider'] .pagination>.active>a:focus,html[data-background-style='nightRider'] .pagination>.active>span:focus{border-color:rgba(51,122,183,.44);background-color:rgba(51,122,183,.28)}html[data-background-style='nightRider'] .pagination>.disabled>span,html[data-background-style='nightRider'] .pagination>.disabled>span:hover,html[data-background-style='nightRider'] .pagination>.disabled>span:focus,html[data-background-style='nightRider'] .pagination>.disabled>a,html[data-background-style='nightRider'] .pagination>.disabled>a:hover,html[data-background-style='nightRider'] .pagination>.disabled>a:focus{border-color:#383a3f;background-color:#2f3237}html[data-background-style='nightRider'] .pagination>li>a,html[data-background-style='nightRider'] .pagination>li>span{border:1px solid #383a3f;background-color:#2a2d31}html[data-background-style='nightRider'] .breadcrumb,html[data-background-style='nightRider'] tr[bgcolor='#feffff']{border-color:#393d43 !important;background-color:#2f3237}html[data-background-style='nightRider'] .sub_table_container:not(.xcontent-force-no-styling) *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th):not(textarea):not(select):not(.opener_table_cell_style_small):not(.link_hover_effect):not(.popover-title):not(.arrow){background-color:#31353b !important}html[data-background-style='nightRider'] input[type='button']:not(.btn-success):not(.btn-primary):not(.btn-info):not(.btn-danger):not(.btn-warning),html[data-background-style='nightRider'] #show_backup_destination>tbody,html[data-background-style='nightRider'] .ui_form:not([action='save_iptables.cgi']):not([action='export_mod.cgi/theme.ubt.gz']):not([action='add.cgi']):not([action='save_storage.cgi']):not([action='save_repl.cgi']):not([action='download.cgi']):not([action='upload.cgi']):not([action='install_mod.cgi']):not([action='save_newretention.cgi']):not([action='add_style.cgi']):not([action='save_validate.cgi']):not([action='mass_create.cgi']):not([action='migrate.cgi']):not([action='save_bkey.cgi/key.txt']) div.table-responsive table.table-subtable tbody tr td>table.sub_table_container tbody tr td.col_value table.table-hardcoded tbody{border:1px solid #424449 !important}html[data-background-style='nightRider'] #att_simple .table tbody tr:first-child td:first-child>table:first-child tr:nth-last-child(2),html[data-background-style='nightRider'] .table.table-striped>tbody,html[data-background-style='nightRider'] .table-hardcoded>tbody>tr>td>.table-hardcoded>tbody,html[data-background-style='nightRider'] .table.table-striped.table-condensed .opener_container .table-hardcoded table,html[data-background-style='nightRider'] .panel-body form+table.table-hardcoded tbody tr[bgcolor='#feffff'],html[data-background-style='nightRider'] .panel-body form+table.table-hardcoded tbody tr[bgcolor='#ffffff']{border-color:#3a3c41 !important}html[data-background-style='nightRider'] .btn:not(.btn-link):not(.btn-menu-toggler):not(.dropdown-toggle):before{background:rgba(255,255,255,.020) !important}html[data-background-style='nightRider'] .table.table-striped.table-condensed .opener_container,html[data-background-style='nightRider'] .opener_container{border-right:1px solid #393b3f !important;border-left:1px solid #393b3f !important}html[data-background-style='nightRider'] .opener_container.opener_sub_container,html[data-background-style='nightRider'] .opener_sub_container.margined-top{border-color:transparent !important}.panel-body form .ui_grid_table tbody tr.ui_grid_row td.ui_grid_cell>table.table tbody>tr.ui_checked_columns td{border-top:1px solid rgba(61,63,67,.58) !important;background-color:rgba(42,45,49,.2) !important}html[data-background-style='nightRider'] body[class='acl'] .panel-body>h3{border-bottom:1px solid rgba(76,79,84,.40) !important}html[data-background-style='nightRider'] .opener_container .opener_shown hr,html[data-background-style='nightRider'] hr{border-top:1px solid rgba(76,79,84,.40) !important}html[data-background-style='nightRider'] .btn:active,html[data-background-style='nightRider'] .btn.active{box-shadow:none !important}html[data-background-style='nightRider'] .ui_link.btn.btn-inverse.btn-tiny.ui_link_replaced,html[data-background-style='nightRider'] .btn-inverse.btn-tiny,html[data-background-style='nightRider'] .btn-tiny,html[data-background-style='nightRider'] .btn{color:rgba(199,199,200,.60) !important;border-color:rgba(80,85,99,.61) !important;background-color:transparent !important}html[data-background-style='nightRider'] .btn.btn-borderless{border-color:transparent !important}html[data-background-style='nightRider'] .btn.diffctl,html[data-background-style='nightRider'] .btn.bctl{border-color:transparent !important}html[data-background-style='nightRider'] .ui_link.btn.btn-inverse.btn-tiny.ui_link_replaced:hover,html[data-background-style='nightRider'] .btn-inverse.btn-tiny:hover,html[data-background-style='nightRider'] .btn-tiny:hover{border-color:#585d6e !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .panel-body p>a[href^='edit_part.cgi'],html[data-background-style='nightRider'] table+a[href^='edit_part.cgi'],html[data-background-style='nightRider'] .panel-body>.table.table-striped+.ui_link,html[data-background-style='nightRider'] .panel-body>.ui_link,html[data-background-style='nightRider'] input[type='submit'],html[data-background-style='nightRider'] input[type='button'],html[data-background-style='nightRider'] .btn-default{color:#a8abad !important;border-color:rgba(80,85,99,.75) !important;background-color:rgba(97,103,121,.07) !important}html[data-background-style='nightRider'] .btn-default:focus,html[data-background-style='nightRider'] .btn-default.focus{color:#fff !important;border-color:#505563 !important;outline:0 !important;background-color:rgba(97,103,121,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .panel-body p>a[href^='edit_part.cgi']:hover,html[data-background-style='nightRider'] .panel-body p>a[href^='edit_part.cgi']:focus,html[data-background-style='nightRider'] table+a[href^='edit_part.cgi']:hover,html[data-background-style='nightRider'] table+a[href^='edit_part.cgi']:focus,html[data-background-style='nightRider'] .panel-body>.table.table-striped+.ui_link:hover,html[data-background-style='nightRider'] .panel-body>.table.table-striped+.ui_link:focus,html[data-background-style='nightRider'] .panel-body>.ui_link:hover,html[data-background-style='nightRider'] .panel-body>.ui_link:focus,html[data-background-style='nightRider'] input[type='button']:hover,html[data-background-style='nightRider'] input[type='submit']:hover,html[data-background-style='nightRider'] input[type='button']:focus,html[data-background-style='nightRider'] input[type='submit']:focus,html[data-background-style='nightRider'] .btn-default:hover{color:#fff !important;border-color:#505563 !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] input[type='button']:focus+.file_chooser_button_attached,html[data-background-style='nightRider'] button>i.fa-chevron-circle-right,html[data-background-style='nightRider'] input[onclick*='datePicker']+.fa-calendar,html[data-background-style='nightRider'] .file-input-wrapper:hover i,html[data-background-style='nightRider'] input:hover+.file_chooser_button_attached,html[data-background-style='nightRider'] .file_chooser_button:hover i,html[data-background-style='nightRider'] .file_chooser_button_emulate:hover,html[data-background-style='nightRider'] .file_chooser_button:hover,html[data-background-style='nightRider'] .file-input-wrapper:hover{color:#8e8e8e !important;background-color:transparent !important}html[data-background-style='nightRider'] .fa.fa-paperclip,html[data-background-style='nightRider'] .fa.fa-files-o,html[data-background-style='nightRider'] .file_chooser_button_attached{color:#a8abad !important;background-color:transparent}html[data-background-style='nightRider'] input[data-mmclick],html[data-background-style='nightRider'] .file_chooser_button{margin-left:-5px !important}html[data-background-style='nightRider'] .file_chooser_button[style*='width:100%']{margin-left:0 !important}html[data-background-style='nightRider'] .tooltip-inner{color:#acaeb2;background-color:#1e2125}html[data-background-style='nightRider'] .tooltip.top .tooltip-arrow{border-top-color:#1e2125}html[data-background-style='nightRider'] .tooltip.top-left .tooltip-arrow{border-top-color:#1e2125}html[data-background-style='nightRider'] .tooltip.top-right .tooltip-arrow{border-top-color:#1e2125}html[data-background-style='nightRider'] .tooltip.right .tooltip-arrow{border-right-color:#1e2125}html[data-background-style='nightRider'] .tooltip.left .tooltip-arrow{border-left-color:#1e2125}html[data-background-style='nightRider'] .tooltip.bottom .tooltip-arrow{border-bottom-color:#1e2125}html[data-background-style='nightRider'] .tooltip.bottom-left .tooltip-arrow{border-bottom-color:#1e2125}html[data-background-style='nightRider'] .tooltip,html[data-background-style='nightRider'] .popover{background-color:transparent}html[data-background-style='nightRider'] .popover-content{color:#acaeb2 !important;background-color:#35393f !important}html[data-background-style='nightRider'] .popover-title{color:#b0b0b0;border-bottom-color:#242528;background-color:#2f3238 !important}html[data-background-style='nightRider'] .popover.left>.arrow:after{right:2px;border-left-color:#35393f}html[data-background-style='nightRider'] .popover.right>.arrow:after{left:2px;border-right-color:#35393f}html[data-background-style='nightRider'] .popover.right>.arrow{border-right-color:rgba(0,0,0,.15)}html[data-background-style='nightRider'] tr.thead,html[data-background-style='nightRider'] .table-title,html[data-background-style='nightRider'] .panel-body form+table.table-hardcoded>tbody>tr.thead>td,html[data-background-style='nightRider'] .panel,html[data-background-style='nightRider'] .panel-loading{border-top-width:1px !important}html[data-background-style='nightRider'] .opener_shown table tbody tr td{padding-left:1px !important}html[data-background-style='nightRider'] .dropdown-menu{background-color:#292b31}html[data-background-style='nightRider'] .datepicker-dropdown.datepicker-orient-top:after{border-top:6px solid #292b31}html[data-background-style='nightRider'] ._c__op_d,html[data-background-style='nightRider'] .tab-pane .table-responsive .table-subtable .table-title{border-top:1px solid #3a3c41 !important}html[data-background-style='nightRider'] .table-hover ._c__op_r:hover,html[data-background-style='nightRider'] .table-hover ._c__op_d:hover,html[data-background-style='nightRider'] .table-hover ._c__op_r,html[data-background-style='nightRider'] .table-hover ._c__op_d{border-color:rgba(61,63,67,.81) !important;background-color:#2b2e34}html[data-background-style='nightRider'] .row.icons-row.vertical-align[style*='border-']{border-top-color:#3d3f43 !important;border-bottom-color:#3d3f43 !important}html[data-background-style='nightRider'] .opener_table_style_small .table-title,html[data-background-style='nightRider'] .opener_table_style_small .sub_table_container.table-hardcoded{border:1px solid #3d3f43 !important}html[data-background-style='nightRider'] .opener_table_style_small .opener_container.margined-top,html[data-background-style='nightRider'] .opener_table_style .opener_container.margined-top{border-bottom:1px solid #3d3f43 !important}html[data-background-style='nightRider'] .link_hover_effect_style{background:transparent !important}html[data-background-style='nightRider'] .opener_table_cell_style_small_exclusion_border_top{border-top-width:1px !important;border-top-color:#424449 !important;border-bottom-color:#424449 !important}html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style>div.opener_extra_container.opener_extra_container_style{border:0 !important;border-bottom:1px solid rgba(66,68,73,.78) !important}html[data-background-style='nightRider'] p+.opener_container.opener_sub_container.margined-top,html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style+.opener_container.opener_sub_container.margined-top,html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style{border:1px solid rgba(66,68,73,.78) !important}html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style a.opener_extra_container_a_style,html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style{background-color:#292c32 !important}html[data-background-style='nightRider'] div.opener_extra_container.opener_extra_container_style a.opener_extra_container_a_style{color:rgba(151,155,160,.94) !important}html[data-background-style='nightRider'] .col_header.opener_table_cell_style_small{background-color:#2c2f34 !important}html[data-background-style='nightRider'] input[type='range']::-webkit-slider-runnable-track{background:rgba(255,255,255,.27)}html[data-background-style='nightRider'] input[type='range']::-webkit-slider-thumb{background:#aaa}html[data-background-style='nightRider'] input[type='range']:focus::-webkit-slider-runnable-track{background:rgba(255,255,255,.47)}html[data-background-style='nightRider'] input[type='range']::-moz-range-track{background:rgba(255,255,255,.27)}html[data-background-style='nightRider'] input[type='range']::-moz-range-thumb{background:#aaa}html[data-background-style='nightRider'] input[type='range']::-ms-fill-lower{background:#777}html[data-background-style='nightRider'] input[type='range']::-ms-fill-upper{background:rgba(255,255,255,.27)}html[data-background-style='nightRider'] input[type='range']::-ms-thumb{background:#aaa}html[data-background-style='nightRider'] input[type='range']:focus::-ms-fill-lower{background:#888}html[data-background-style='nightRider'] input[type='range']:focus::-ms-fill-upper{background:rgba(255,255,255,.47)}html[data-background-style='nightRider'] .modal-header{border-bottom:1px solid #35363b}html[data-background-style='nightRider'] .modal-content{border:1px solid #35363b;background-color:#2a2d32;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}html[data-background-style='nightRider'] .modal-footer{border-top:1px solid #35363b}html[data-background-style='nightRider'] .close{opacity:.3;color:#fff;text-shadow:0 1px 0 #36383d}html[data-background-style='nightRider'] .close:hover,html[data-background-style='nightRider'] .close:focus{opacity:.7;color:#fff}html[data-background-style='nightRider'] button.file-input-wrapper:hover,html[data-background-style='nightRider'] button.file_chooser_button:hover,html[data-background-style='nightRider'] button.file_chooser_button:focus,html[data-background-style='nightRider'] button.file_chooser_button:active,html[data-background-style='nightRider'] button.file_chooser_button.active,html[data-background-style='nightRider'] button:focus>.fa-files-o{background-color:transparent !important}html[data-background-style='nightRider'] .btn-default:active,html[data-background-style='nightRider'] .btn-default.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-default{color:#fff !important;border-color:#505563 !important;background-color:#32363c !important}html[data-background-style='nightRider'] .btn-default:active:hover,html[data-background-style='nightRider'] .btn-default.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-default:hover,html[data-background-style='nightRider'] .btn-default:active:focus,html[data-background-style='nightRider'] .btn-default.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-default:focus,html[data-background-style='nightRider'] .btn-default:active.focus,html[data-background-style='nightRider'] .btn-default.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-default.focus{color:#fff !important;border-color:#798094 !important;outline:0 !important;background-color:rgba(97,103,121,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-default:active,html[data-background-style='nightRider'] .btn-default.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-default{background-image:none !important}html[data-background-style='nightRider'] .btn-default.disabled:hover,html[data-background-style='nightRider'] .btn-default[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-default:hover,html[data-background-style='nightRider'] .btn-default.disabled:focus,html[data-background-style='nightRider'] .btn-default[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-default:focus,html[data-background-style='nightRider'] .btn-default.disabled.focus,html[data-background-style='nightRider'] .btn-default[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-default.focus{border-color:#505563 !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .btn-default .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .badge.fa.fa-github{background-color:rgba(28,28,28,.73)}html[data-background-style='nightRider'] .badge.fa.fa-github:hover{background-color:rgba(230,230,230,.08)}html[data-background-style='nightRider'] .badge.background-info.fa.fa-twitter{color:rgba(255,255,255,.58)}html[data-background-style='nightRider'] .badge.background-info.fa.fa-twitter:hover{background-color:rgba(78,212,251,.4)}html[data-background-style='nightRider'] a.label,html[data-background-style='nightRider'] a.badge{color:#8e8f92}html[data-background-style='nightRider'] .background-success{background-color:rgba(38,147,115,.57)}html[data-background-style='nightRider'] .background-primary{background-color:rgba(24,134,189,.41)}html[data-background-style='nightRider'] .background-info{background-color:rgba(79,167,193,.38)}html[data-background-style='nightRider'] .background-warning{background-color:rgba(181,121,28,.38)}html[data-background-style='nightRider'] .background-danger{background-color:rgba(190,60,57,.42)}html[data-background-style='nightRider'] .atshover:hover .bootstrap-tagsinput .label,html[data-background-style='nightRider'] .atshover .bootstrap-tagsinput:hover .label{color:#2f3238 !important;background-color:rgba(121,123,132,.91) !important}html[data-background-style='nightRider'] .label-warning{color:rgba(198,198,198,.76);background-color:rgba(207,157,87,.33)}html[data-background-style='nightRider'] .label-default{color:#2f3238 !important;border:1px solid rgba(70,72,75,.48);background-color:rgba(18,20,23,.06)}html[data-background-style='nightRider'] .label-default:hover{color:#a3a3a4;border:1px solid rgba(70,72,75,.73);background-color:rgba(18,20,23,.32)}html[data-background-style='nightRider'] .modal.in .label-default{color:#8d8d8d !important;border:1px solid rgba(70,72,75,.48);background-color:#282b30}html[data-background-style='nightRider'] .modal.in .label-default:hover{color:#a3a3a4;border:1px solid rgba(70,72,75,.73);background-color:rgba(18,20,23,.32)}html[data-background-style='nightRider'] .badge-custom{color:#939393;background-color:rgba(240,240,240,.04)}html[data-background-style='nightRider'] .btn-grey{color:#a8abad !important;border-color:rgba(80,85,99,.61) !important;background-color:transparent !important}html[data-background-style='nightRider'] .btn-grey:focus,html[data-background-style='nightRider'] .btn-grey.focus{color:#fff !important;border-color:#505563 !important;outline:0 !important;background-color:rgba(97,103,121,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-grey:hover{color:#fff !important;border-color:#505563 !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .btn-grey:active,html[data-background-style='nightRider'] .btn-grey.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-grey{color:#fff !important;border-color:#505563 !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .btn-grey:active:hover,html[data-background-style='nightRider'] .btn-grey.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-grey:hover,html[data-background-style='nightRider'] .btn-grey:active:focus,html[data-background-style='nightRider'] .btn-grey.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-grey:focus,html[data-background-style='nightRider'] .btn-grey:active.focus,html[data-background-style='nightRider'] .btn-grey.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-grey.focus{color:#fff !important;border-color:#798094 !important;outline:0 !important;background-color:rgba(97,103,121,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-grey:active,html[data-background-style='nightRider'] .btn-grey.active,.open>.dropdown-toggle.btn-grey{background-image:none !important}html[data-background-style='nightRider'] .btn-grey.disabled:hover,html[data-background-style='nightRider'] .btn-grey[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-grey:hover,html[data-background-style='nightRider'] .btn-grey.disabled:focus,html[data-background-style='nightRider'] .btn-grey[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-grey:focus,html[data-background-style='nightRider'] .btn-grey.disabled.focus,html[data-background-style='nightRider'] .btn-grey[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-grey.focus{border-color:#505563 !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .btn-grey .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .btn-primary:not(.page_footer_submit){color:#bfc9d3 !important;border-color:rgba(15,131,201,.7) !important;background-color:rgba(15,131,201,.07) !important}html[data-background-style='nightRider'] .btn-primary.page_footer_submit{color:#bfc9d3 !important;border-color:rgba(15,131,201,.68) !important;background-color:rgba(15,131,201,.15) !important}html[data-background-style='nightRider'] .ui_form_end_submit .cspinner .cspinner-icon.dark{border-top-color:#aaa;border-left-color:#fff}html[data-background-style='nightRider'] .btn-primary.page_footer_submit:hover{color:#fff !important;border-color:rgba(15,131,201,.80) !important;background-color:rgba(15,131,201,.25) !important}html[data-background-style='nightRider'] .btn-primary:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.focus:not(.page_footer_submit){color:#fff !important;border-color:#0f83c9 !important;outline:0 !important;background-color:rgba(15,131,201,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-primary:hover:not(.page_footer_submit){color:#fff !important;border-color:#0f83c9 !important;background-color:rgba(15,131,201,.1) !important}html[data-background-style='nightRider'] .btn-primary:active:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.active:not(.page_footer_submit),html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-primary{color:#fff !important;border-color:#0f83c9 !important;background-color:rgba(15,131,201,.1) !important}html[data-background-style='nightRider'] .btn-primary:active:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.active:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-primary:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary:active:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.active:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-primary:focus,html[data-background-style='nightRider'] .btn-primary:active.focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.active.focus:not(.page_footer_submit),html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-primary.focus:not(.page_footer_submit){color:#fff !important;border-color:#1d9fee !important;outline:0 !important;background-color:rgba(15,131,201,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-primary:active:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.active:not(.page_footer_submit),.open>.dropdown-toggle.btn-primary{background-image:none !important}html[data-background-style='nightRider'] .btn-primary.disabled:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary[disabled]:hover:not(.page_footer_submit),html[data-background-style='nightRider'] fieldset[disabled] .btn-primary:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.disabled:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary[disabled]:focus:not(.page_footer_submit),html[data-background-style='nightRider'] fieldset[disabled] .btn-primary:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary.disabled.focus:not(.page_footer_submit),html[data-background-style='nightRider'] .btn-primary[disabled].focus:not(.page_footer_submit),html[data-background-style='nightRider'] fieldset[disabled] .btn-primary.focus:not(.page_footer_submit){border-color:#0f83c9 !important;background-color:rgba(15,131,201,.1) !important}html[data-background-style='nightRider'] .btn-primary:not(.page_footer_submit) .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] b.btn.btn-success.btn-tiny,html[data-background-style='nightRider'] .btn-success{color:#bfc9d3 !important;border-color:rgba(27,191,137,.55) !important;background-color:rgba(27,191,137,.07) !important}html[data-background-style='nightRider'] b.btn.btn-success.btn-tiny:focus,html[data-background-style='nightRider'] .btn-success:focus,html[data-background-style='nightRider'] .btn-success.focus{color:#fff !important;border-color:#1bbf89 !important;outline:0 !important;background-color:rgba(27,191,137,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] b.btn.btn-success.btn-tiny:hover,html[data-background-style='nightRider'] .btn-success:hover{color:#fff !important;border-color:#1bbf89 !important;background-color:rgba(27,191,137,.1) !important}html[data-background-style='nightRider'] .btn-success:active,html[data-background-style='nightRider'] .btn-success.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-success{color:#fff !important;border-color:#1bbf89 !important;background-color:rgba(27,191,137,.1) !important}html[data-background-style='nightRider'] .btn-success:active:hover,html[data-background-style='nightRider'] .btn-success.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-success:hover,html[data-background-style='nightRider'] .btn-success:active:focus,html[data-background-style='nightRider'] .btn-success.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-success:focus,html[data-background-style='nightRider'] .btn-success:active.focus,html[data-background-style='nightRider'] .btn-success.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-success.focus{color:#fff !important;border-color:#2ce1a5 !important;outline:0 !important;background-color:rgba(27,191,137,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-success:active,html[data-background-style='nightRider'] .btn-success.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-success{background-image:none !important}html[data-background-style='nightRider'] .btn-success.disabled:hover,html[data-background-style='nightRider'] .btn-success[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-success:hover,html[data-background-style='nightRider'] .btn-success.disabled:focus,html[data-background-style='nightRider'] .btn-success[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-success:focus,html[data-background-style='nightRider'] .btn-success.disabled.focus,html[data-background-style='nightRider'] .btn-success[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-success.focus{border-color:#1bbf89 !important;background-color:rgba(27,191,137,.1) !important}html[data-background-style='nightRider'] .btn-success .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .btn-info{color:#bfc9d3 !important;border-color:rgba(86,192,224,.72) !important;background-color:rgba(86,192,224,.07) !important}html[data-background-style='nightRider'] .btn-info:focus,html[data-background-style='nightRider'] .btn-info.focus{color:#fff !important;border-color:#56c0e0 !important;outline:0 !important;background-color:rgba(86,192,224,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-info:hover{color:#fff !important;border-color:#56c0e0 !important;background-color:rgba(86,192,224,.1) !important}html[data-background-style='nightRider'] .btn-info:active,html[data-background-style='nightRider'] .btn-info.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-info{color:#fff !important;border-color:#56c0e0 !important;background-color:rgba(86,192,224,.1) !important}html[data-background-style='nightRider'] .btn-info:active:hover,html[data-background-style='nightRider'] .btn-info.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-info:hover,html[data-background-style='nightRider'] .btn-info:active:focus,html[data-background-style='nightRider'] .btn-info.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-info:focus,html[data-background-style='nightRider'] .btn-info:active.focus,html[data-background-style='nightRider'] .btn-info.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-info.focus{color:#fff !important;border-color:#81d0e8 !important;outline:0 !important;background-color:rgba(86,192,224,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-info:active,html[data-background-style='nightRider'] .btn-info.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-info{background-image:none !important}html[data-background-style='nightRider'] .btn-info.disabled:hover,html[data-background-style='nightRider'] .btn-info[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-info:hover,html[data-background-style='nightRider'] .btn-info.disabled:focus,html[data-background-style='nightRider'] .btn-info[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-info:focus,html[data-background-style='nightRider'] .btn-info.disabled.focus,html[data-background-style='nightRider'] .btn-info[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-info.focus{border-color:#56c0e0 !important;background-color:rgba(86,192,224,.1) !important}html[data-background-style='nightRider'] .btn-info .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .btn-warning{color:#bfc9d3 !important;border-color:rgba(247,175,62,.68) !important;background-color:rgba(247,175,62,.07) !important}html[data-background-style='nightRider'] .btn-warning:focus,html[data-background-style='nightRider'] .btn-warning.focus{color:#fff !important;border-color:#f7af3e !important;outline:0 !important;background-color:rgba(247,175,62,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-warning:hover{color:#fff !important;border-color:#f7af3e !important;background-color:rgba(247,175,62,.1) !important}html[data-background-style='nightRider'] .btn-warning:active,html[data-background-style='nightRider'] .btn-warning.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-warning{color:#fff !important;border-color:#f7af3e !important;background-color:rgba(247,175,62,.1) !important}html[data-background-style='nightRider'] .btn-warning:active:hover,html[data-background-style='nightRider'] .btn-warning.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-warning:hover,html[data-background-style='nightRider'] .btn-warning:active:focus,html[data-background-style='nightRider'] .btn-warning.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-warning:focus,html[data-background-style='nightRider'] .btn-warning:active.focus,html[data-background-style='nightRider'] .btn-warning.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-warning.focus{color:#fff !important;border-color:#f9c36f !important;outline:0 !important;background-color:rgba(247,175,62,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-warning:active,html[data-background-style='nightRider'] .btn-warning.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-warning{background-image:none !important}html[data-background-style='nightRider'] .btn-warning.disabled:hover,html[data-background-style='nightRider'] .btn-warning[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-warning:hover,html[data-background-style='nightRider'] .btn-warning.disabled:focus,html[data-background-style='nightRider'] .btn-warning[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-warning:focus,html[data-background-style='nightRider'] .btn-warning.disabled.focus,html[data-background-style='nightRider'] .btn-warning[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-warning.focus{border-color:#f7af3e !important;background-color:rgba(247,175,62,.1) !important}html[data-background-style='nightRider'] .btn-warning .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .btn-danger{color:#bfc9d3 !important;border-color:rgba(219,82,75,.69) !important;background-color:rgba(219,82,75,.07) !important}html[data-background-style='nightRider'] .btn-danger:focus,html[data-background-style='nightRider'] .btn-danger.focus{color:#fff !important;border-color:#db524b !important;outline:0 !important;background-color:rgba(219,82,75,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-danger:hover{color:#fff !important;border-color:#db524b !important;background-color:rgba(219,82,75,.1) !important}html[data-background-style='nightRider'] .btn-danger:active,html[data-background-style='nightRider'] .btn-danger.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-danger{color:#fff !important;border-color:#db524b !important;background-color:rgba(219,82,75,.1) !important}html[data-background-style='nightRider'] .btn-danger:active:hover,html[data-background-style='nightRider'] .btn-danger.active:hover,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-danger:hover,html[data-background-style='nightRider'] .btn-danger:active:focus,html[data-background-style='nightRider'] .btn-danger.active:focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-danger:focus,html[data-background-style='nightRider'] .btn-danger:active.focus,html[data-background-style='nightRider'] .btn-danger.active.focus,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-danger.focus{color:#fff !important;border-color:#e47b75 !important;outline:0 !important;background-color:rgba(219,82,75,.1) !important;box-shadow:none !important}html[data-background-style='nightRider'] .btn-danger:active,html[data-background-style='nightRider'] .btn-danger.active,html[data-background-style='nightRider'] .open>.dropdown-toggle.btn-danger{background-image:none !important}html[data-background-style='nightRider'] .btn-danger.disabled:hover,html[data-background-style='nightRider'] .btn-danger[disabled]:hover,html[data-background-style='nightRider'] fieldset[disabled] .btn-danger:hover,html[data-background-style='nightRider'] .btn-danger.disabled:focus,html[data-background-style='nightRider'] .btn-danger[disabled]:focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-danger:focus,html[data-background-style='nightRider'] .btn-danger.disabled.focus,html[data-background-style='nightRider'] .btn-danger[disabled].focus,html[data-background-style='nightRider'] fieldset[disabled] .btn-danger.focus{border-color:#db524b !important;background-color:rgba(219,82,75,.1) !important}html[data-background-style='nightRider'] .btn-danger .badge{color:transparent !important;background-color:#949ba2 !important}html[data-background-style='nightRider'] .btn-default:hover,html[data-background-style='nightRider'] .btn-default:active,html[data-background-style='nightRider'] .btn-default:active:focus,html[data-background-style='nightRider'] .btn-default:focus,html[data-background-style='nightRider'] .btn-default.active{background-color:#3d404c !important}html[data-background-style='nightRider'] .btn-link:hover,html[data-background-style='nightRider'] .btn-link:active,html[data-background-style='nightRider'] .btn-link:active:focus,html[data-background-style='nightRider'] .btn-link:focus,html[data-background-style='nightRider'] .btn-link.active{text-decoration:none !important;color:#f6a821 !important}html[data-background-style='nightRider'] .btn-group .btn+.btn,html[data-background-style='nightRider'] .btn-group .btn+.btn-group,html[data-background-style='nightRider'] .btn-group .btn-group+.btn,html[data-background-style='nightRider'] .btn-group .btn-group+.btn-group{margin-left:-1px}html[data-background-style='nightRider'] .btn-group .btn+.btn.btn-default{margin-left:0 !important}html[data-background-style='nightRider'] .btn-link,html[data-background-style='nightRider'] .btn-link{color:#767676;border-color:rgba(61,63,67,.55) !important}html[data-background-style='nightRider'] .btn-link:hover,html[data-background-style='nightRider'] .btn-link:focus{color:#e91;border-color:rgba(61,63,67,.99) !important;background-color:rgba(97,103,121,.1) !important}html[data-background-style='nightRider'] .btn-link-bordered:hover,html[data-background-style='nightRider'] .btn-link-bordered:focus,html[data-background-style='nightRider'] .btn-link-bordered:active,html[data-background-style='nightRider'] .btn-link-bordered.active,html[data-background-style='nightRider'] .btn-link-bordered{border:1px solid #444649 !important}html[data-background-style='nightRider'] .btn-link-bordered:hover,html[data-background-style='nightRider'] .btn-link-bordered:focus{border:1px solid rgba(147,107,37,.72) !important}html[data-background-style='nightRider'] input:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']){color:#bbb}html[data-background-style='nightRider'] div.container-fluid.col-lg-10.col-lg-offset-1>div>div.panel-body>.row.icons-row .icons-container a.icon_link{color:rgba(182,182,182,.71) !important}html[data-background-style='nightRider'] .row.icons-row .icons-container img{filter:saturate(0) brightness(.6) contrast(1.5);-webkit-filter:saturate(0) brightness(.6) contrast(1.5)}html[data-background-style='nightRider'] .row.icons-row .icons-container:hover img{filter:saturate(.6) brightness(1.2) contrast(.6);-webkit-filter:saturate(.6) brightness(1.2) contrast(.6)}html[data-background-style='nightRider'] .row.icons-row .small-icons-container:not(.highlighted),html[data-background-style='nightRider'] .row.icons-row .icons-container:not(.highlighted){background:linear-gradient(to bottom,rgba(255,255,255,.05) 0,rgba(255,255,255,.02) 100%) repeat scroll 0 0 transparent}html[data-background-style='nightRider'] .row.icons-row .small-icons-container.highlighted,html[data-background-style='nightRider'] .row.icons-row .icons-container.highlighted{background:#3d353b !important}html[data-background-style='nightRider'] .row.icons-row .small-icons-container,html[data-background-style='nightRider'] .row.icons-row .icons-container{border:1px solid #43464b;border-bottom:1px solid #3f4247}html[data-background-style='nightRider'] body form>div>div>span.hidden-forged-7>a>i,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-selected,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-select,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-edit{color:rgba(238,153,17,.60)}html[data-background-style='nightRider'] body form>div>div>span.hidden-forged-7>a>i:hover,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-selected:hover,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-select:hover,html[data-background-style='nightRider'] .gl-icon-container .gl-icon-edit:hover{color:rgba(219,82,75,.79)}html[data-background-style='nightRider'] .row.icons-row .icon_link{color:#cacaca;text-shadow:none}html[data-background-style='nightRider'] input:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']):not(.dataTable-mirror):not(.sidebar-search):not(.form-control-rea),html[data-background-style='nightRider'] textarea:not([disabled]),html[data-background-style='nightRider'] textarea.form-control:not([disabled]),html[data-background-style='nightRider'] select:not([disabled]),html[data-background-style='nightRider'] input.form-control:not(.sidebar-search):not([disabled]){color:rgba(151,155,160,.94) !important;border-color:rgba(78,81,87,.37) !important;background:#2f3237 !important}html[data-background-style='nightRider'] select[multiple] option:checked{background:linear-gradient(#757980,#757980)}html[data-background-style='nightRider'] select option{background:#3c3f46}html[data-background-style='nightRider'] select[name='settings_font_family'] option[disabled]{display:none}html[data-background-style='nightRider'] input:focus:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']):not(.dataTable-mirror):not(.sidebar-search),html[data-background-style='nightRider'] textarea:focus,html[data-background-style='nightRider'] textarea.form-control:focus,html[data-background-style='nightRider'] select:focus,html[data-background-style='nightRider'] .dataTables_filter input[type='search']:focus,html[data-background-style='nightRider'] .dataTables_filter input[type='search']:hover,html[data-background-style='nightRider'] .csf input[type='text']:not(.dataTable-mirror):focus,html[data-background-style='nightRider'] .csf input[type='search']:focus,html[data-background-style='nightRider'] input[id^='CSF']:focus,html[data-background-style='nightRider'] input[name]:not([type='image']):not([type='checkbox']):not([type='radio']):not(.sidebar-search):focus{border-color:rgba(137,106,17,.74) !important;-webkit-box-shadow:none !important;box-shadow:none !important}html[data-background-style='nightRider'] input:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']),html[data-background-style='nightRider'] input:focus:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']){background-color:transparent !important}html[data-background-style='nightRider'] input[disabled]:not(.popover-path-input):not([type='submit']):not([type='checkbox']):not([type='radio']):not(.session_login):not(.select2-search__field):not([data-command='true']),html[data-background-style='nightRider'] .file_chooser_button_preview.disabled,html[data-background-style='nightRider'] .file_chooser_button_preview.disabled i,html[data-background-style='nightRider'] .file-input-wrapper.disabled,html[data-background-style='nightRider'] .file-input-wrapper.disabled i,html[data-background-style='nightRider'] select[disabled],html[data-background-style='nightRider'] select[multiple][disabled] option,html[data-background-style='nightRider'] .form-control[disabled],html[data-background-style='nightRider'] .form-control[readonly],html[data-background-style='nightRider'] input[disabled].form-control.ui_textarea,html[data-background-style='nightRider'] input[disabled],html[data-background-style='nightRider'] fieldset[disabled] .form-control,html[data-background-style='nightRider'] .sub_table_container button[disabled],html[data-background-style='nightRider'] .sub_table_container select[disabled],html[data-background-style='nightRider'] .sub_table_container input[disabled]{cursor:not-allowed;color:#555 !important;border-color:rgba(78,81,87,.2) !important;background:rgba(92,92,92,.05) !important}html[data-background-style='nightRider'] input[disabled]+.lawobject{opacity:.1}html[data-background-style='nightRider'] .loader_initial_square1,html[data-background-style='nightRider'] .loader_initial_square2,html[data-background-style='nightRider'] .ui_form .table-responsive .table-subtable .table.table-striped.table-hover.table-condensed thead tr th{background-color:#2f3238 !important}html[data-background-style='nightRider'] .initial_loader_container .loading span{color:#999;text-shadow:1px 1px 0 rgba(0,50,90,.3)}html[data-background-style='nightRider'] .datepicker table tr td span.active:active,html[data-background-style='nightRider'] .datepicker table tr td span.active:hover:active,html[data-background-style='nightRider'] .datepicker table tr td span.active.disabled:active,html[data-background-style='nightRider'] .datepicker table tr td span.active.disabled:hover:active,html[data-background-style='nightRider'] .datepicker table tr td span.active.active,html[data-background-style='nightRider'] .datepicker table tr td span.active:hover.active,html[data-background-style='nightRider'] .datepicker table tr td span.active.disabled.active,html[data-background-style='nightRider'] .datepicker table tr td span.active.disabled:hover.active html[data-background-style='nightRider'] .datepicker table tr td.active:active,html[data-background-style='nightRider'] .datepicker table tr td.active.highlighted:active,html[data-background-style='nightRider'] .datepicker table tr td.active.active,html[data-background-style='nightRider'] .datepicker table tr td.active.highlighted.active{background-color:#27455b}html[data-background-style='nightRider'] .datepicker .datepicker-switch:hover,html[data-background-style='nightRider'] .datepicker .prev:hover,html[data-background-style='nightRider'] .datepicker .next:hover,html[data-background-style='nightRider'] .datepicker tfoot tr th:hover,html[data-background-style='nightRider'] .datepicker table tr td span:hover,html[data-background-style='nightRider'] .datepicker table tr td span.focused,html[data-background-style='nightRider'] .datepicker table tr td.day:hover,html[data-background-style='nightRider'] .datepicker table tr td.focused{background-color:#373b40}html[data-background-style='nightRider'] .nav-tabs{border-bottom:1px solid #3a3c41}html[data-background-style='nightRider'] .panel-body table.table table table.table td{border-left-color:#3a3c41}html[data-background-style='nightRider'] table.table table table.table tbody td{border-top-color:#3a3c41}html[data-background-style='nightRider'] .nav-tabs>li>a:hover{border-color:#3a3c41 #3a3c41 #3a3c41}html[data-background-style='nightRider'] .nav-tabs>li.active>a,html[data-background-style='nightRider'] .nav-tabs>li.active>a:hover,html[data-background-style='nightRider'] .nav-tabs>li.active>a:focus{color:#eaeaea;border:1px solid #3a3c41;border-bottom-color:transparent;background-color:#2f3238}html[data-background-style='nightRider'] .nav>li>a:hover,html[data-background-style='nightRider'] .nav>li>a:focus{background-color:#3a3c41}html[data-background-style='nightRider'] table.dataTable thead .sorting{opacity:.8;background:url(../../../images/palettes/nightRider/sort_both.png) no-repeat center left}html[data-background-style='nightRider'] table.dataTable thead .sorting_asc{background:url(../../../images/palettes/nightRider/sort_asc.png) no-repeat center left}html[data-background-style='nightRider'] table.dataTable thead .sorting_desc{background:url(../../../images/palettes/nightRider/sort_desc.png) no-repeat center left}html[data-background-style='nightRider'] .piechart .percent{color:#b0b0b1}html[data-background-style='nightRider'] .piechart .label{color:#8e8e8e}html[data-background-style='nightRider'] body[class*='postgresql']:not(.__non_res__) form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed th,html[data-background-style='nightRider'] body[class*='mysql']:not(.__non_res__) form[action='view_table.cgi'] .table.table-striped.table-hover.table-condensed th{border-right:1px dotted #4b4b4b}html[data-background-style='nightRider'] body[class*='postgresql']:not(.__non_res__) .container-resizeable-head,html[data-background-style='nightRider'] body[class*='mysql']:not(.__non_res__) .container-resizeable-head{border-top-color:#393b40;border-right-color:#393b40;border-bottom-color:#393b40;background-color:#2d3035}html[data-background-style='nightRider'] .db_editor_collapse:hover{color:#a94442}html[data-background-style='nightRider'] body[class*='php-pear'][data-uri*='view.cgi'] .table .table-hardcoded tbody tr:not(:last-child) td:not(:first-child){border-bottom:1px solid rgba(66,68,73,.34)}html[data-background-style='nightRider'] form[action='save_owner.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value,html[data-background-style='nightRider'] form[action='save_plan.cgi'] table.table:nth-child(4) .table-hardcoded tr td.col_value,html[data-background-style='nightRider'] form[action='backup_sched.cgi'] table.table:nth-child(3) .table-hardcoded tr td.col_value,html[data-background-style='nightRider'] form[action='backup.cgi/backup.tgz'] table.table:nth-child(3) .table-hardcoded tr td.col_value,html[data-background-style='nightRider'] form[action='restore.cgi'] table.table:nth-child(3) .table-hardcoded tr td.col_value{border:1px solid rgba(66,68,73,.59) !important}html[data-background-style='nightRider'] body[data-uri*='virtual-server/backup_form'] .table-condensed.opener_table_style.opener_table_style_small>tbody>tr._c__op_r>td,html[data-background-style='nightRider'] body[data-uri*='virtual-server/backup_form'] .opener_container .opener_table_cell_style_small{border:1px solid #383a3f !important}html[data-background-style='nightRider'] .timeplot-container{border:1px solid #3d3f43}html[data-background-style='nightRider'] font[color='#393939']{color:rgba(225,225,224,.72) !important}html[data-background-style='nightRider'] .graph-container>.graph>.description{color:#1a1c20}html[data-background-style='nightRider'] .container-fluid>.panel>.panel-body>pre,html[data-background-style='nightRider'] .container-fluid>.panel>.panel-body>ul>pre,html[data-background-style='nightRider'] #content .container-fluid>.panel>.panel-body .table-responsive>.table .sub_table_container td>pre,html[data-background-style='nightRider'] body.server-manager[data-uri*='shell.cgi'] #content .sub_table_container:not(.xcontent-force-no-styling) *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th),html[data-background-style='nightRider'] body.shell .sub_table_container:not(.xcontent-force-no-styling) #content *:not(.fa):not(.lawobject):not(b):not(.btn):not(span):not(input):not(.tdhead):not(th){color:#dee0e5 !important;background-color:#121417 !important}html[data-background-style='nightRider'] .file-manager .directory_go_up,html[data-background-style='nightRider'] .file-manager .directory_go_up td i.fa{color:#666}html[data-background-style='nightRider'] body[class*='server-manager'][data-uri*='list_domains.cgi'] form[action='list_domains.cgi']+script+a+.opener_extra_container+div+p>a{border-bottom-color:#434751 !important}html[data-background-style='nightRider'] body[data-module*='virtualmin-mailman'] .table-hardcoded td[bgcolor='#FFF0D0']{border:1px solid #393b40;background-color:rgba(41,44,50,.49)}html[data-background-style='nightRider'] .badge.label-default{color:#2a2d32;background-color:#777}html[data-background-style='nightRider'] .label-transparent-50{background-color:rgba(125,125,125,.5)}html[data-background-style='nightRider'] .label-transparent-35{background-color:rgba(125,125,125,.35)}html[data-background-style='nightRider'] ::-webkit-input-placeholder{color:#44454b !important}html[data-background-style='nightRider'] :focus::-webkit-input-placeholder{color:#5a5c65 !important}html[data-background-style='nightRider'] .form-group .form-control.sidebar-search{border-bottom:1px solid rgba(255,255,255,.05) !important}html[data-background-style='nightRider'] .session_login .awcheckbox label::after{margin-left:-14px}html[data-background-style='nightRider'] .session_login i.wbm-webmin,html[data-background-style='nightRider'] .session_login .form-signin-heading{color:rgba(184,186,187,.94)}html[data-background-style='nightRider'] .session_login .form-signin-banner,html[data-background-style='nightRider'] .session_login .form-signin{color:rgba(151,155,160,.94);border:1px solid #424449;background-color:#2f3237 !important}html[data-background-style='nightRider'] .session_login .alert-warning:hover,html[data-background-style='nightRider'] .session_login .alert-warning,html[data-background-style='nightRider'] .session_login .alert-danger:hover,html[data-background-style='nightRider'] .session_login .alert-danger{color:rgba(234,239,238,.64);background-color:rgba(145,94,94,.44)}html[data-background-style='nightRider'] .session_login .alert-success:hover,html[data-background-style='nightRider'] .session_login .alert-success{color:rgba(208,216,214,.66);background-color:rgba(27,250,41,.12)}html[data-background-style='nightRider'] .text-semi-light{color:#6d6d6d}html[data-background-style='nightRider'] .text-semi-dark.text-dark-hoverd:hover,html[data-background-style='nightRider'] .text-dark.text-dark-hoverd:hover,html[data-background-style='nightRider'] .text-semi-dark:visited,html[data-background-style='nightRider'] .text-semi-dark:focus,html[data-background-style='nightRider'] .text-semi-dark:active,html[data-background-style='nightRider'] .text-semi-dark:hover{color:#757272}html[data-background-style='nightRider'] font[color='#ff1100']{color:#a94442 !important}html[data-background-style='nightRider'] font[color='#00c000'],html[data-background-style='nightRider'] font[color='#00ff00']{color:#269373 !important}html[data-background-style='nightRider'] .text-lighter{color:#6e727b}html[data-background-style='nightRider'] label.select-styled:after{color:#555;border-color:#444}html[data-background-style='nightRider'] body[class*='virtual-server'] img[src*='grey'],html[data-background-style='nightRider'] body[class*='virtual-server'] img[src*='blue'],html[data-background-style='nightRider'] body[class*='virtual-server'] img[src*='red'],html[data-background-style='nightRider'] body[class*='virtual-server'] img[src*='usage-'],html[data-background-style='nightRider'] body[class*='server-manager'] img[src*='grey'],html[data-background-style='nightRider'] body[class*='server-manager'] img[src*='blue'],html[data-background-style='nightRider'] body[class*='server-manager'] img[src*='purple'],html[data-background-style='nightRider'] body[class*='server-manager'] img[src*='red'],html[data-background-style='nightRider'] body[class*='server-manager'] img[src*='usage-']{filter:saturate(.6) brightness(.6) contrast(.5) hue-rotate(-29deg);-webkit-filter:saturate(.6) brightness(.6) contrast(.5) hue-rotate(-29deg)}html[data-background-style='nightRider'] .file-manager .tabs-top>ul.nav li.sortable-dragging,html[data-background-style='nightRider'] .file-manager .tabs-top>ul.nav li.sortable-placeholder{border-color:#666}html[data-background-style='nightRider'][data-theme='gunmetal'] #right-side-tabs .ui_link,html[data-background-style='nightRider'][data-theme='gunmetal'] #mCSB_2_container>div>div.is-sysinfo_data>div.info-list-data>span>a,html[data-background-style='nightRider'][data-theme='gunmetal'] #right-side-tabs-favorites a{color:rgba(140,145,150,.89) !important}html[data-background-style='nightRider'] #system-status a[data-refresh='system-status']{margin:-5px -11px}html[data-background-style='nightRider'][data-uri*='virtual-server/delete_domain.cgi'] font[size='+1']{color:#e6423ea6}html[data-background-style='nightRider'] .session-reauthenticate{background-color:#333}html[data-background-style='nightRider'] .session-reauthenticate-container-center{border-color:#444}html[data-background-style='nightRider'] .session-reauthenticate-container-center .panel,html[data-background-style='nightRider'] .session-reauthenticate-container-center .panel input{background-color:#323333 !important;border-color:#434444d6}html[data-background-style='nightRider'] .session-reauthenticate-header .session-reauthenticate-header-icon{color:#ffc0538c}html[data-background-style='nightRider'] .session-reauthenticate-header .session-reauthenticate-header-icon i.fa-unlock{color:#439076}@keyframes dots{0,20%{color:#333;text-shadow:.25em 0 0 rgba(200,200,200,0),.5em 0 0 rgba(200,200,200,0)}40%{color:#eee;text-shadow:.25em 0 0 rgba(200,200,200,0),.5em 0 0 rgba(200,200,200,0)}60%{text-shadow:.25em 0 0 #eee,.5em 0 0 rgba(200,200,200,0)}80%,100%{text-shadow:.25em 0 0 #eee,.5em 0 0 #eee}} \ No newline at end of file diff --git a/unauthenticated/js/bundle.min.js b/unauthenticated/js/bundle.min.js index 17087c581..74fe24e15 100644 --- a/unauthenticated/js/bundle.min.js +++ b/unauthenticated/js/bundle.min.js @@ -168,13 +168,13 @@ function(t,e){"object"==typeof module&&module.exports?module.exports=e():"functi * Copyright Ilia Rostovtsev * Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE) */ -const browser={internet_explorer:function(){var e=0,t=/MSIE (\d+\.\d+);/.test(navigator.userAgent),a=!!navigator.userAgent.match(/Trident\/7.0/),n=navigator.userAgent.indexOf("rv:11.0");return t&&(e=new Number(RegExp.$1)),-1!=navigator.appVersion.indexOf("MSIE 10")&&(e=10),a&&-1!=n&&(e=11),e},safari:function(e){var t=window.navigator.userAgent,a=(!!t.match(/iPad/i)||!!t.match(/iPhone/i))&&!!t.match(/WebKit/i)&&!t.match(/CriOS/i)&&!t.match(/OPiOS/i),n=navigator.vendor&&navigator.vendor.indexOf("Apple")>-1&&navigator.userAgent&&!navigator.userAgent.match("CriOS");return e?a:n}},Convert={arrFlip:function(e){var t,a={};for(t in e)e.hasOwnProperty(t)&&(a[e[t]]=t);return a},uriDecodeComponent:function(e,t){var a,n,i,r=new String,o=0;if(void 0===t&&(t=0),a=e?e.split(/(%(?:d0|d1)%.{2})/):[],$.isEmptyObject(a))return e;for(n=a.length;o":">",'"':""","'":"'","=":"="};return String(e).replace(/[&<>"'=]/g,function(e){return t[e]})},htmlUnEscape:function(e){var t=[["amp","&"],["apos","'"],["#x27","'"],["#x2F","/"],["#39","'"],["#47","/"],["#61","="],["lt","<"],["gt",">"],["nbsp"," "],["quot",'"']];if(e)for(var a=0,n=t.length;a").html(e).text()},pathnamePopLast:function(e){var t=~e.indexOf("%2F")?"%2F":"/",a=e.split(t);return a.pop(),a.join(t)||"/"},strUpFirst:function(e){return e.charAt(0).toUpperCase()+e.slice(1).toLowerCase()},strUpInitial:function(e){return e.length?this.strUpFirst(e.toLowerCase()):e}},Core={fnExtend:function(e,t){window[e]=function(e){return function(){e(),t()}}(window[e])},linkSameOrigin:function(e){return e.attr("href")&&(e.attr("href").match("^http:")||e.attr("href").match("^https:")||e.attr("href").match("^ftp:"))&&URI(e.attr("href")).hostname()!=v___location_hostname||e.attr("data-href")&&(e.attr("data-href").match("^http:")||e.attr("data-href").match("^https:")||e.attr("data-href").match("^ftp:"))&&URI(e.attr("data-href")).hostname()!=v___location_hostname?0:1},moduleAvailable:function(e){return void 0!=get_server_data(e)?Test.true(get_server_data(e)):$.inArray(e,get_server_data("available-modules"))>-1},curModuleFileQuery:function(e,t,a){return $('body[class*="'+e+'"]').length&&v___location_file==t&&v___location_query&&-1!==v___location_query.indexOf(a)},curModuleFile:function(e,t){return $('body[class*="'+e+'"]').length&&v___location_file==t},curModule:function(e){return $('body[class*="'+e+'"]').length}},HTML={label:{temperature:function(e,t){var a="bg-semi-transparent";return t?e<=30?a:e>30&&e<=60?a:e>60&&e<=80?"bg-warning":e>80?"bg-danger":"":e<=86?a:e>86&&e<=140?a:e>140&&e<=176?"bg-warning":e>176?"bg-danger":""},rpm:function(e){return e<=2*rpmFactor?bg_semi_tr:e>2*rpmFactor&&e<=3*rpmFactor?bg_semi_tr:e>3*rpmFactor&&e<=4*rpmFactor?bg_warn:e>4*rpmFactor?bg_danger:""}},template:{accordion:function(e,t,a,n){for(var i='
',r=0;r
'+a[r]+"
"}return i+=""},page_content_preloader:function(e){return'
 '+e+'
'},reauthenticate:function(e){return'

'+theme_language("theme_xhred_session_expired")+"

"+theme_language("theme_xhred_session_expired_details")+'
'+theme_language("theme_xhred_tooltip_switch_user")+"
"}}},page={handle:{content:{preloader:function(e){var t=this,a=$("#content"),n=$(".container-fluid"),i=$(".container-fluid-loading"),r=$("span[data-main_title]").text(),o=HTML.template.page_content_preloader(r);i.length?(i.remove(),n.removeClass("invisible"),a.removeClass("progressing"),setTimeout(function(){progress.progress()&&progress.end()},100)):(a.addClass("progressing").prepend(o),n.addClass("invisible")),e&&setTimeout(function(){t.preloader()},e)}}},render:{content:{filter:{init:function(e){var t=this,a="container-fluid .nav.nav-tabs",n=$(".__page .dataTables_filter"),i=$(".__page .panel-filter"),r=".panel-filter .panel.panel-default",o=$("body");(n.length||i.length)&&setTimeout(function(){$(".btn-filter-top-right").length||$(".btn-accordion-filter").length||($("#headln2r .btn-group a").addClass("pull-left").attr("style",""),$("#headln2r .btn-group").prepend(''+(e?'':""))),$(".btn-filter-gl").data("title",theme_language("theme_xhred_datatable_filter")),$(".btn-toggle-accordions").data("title",theme_language("theme_xhred_toggle_accordions")),settings_button_tooltip&&$(".btn-group").tooltip({selector:'a[data-toggle="tooltip"][data-skip]',container:"body",delay:{show:800,hide:30}}),$("."+a).length&&(e&&o.on("hide.bs.tab",'a[data-toggle="tab"]',function(e){t.clear()}),o.on("shown.bs.tab",'a[data-toggle="tab"]',function(e){var n=$(e.target).parent(".active");n.data("filter-value")?$(".dataTable-mirror").val(n.data("filter-value")).trigger("keyup"):$(".dataTable-mirror").val("").trigger("keyup"),t.visibility("btn-filter-top-right","btn-accordion-filter","btn-toggle-accordions",a)})),o.undelegate(r,"shown.bs.collapse.config hidden.bs.collapse.config"),o.on("shown.bs.collapse.config hidden.bs.collapse.config",r,function(e){setTimeout(function(){var e=$(".container-fluid").find(".btn-toggle-accordions").find("i");i.find(".panel-collapse").length===i.find(".panel-collapse.in").length?e.addClass("fa-toggle-switch text-light"):e.removeClass("fa-toggle-switch text-light")},10)});var n=$(".btn-toggle-accordions");e?$(i).find('a[data-toggle="collapse"]').on("click",function(e){$.trim($(".dataTable-mirror").val()).length&&page.render.content.filter.clear(),e.originalEvent&&$(".btn-toggle-accordions").find("i").removeClass("fa-toggle-switch text-light")}):$(".dataTables_filter").hide(),$(".filter_mirror_clear").mousedown(function(e){$(e.target).is(".filter_mirror_clear")&&t.clear()}),$(".btn-filter-top-right, .btn-accordion-filter").click(function(e){!$(e.target).is("input")&&$(this).find("label").slideToggle(300,function(){$(this).find("input").focus()})}),n.click(function(e){var a=$(this).find(".fa"),n=$(this).find(".fa-toggle-switch").length?1:0,i=$(".__page .panel-filter:visible");0===n?(i.find(".panel-collapse.in").length,i.find(".panel-collapse").length,i.find(".panel-collapse:not(.in)").filter(function(){$(this).removeData("bs.collapse").collapse({parent:!0,toggle:!1}).collapse("show").removeData("bs.collapse")})):i.find(".panel-collapse.in").filter(function(){"true"!==$(this).attr("aria-static")&&$(this).collapse("hide")}),a.toggleClass("fa-toggle-switch text-light"),void 0!==e.originalEvent&&$(".btn-accordion-filter input").val().length&&t.clear()}),$(".dataTable-mirror").keydown(function(e){76==e.keyCode&&e.ctrlKey&&(e.preventDefault(),e.stopPropagation(),t.clear())}).keyup(function(t){var i=$(this).val(),o=$(".__page .panel-filter:visible");if(e)if(i){$.support.transition&&($.support.transition=!1),n.find(".fa-toggle-switch-off:not(.fa-toggle-switch)").trigger("click"),o.find(".panel tr:not([data-empty-row]):not(.hidden-skip)").addClass("hidden-forged"),o.find('.panel tbody tr:containsi("'+i+'")').removeClass("hidden-forged"),$.each($(r=" .hidden-dependent-skip"),function(e){$(this).hasClass("hidden-forged")?$(this).nextAll(".hidden-skip").addClass("hidden-forged"):$(this).nextAll(".hidden-skip").removeClass("hidden-forged")});var l=$(".__page .panel-filter:visible");$.each(l.find(".panel"),function(){var e=$(this).find("tr").first().find("td").length;rows=$(this).find("tbody").find("tr:not([data-empty-row])"),hidden_rows=$(this).find("tbody tr:not([data-empty-row]):hidden");var t=$(this).find("tbody tr[data-empty-row]");rows.length===hidden_rows.length?t.length?$(this).find("tbody").find("var[data-query-str]").text(i):$(this).find("tbody").append(''+theme_language("theme_xhred_filter_content_no_matches_query").replace("%str",""+i+"")+""):t.remove()})}else n.find(".fa-toggle-switch").trigger("click"),o.find(".panel tr").removeClass("hidden-forged"),o.find(".panel tr[data-empty-row]").remove(),!$.support.transition&&($.support.transition={end:"webkitTransitionEnd"});else{$("."+a).length?($(".nav-tabs li.active").data("filter-value",i),$(".active .dataTables_filter input").val(i).trigger("keyup")):$(".dataTables_filter input").val(i).trigger("keyup")}var s=".btn-filter-top-right span, .btn-accordion-filter span",d=".btn-filter-top-right i, .btn-accordion-filter i";$.trim($(this).val()).length>0?($(s).removeClass("text-lighter"),$(d).addClass("text-danger")):($(s).addClass("text-lighter"),$(d).removeClass("text-danger"))}),$(".btn-filter-top-right input, .btn-accordion-filter input").blur(function(e){$(this).parent("label").slideToggle(0)}),t.visibility("btn-filter-top-right","btn-accordion-filter","btn-toggle-accordions",a)},0)},visibility:function(e,t,a,n){var i=$("."+e+", ."+t+", ."+a);$("."+n).length&&($(".active .dataTables_filter").length||$(".active #conf-_-gr").length)||!$("."+n).length&&($(".dataTables_filter").length||$("#conf-_-gr").length)?i.show():i.hide()},clear:function(){var e=$(".btn-filter-top-right .dataTable-mirror, .btn-accordion-filter .dataTable-mirror"),t=$(".btn-filter-top-right input, .btn-accordion-filter input");e.val("").trigger("keyup"),t.is(":visible")&&t.trigger("blur"),$(".panel-filter").find("tr[data-empty-row]").remove(),!$.support.transition&&($.support.transition={end:"webkitTransitionEnd"})}}},module_config:function(e){var t=v___page_container.find(".table-title:visible").parents(".table:visible"),a=t.parent("div.table-responsive:visible"),n=t.find("tbody > tr > td > table:visible"),i=0,r=1;$.each(n.find("tr"),function(e,t){var a=$(this);a.find(".col_header").length?(i+=1,a.attr("tj",i+":0")):a.attr("tj",i+":1")}).promise().done(function(){var n=$('tr[tj$=":0"]').map(function(){return $.trim($(this).text())});0===n.length&&(n.push(theme_language("theme_xhred_config_configurable_options")),r=0);for(var i=[],o=1;o tr[tj="0:1"]')).map(function(){return this.outerHTML.replace(/\n/g,"")}).get().join("\n"),l+="",i[o-1]=l}var s="conf-_-gr";a.replaceWith(HTML.template.accordion(s,n,i,r?e:[2])),page.render.content.filter.init(1),$(".container-fluid > .panel > .panel-body").on("hide.bs.collapse show.bs.collapse","#conf-_-gr",function(){$(".module-help .close-popover-trigger").trigger("click")})})}}},pjax={clear:{modules:function(e){"csf"===v___module&&"function"==typeof __c_____undel&&__c_____undel(e.url),v___module===v___module_file_manager&&"function"==typeof __f_____undel&&(jsPanel.closeChildpanels("body"),__f_____undel()),"mysql"!==v___module&&"postgresql"!==v___module||"function"!=typeof __sql_____undel||__sql_____undel(),"syslog"===v___module&&"number"==typeof refreshTimer&&clearInterval(refreshTimer)}}},progress={progress:function(){return"object"==typeof NProgress&&settings_loader_top},start:function(){this.progress()&&NProgress.start()},end:function(){this.progress()&&NProgress.done()},configure:function(){this.progress()&&NProgress.configure({showSpinner:!1,trickleRate:.09,trickleSpeed:100})}},session={reauthenticate:function(){var e="session-reauthenticate";!$("."+e).length&&$.ajax({type:"GET",url:v___location_prefix+"/index.cgi",data:!1,dataType:"text",success:function(t){var a=Test.strContains(t,v___page_signin_form+" pam_");if(!Test.strContains(t,v___page_signin_banner)){var n=$(t).find('input[name="twofactor"]').length,i="aside, aside .navigation, .form-control.sidebar-search, .container-fluid, .right-side-tabs, .right-side-tabs-toggler",r="pointer-events-none bg-filter-grayscale-opacity50 disabled",o=$("body").find(".-shell-port-"),l='';$(i).addClass(r),$("body").append(HTML.template.reauthenticate(e)),navigation_render_end(),navigation_detect(),reset_switch_position(),despinnerfy_buttons(),theme_shell_unlock(),theme_shell_close(o),n||$("."+e).find("[data-container-twofactor]").remove(),$("."+e).find("form").on("submit",function(n){function o(t,a,n,o){if(a){var l="theme_xhred_session_failed"===theme_language(a,1)?theme_language("theme_xhred_session_failed_password"):a;l.endsWith(".")||(l+="."),l=l.replace(/\n/gm,""),p.text(l).addClass("text-danger").removeClass("loading-dots"),c.removeClass("disabled btn-transparent").addClass("btn-success");var s=$(o).find(".alert[data-twofactor]").length?$("."+e).find('input[name="twofactor"]'):$("."+e).find('input:not([name="user"]):not([name="twofactor"])');s.addClass("faa-horizontal animated"),s[0].focus(),setTimeout(function(){s.removeClass("faa-horizontal animated")},1e3)}else t&&!n&&(p.text(theme_language("theme_xhred_signing_success")).removeClass("text-danger").removeClass("loading-dots").addClass("text-success"),f.removeClass("fa-lock").addClass("fa-unlock fa-rotate-180 fa-flip-horizontal"),g.text(theme_language("theme_xhred_session_unlocked")),v___available_session=1,setTimeout(function(){v___available_session=1,$("."+e).remove(),$(i).removeClass(r)},1800))}n.preventDefault(),n.stopImmediatePropagation(),a&&$("."+e).find('form input[name="user"]').attr("name","answer").val(get_server_data("user"));var s=$(t).find("form").append(l).attr("action"),d=$("."+e).find("form").serialize(),c=$("."+e).find("[data-submit]"),f=$("."+e+"-header-icon i"),g=$("."+e+"-header-title h3"),p=$("."+e+"-header-title small");c.hasClass("disabled")||(p.text(theme_language("theme_xhred_signing_in")+"").removeClass("text-danger").addClass("loading-dots"),c.addClass("disabled btn-transparent").removeClass("btn-success"),$.ajax({type:"GET",url:s,data:d,dataType:"text",success:function(t){var n=$(t).find(".switch-toggle").text().length,i=$(t).find(".alert span").text(),r=i.length;if(a){var d=$(t).find("form").append(l),c=(d.find('input[name="answer"]').val($("."+e).find('input[type="password"]').val()),d.serialize());$.ajax({type:"GET",url:s,data:c,dataType:"text",success:function(e){n=$(e).find(".switch-toggle").text().length,i=$(e).find(".alert span").text(),r=i.length,o(n,i,r,e)}})}else o(n,i,r,t)}}))})}}})}},Test={true:function(e){return!/^(false|0)$/i.test(e)&&!!e},false:function(e){return/^(false|0)$/i.test(e)||!e},numeric:function(e){return Number(parseFloat(e))==e},string:function(e){return"string"==typeof e||e instanceof String?1:0},strContains:function(e,t){return"string"==typeof e&&!!~e.indexOf(t)},arrContains:function(e,t,a){return void 0===a&&(a=0),e=$.inArray(t,e),a?e:-1=n}},time={tictac:function(e){var t="convertible-timestamp-full",a=$("[data-"+t+"]");a.parent().contents().filter(function(){return 3===this.nodeType}).remove(),a.data(t,parseInt(a.data(t))+1),"undefined"!=typeof moment&&a.text(moment.unix(a.data(t)).format(settings_window_replaced_timestamp_format_full)),!e&&setInterval(this.tictac,1e3)}},theme={update:function(e){var t=$("body").add($(".__page")),a=$("aside").add($("#right-side-tabs")).add($(".__page")),n=1===e?"-release":"-beta";t.addClass("pointer-events-none"),set_onbeforeunload_status(1,0),a.addClass("bg-filter-blur-grayscale-opacity50"),theme_messenger(''+theme_language("theme_xhred_git_patch_initiated")+" "+theme_language("theme_xhred_global_please_wait")+'   ',1800,"info","themeUpgrade",0),$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-update=1&xhr-update-type="+n,data:!1,dataType:"json",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:e[0]&&e[0].success?(theme_messenger(''+e[0].success,4,"success","themeUpgrade"),slider_mark_group_notifications_read("authentic_remote_version"),set_server_tmp_var("goto",v___location_prefix+"/sysinfo.cgi"),setTimeout(function(){theme_reload()},2e3)):e[0]&&e[0].no_git?(theme_messenger(''+e[0].no_git,20,"warning","themeUpgrade"),a.removeClass("bg-filter-blur-grayscale-opacity50"),t.removeClass("pointer-events-none")):(theme_messenger(''+theme_language("theme_xhred_git_patch_update"),20,"error","themeUpgrade"),a.removeClass("bg-filter-blur-grayscale-opacity50"),t.removeClass("pointer-events-none"))},error:function(e){theme_messenger(''+theme_language("theme_xhred_git_patch_update"),20,"error","themeUpgrade"),a.removeClass("bg-filter-blur-grayscale-opacity50"),t.removeClass("pointer-events-none")},complete:function(e){set_onbeforeunload_status(0,0)}})}},quirks={active_element:function(){return document.activeElement&&$(document.activeElement).is("body")?v___page_activeElement:document.activeElement}};function addmodule(e,t){return adduser(e,t),!1}function addgroup(e,t){return adduser(e,t),!1}function adduser(e,t){return $v__mpp__g_olt=0,$('.mppopup input[data-role="tagsinput"]').tagsinput("add",e),setTimeout(function(){v__mpp__ml_t__e||($(".mppopup_filter_input").val(""),$(".mppopup_filter_input").focus().trigger("keyup")),v__mpp__ml_t__e=0},440),!1}function parentdir(e){fileclick(e,"1"),$v__mpp__g_gp=1}function fileclick(e,t){$v__mpp__g_ol=e,$v__mpp__g_olt=t}function select(e,t){return $data_mppopup_value.val(e),!1}function filter_match(e,t,i){t="",i=i||!1;var a=function(e){e=e||!1;var a=$(".mppopup table tbody tr");if(a.length>0)for(var n=0;n0)for(var s=0;s]*>/gi,""))&&(l=l.toLowerCase()).match(e.toLowerCase())&&(n[s].style.display="")}}}else a(!0)}function tab_action(e,t){document.forms[0]&&document.forms[0][e]&&(document.forms[0][e].value=t)}function hidden_opener(e,t){0===$("#"+e).parent(".opener_container").length&&$("#"+e).wrapAll('
'),$("#"+e).hasClass("opener_shown")?($("#"+e).parent(".opener_container").prev(".opener_extra_container.opener_extra_container_style").find(".opener_extra_container_a_style").removeClass("opener_container_opened").addClass("opener_container_closed"),$("#"+e).parent(".opener_container").prev("p").find(".opener_extra_container_a_style").removeClass("opener_container_opened").addClass("opener_container_closed"),$("#"+e).parent(".opener_container").parent("tr").prev("tr").find("td a:nth-child(1)").removeClass("opener_container_opened").addClass("opener_container_closed"),$("#"+e).parent(".opener_container").show().find("#"+e).slideUp($settings_animation_tabs_slide_time,function(){$("#"+e).removeClass("opener_shown").addClass("opener_hidden").parent('.opener_container:not(".opener_sub_container")').hide(),$("#"+e).parent(".opener_sub_container").removeClass("margined-top")})):($("#"+e).parent(".opener_container").prev(".opener_extra_container.opener_extra_container_style").find(".opener_extra_container_a_style").addClass("opener_container_opened").removeClass("opener_container_closed"),$("#"+e).parent(".opener_container").prev("p").find(".opener_extra_container_a_style").addClass("opener_container_opened").removeClass("opener_container_closed"),$("#"+e).parent(".opener_container").parent("tr").prev("tr").find("td a:nth-child(1)").addClass("opener_container_opened").removeClass("opener_container_closed"),$("#"+e).slideUp(0).removeClass("opener_hidden").addClass("opener_shown").parent(".opener_container").slideDown($settings_animation_tabs_slide_time).find(".opener_shown").slideDown($settings_animation_tabs_slide_time),$("#"+e).parent(".opener_sub_container").addClass("margined-top"))}function select_mode(e){var t=$("aside form").length;for(i=0;i"+t)})}function g__text_breaker(e,t){if(e.val()){var i=e.val().split(t),a="";$.each(i,function(e,i){i&&(a+=t+i+"\n")}),e.val(a)}}function extract_content(e,t,i,a){if(!e)return 0;var n=a?0:t.length,s=a?i.length:0,_=e.indexOf(t),r=e.indexOf(i,_),o=-1===r?e.length:r;return e.slice(_+n,o+s)}function get_form_data(e){return(e.attr("enctype")&&e.attr("enctype").indexOf("form-data")>-1?0:1)?e.serialize():new FormData(e[0])}function page_extended(){return"settings-upload.cgi"===v___location_file||"settings-upload_save.cgi"===v___location_file||"settings-editor_read.cgi"===v___location_file||"settings-editor_write.cgi"===v___location_file||"settings-favorites_save.cgi"===v___location_file?1:0}function get_bundle_csf(){var e=$("head"),t=v___server_extensions_path+"/csf/csf."+v___source_type+".css?"+v___theme_version_plain,i=v___server_extensions_path+"/csf/csf."+v___source_type+".js?"+v___theme_version_plain;Test.arrContains(o___gotten_scripts,i)||(e.append(''),$.getScript(""+i,function(e,t,a){o___gotten_scripts.push(i)}))}function get_bundle_file_manager(e){$("head");var t=v___server_extensions_path+"/file-manager/file-manager."+v___source_type+".js?"+v___theme_version_plain;Test.arrContains(o___gotten_scripts,t)||$.getScript(""+t,function(i,a,n){o___gotten_scripts.push(t),e&&___f__tw()})}function get_bundle_sql(){$("head");var e=v___server_extensions_path+"/sql."+v___source_type+".js?"+v___theme_version_plain;Test.arrContains(o___gotten_scripts,e)||$.getScript(""+e,function(t,i,a){o___gotten_scripts.push(e)})}function theme_open_new_tab(e){var e=Test.strContains(e,v___location_origin)?e:v___location_origin+(e.startsWith("/")?e:"/"+e);$("body").append(''),$("#theme_open_new_tab").simulateUserClick().remove()}function theme_to_new_tab(){$.each($('a[href*="virtualmin-awstats/view.cgi?config="], .virtualmin-awstats a[href*="view.cgi?config="], a.ui_link_replaced[href*="search.cgi/webminlog"] '),function(){$(this).addClass("--to-new-tab")})}function theme_reload(){window.location.href=location.origin+v___location_prefix}function theme_update_notice(e){0===$("#update_notice").length&&$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-get_update_notice=1",success:function(t){if(Test.strContains(t,v___page_signin_form))v___available_session=0;else{$("body").prepend(t);var i=$("#update_notice");e&&i.addClass("r"),i.modal("show")}},error:function(e){}})}function theme_title_generate(){if(v___available_navigation){var e=$("#headln2c span[data-main_title]").text()||$('.panel-heading font[size="+2"]').text();if($('li.sub_active a[href*="'+v___module_file_manager+'"]').length){var t=v___module_file_manager;$('body[class*="'+t+'"] .active form input#path').val()?document.title=Convert.uriDecodeComponent($('body[class*="'+t+'"] .active form input#path').val())+" - "+$("li.sub_active a").text()+" — "+v___title_initial:document.title=$("li.sub_active a").text()+" — "+v___title_initial}else($t_uri_virtualmin||$t_uri_cloudmin)&&$("aside select option:checked").text()&&$("aside select option:checked").text().length?e&&e.length?$("#webmin_search_form").parent("li").prevAll().has(".sub_active, .current-large").length?document.title=$("aside select option:checked").text()+" - "+e+" — "+v___title_initial:document.title=e+" — "+v___title_initial:document.title=get_navigation_module_name()+" — "+v___title_initial:$t_uri_webmail?e&&e.length?document.title=e+" - Mail — "+v___title_initial:document.title=get_navigation_module_name()+" — "+v___title_initial:e&&e.length?document.title=e+" — "+v___title_initial:document.title=v___title_initial;var i=$(".right-side-tabs .list-group-item:not(.no-notifications, .opacity-0_3)").length;settings_side_slider_enabled&&settings_side_slider_notifications_enabled?titlenotifier.set(i):titlenotifier.set(0)}}function navigation_clear(){var e=".navigation";$(e+" li.has-sub").removeClass("sub_active"),$(e+" > li:not('.has-sub')").removeClass("sub_active").find("span.current-large").remove(),$(e+" > li > ul.sub > li").removeClass("sub_active").find("span.current").remove(),$(e+" > li.has-sub").removeClass("active"),$(e+" > li > ul.sub").hide(),$(e+" > li > a > i.fa.fa-folder-open-o").removeClass("fa-folder-open-o")}function navigation_detect(e,t){if(Test.arrContains(["webmin_search.cgi"],v___location_file))navigation_clear();else{if(void 0===t){if(v___blocked_navigation)return;var i=1,a=$('.navigation a[href*="'+v___location_path+'"]:not([data-parent-hidden]):first');$('.navigation a[href^="'+v___location_resource+'"]:not([data-parent-hidden]):first').length?(e=v___location_resource,i=0):Test.strContains(v___location_file,"cgi")&&a.length&&(e=a.attr("href"),i=0);var e=e?e.replace("/edit_users.cgi","/list_users.cgi").replace("/edit_user.cgi","/list_users.cgi").replace("/edit_alias.cgi","/list_aliases.cgi").replace("/edit_database.cgi","/list_databases.cgi").replace("/save_database.cgi","/list_databases.cgi").replace("/edit_script.cgi","/list_scripts.cgi").replace("/script_form.cgi","/list_scripts.cgi"):e;i&&"config.cgi"===v___location_file&&(e=$t_uri_virtualmin?v___location_prefix+"/config.cgi?virtual-server":$t_uri_cloudmin?v___location_prefix+"/config.cgi?server-manager":v___location_prefix+"/"+v___location_query+"/");var n=$t_uri_webmin||$t_uri_usermin;if(!e&&n)if(Test.strContains(v___location_file,".cgi")&&!Test.strContains(v___location_file,"sysinfo.cgi"))e=v___location_path.replace(v___location_file,""),page_extended()&&(e=v___location_prefix+"/webmin/");else if(!e){var s=new RegExp("^"+v___location_prefix,"i");e=get_server_data("data-uri").replace(s,"").split("/").filter(function(e){return 0!==e.length})[0],e=v___location_prefix+"/"+e}targeted_menu_link=$('.navigation a[href^="'+e+'"]:not([data-parent-hidden]):first'),targeted_menu_link.length&&navigation_clear()}else targeted_menu_link=$('.navigation a[href^="'+e+'"]:not([data-parent-hidden]):first'),targeted_menu_link.length&&navigation_clear();targeted_menu_link.parent("li:not(.menu-exclude):not(.user-link)").addClass("sub_active").append('').parent("ul.sub").show().parent("li:not(.menu-exclude):not(.user-link)").prev("li").addClass("active")}}function navigation_render_start(){$(".mCSB_container, .mCSB_dragger").css("top","0"),!$("#_menu_loader").length&&$("body ul.navigation").before(''),setTimeout(function(){$("#loader-close-sm").removeClass("hidden"),$("#loader-close-sm i").trigger("click")},4200),$("body aside .mCSB_scrollTools, body ul.navigation, body ul.user-links").css("visibility","hidden"),$("aside ul.user-html").addClass("invisible")}function navigation_render_end(){$("aside ul.user-html").removeClass("invisible"),$("body aside .mCSB_scrollTools, body ul.navigation, body ul.user-links").css("visibility","visible"),$("#_menu_loader").remove(),navigation_init_select(),navigation_select_label(),theme_to_new_tab()}function navigation_display(){"none"==$("aside").css("transform")&&($("aside").transition({x:settings_leftmenu_width},2.5*$settings_animation_left_slide_time,function(){$(".__logo")&&"none"==$(".__logo").css("transform")&&!$(".mobile-menu-toggler:visible").length&&$(".__logo").transition({y:"-140px"},1.5*$settings_animation_left_slide_time)}),setTimeout(function(){$(".switch-toggle").css("display","table")},1))}function navigation_hide(){var e="mobile-menu-toggler";"function"==typeof jQuery().transition&&$("."+e+":visible").length&&$("."+e).attr("style")&&-1==$("."+e).attr("style").indexOf("ease")&&($(".__logo")&&$(".__logo").transition({y:0},1.5*$settings_animation_left_slide_time),$("aside, ."+e).transition({x:0},$settings_animation_left_slide_time,function(){$("."+e).removeClass("selected").find("button").removeClass("btn-primary").addClass("btn-primary"),$(".switch-toggle").css("display","none"),$("aside").addClass("hidden-xs")}))}function navigation_init_select(){$(".form-control.sidebar-search").is(":focus")||$.each($("aside select > option"),function(){var e=$(this).text().match(/^\s{0,4}/)[0].length,t=$(this).text();settings_leftmenu_vm_cm_dropdown_icons&&(4===e&&-1===t.indexOf("↱")?$(this).html("    â†± "+t.replace(/\s/g,"")):2===e&&-1===t.indexOf("↴")&&$(this).html("  â†´ "+t.replace(/\s/g,"")))}).promise().done(function(){var e=$("aside select");e.removeAttr("id"),e.length&&(e.removeAttr("onchange disabled"),!!e.data("select2")&&e.select2("destroy"),e.unbind("select2:select"),e.select2({minimumResultsForSearch:$.browser.mobile?-1:5}),setTimeout(function(){var t=e.data("select2");t&&(t.open(),t.close())},1),e.on("select2:select",function(e){"dom"===e.currentTarget.name?(get_navigation_menu_virtualmin(e.currentTarget.value),get_default_virtualmin_content(e.currentTarget.value)):"sid"===e.currentTarget.name&&(get_navigation_menu_cloudmin(e.currentTarget.value),get_default_cloudmin_content(e.currentTarget.value))}),e.on("select2:open",function(e){$.each($("select > option"),function(){if($(this).attr("style")&&$(this).attr("style").indexOf("italic")>-1){var e=$(this);setTimeout(function(){$("body").find('li[id$="'+e.attr("value")+'"]').attr("style","color: #"+(v___theme_night_mode_enabled?"9a5150":"e97471")+" !important;")},1)}})}),1===$("aside select option").length&&($(".select2 span").css("cursor","default"),$(".select2 .select2-selection__arrow").remove(),e.on("select2:open",function(){$(".select2-container .select2-dropdown").css("opacity","0")})),$.each($("aside select > option"),function(){$(this).attr("style")&&$(this).attr("style").indexOf("italic")>-1&&$(".select2-selection > .select2-selection__rendered").text().trim()==$(this).text().trim()&&$(".select2-selection > .select2-selection__rendered").attr("style","color: #"+(v___theme_night_mode_enabled?"9a5150":"e97471")+" !important;")}))})}function navigation_trigger(e,t){return e&&(e=e.replace(/([?&])(_pjax|_)=[^&]*/g,"")),1===t&&(e=e.replace("?"+$__theme_navigation,"").replace("&"+$__theme_navigation,"")),2===t&&(Test.strContains(e,$__theme_navigation)||(e=Test.strContains(e,"?")?e+"&"+$__theme_navigation:e+"?"+$__theme_navigation)),e}function navigation_init_autocomplete(e,t){if("c"!=e||($(".autocomplete-suggestions").remove(),$(".form-control.sidebar-search").removeAttr("disabled"),$(".form-control.sidebar-search").autocomplete("dispose"),$(".form-control.sidebar-search").val(""),!t)){var i={};$.each($('li:not(.menu-exclude):not(.user-link) > ul[id^="global_"].sub > li:not(.menu-exclude):not(.user-link) > a'),function(e,t){i[("/"==$(this).attr("href").substring(0,1)?"":"/")+$(this).attr("href")]=$.trim($(this).text())}),$('li > a[target="page"][data-href="/virtual-server/index.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/sysinfo.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/virtual-server/pro/history.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/mailbox/list_folders.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/mailbox/list_ifolders.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/mailbox/list_addresses.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/filter/edit_forward.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/filter/edit_auto.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/filter/edit_auto.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/filter/"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/mailbox/edit_sig.cgi"]').each(function(e,t){i[$(this).attr("data-href")]=$.trim($(this).text())});var a=$.map(i,function(e,t){if("undefined"!=t)return{value:e,url:t,data:{category:get_navigation_module_name()}}}),n={};v___location_path!=v___location_prefix+"/custom/"&&v___location_path!=v___location_prefix+"/custom/index.cgi"&&v___location_path!=v___location_prefix+"/backup-config/"&&v___location_path!=v___location_prefix+"/backup-config/index.cgi"&&v___location_path!=v___location_prefix+"/usermin/"&&v___location_path!=v___location_prefix+"/usermin/index.cgi"&&v___location_path!=v___location_prefix+"/webmin/"&&v___location_path!=v___location_prefix+"/webmin/index.cgi"&&v___location_path!=v___location_prefix+"/acl/"&&v___location_path!=v___location_prefix+"/acl/index.cgi"&&v___location_path!=v___location_prefix+"/init/"&&v___location_path!=v___location_prefix+"/init/index.cgi"&&v___location_path!=v___location_prefix+"/mount/"&&v___location_path!=v___location_prefix+"/mount/index.cgi"&&v___location_path!=v___location_prefix+"/quota/"&&v___location_path!=v___location_prefix+"/quota/index.cgi"&&v___location_path!=v___location_prefix+"/fsdump/"&&v___location_path!=v___location_prefix+"/fsdump/index.cgi"&&v___location_path!=v___location_prefix+"/inittab/"&&v___location_path!=v___location_prefix+"/inittab/index.cgi"&&v___location_path!=v___location_prefix+"/logrotate/"&&v___location_path!=v___location_prefix+"/logrotate/index.cgi"&&v___location_path!=v___location_prefix+"/mailcap/"&&v___location_path!=v___location_prefix+"/mailcap/index.cgi"&&v___location_path!=v___location_prefix+"/pam/"&&v___location_path!=v___location_prefix+"/pam/index.cgi"&&v___location_path!=v___location_prefix+"/proc/"&&v___location_path!=v___location_prefix+"/proc/index_tree.cgi"&&v___location_path!=v___location_prefix+"/proc/index_user.cgi"&&v___location_path!=v___location_prefix+"/proc/index_size.cgi"&&v___location_path!=v___location_prefix+"/proc/index_cpu.cgi"&&v___location_path!=v___location_prefix+"/proc/index_tree.cgi"&&v___location_path!=v___location_prefix+"/proc/index_search.cgi"&&v___location_path!=v___location_prefix+"/cron/"&&v___location_path!=v___location_prefix+"/cron/index.cgi"&&v___location_path!=v___location_prefix+"/syslog/"&&v___location_path!=v___location_prefix+"/syslog/index.cgi"&&v___location_path!=v___location_prefix+"/useradmin/"&&v___location_path!=v___location_prefix+"/useradmin/index.cgi"&&v___location_path!=v___location_prefix+"/apache/"&&v___location_path!=v___location_prefix+"/apache/index.cgi"&&v___location_path!=v___location_prefix+"/bind8/"&&v___location_path!=v___location_prefix+"/bind8/index.cgi"&&v___location_path!=v___location_prefix+"/dhcpd/"&&v___location_path!=v___location_prefix+"/dhcpd/index.cgi"&&v___location_path!=v___location_prefix+"/dovecot/"&&v___location_path!=v___location_prefix+"/dovecot/index.cgi"&&v___location_path!=v___location_prefix+"/ldap-server/"&&v___location_path!=v___location_prefix+"/ldap-server/index.cgi"&&v___location_path!=v___location_prefix+"/virtualmin-nginx/"&&v___location_path!=v___location_prefix+"/virtualmin-nginx/index.cgi"&&v___location_path!=v___location_prefix+"/fetchmail/"&&v___location_path!=v___location_prefix+"/fetchmail/index.cgi"&&v___location_path!=v___location_prefix+"/mysql/"&&v___location_path!=v___location_prefix+"/mysql/index.cgi"&&v___location_path!=v___location_prefix+"/mysql/edit_dbase.cgi"&&v___location_path!=v___location_prefix+"/postgresql/"&&v___location_path!=v___location_prefix+"/postgresql/index.cgi"&&v___location_path!=v___location_prefix+"/postgresql/edit_dbase.cgi"&&v___location_path!=v___location_prefix+"/postfix/"&&v___location_path!=v___location_prefix+"/postfix/index.cgi"&&v___location_path!=v___location_prefix+"/procmail/"&&v___location_path!=v___location_prefix+"/procmail/index.cgi"&&v___location_path!=v___location_prefix+"/proftpd/"&&v___location_path!=v___location_prefix+"/proftpd/index.cgi"&&v___location_path!=v___location_prefix+"/mailboxes/"&&v___location_path!=v___location_prefix+"/mailboxes/index.cgi"&&v___location_path!=v___location_prefix+"/mailboxes/list_mail.cgi"&&v___location_path!=v___location_prefix+"/mailbox/"&&v___location_path!=v___location_prefix+"/mailbox/index.cgi"&&v___location_path!=v___location_prefix+"/samba/"&&v___location_path!=v___location_prefix+"/samba/index.cgi"&&v___location_path!=v___location_prefix+"/spam/"&&v___location_path!=v___location_prefix+"/spam/index.cgi"&&v___location_path!=v___location_prefix+"/squid/"&&v___location_path!=v___location_prefix+"/squid/index.cgi"&&v___location_path!=v___location_prefix+"/sshd/"&&v___location_path!=v___location_prefix+"/sshd/index.cgi"&&v___location_path!=v___location_prefix+"/webalizer/"&&v___location_path!=v___location_prefix+"/webalizer/index.cgi"&&v___location_path!=v___location_prefix+"/cpan/"&&v___location_path!=v___location_prefix+"/cpan/index.cgi"&&v___location_path!=v___location_prefix+"/htaccess-htpasswd/"&&v___location_path!=v___location_prefix+"/htaccess-htpasswd/index.cgi"&&v___location_path!=v___location_prefix+"/status/"&&v___location_path!=v___location_prefix+"/status/index.cgi"&&v___location_path!=v___location_prefix+"/net/"&&v___location_path!=v___location_prefix+"/net/index.cgi"&&v___location_path!=v___location_prefix+"/tcpwrappers/"&&v___location_path!=v___location_prefix+"/tcpwrappers/index.cgi"&&v___location_path!=v___location_prefix+"/fdisk/"&&v___location_path!=v___location_prefix+"/fdisk/index.cgi"&&v___location_path!=v___location_prefix+"/fail2ban/"&&v___location_path!=v___location_prefix+"/fail2ban/index.cgi"&&v___location_path!=v___location_prefix+"/nis/"&&v___location_path!=v___location_prefix+"/nis/index.cgi"&&v___location_path!=v___location_prefix+"/passwd/"&&v___location_path!=v___location_prefix+"/passwd/index.cgi"||$($(".container-fluid .panel-body a[href]:not([href*='javascript'],[href*='list_users.cgi?dom'],[href*='edit_hdparm.cgi?disk'],[href*='blink.cgi?disk'],[href*='smart-status/index.cgi?drive'],[href*='help.cgi'],[href*='edit_user.cgi?new='],[href*='edit_user.cgi?idx='],[href*='edit_recipe.cgi'],[href*='up.cgi'],[href*='down.cgi'],[href*='virt_index.cgi'],[href*='save_log.cgi'],[href*='backup.cgi'],[href*='activate.cgi'],[href*='#'])")).each(function(e,t){v___location_path==v___location_prefix+"/syslog/"||v___location_path==v___location_prefix+"/syslog/index.cgi"?n["/"+v___location_path_lead_unslashed+$(this).parent("td").next("td.td_tag").next("td.td_tag").next("td.td_tag").find("a").attr("href")]=$.trim($(this).text()):(v___location_path==v___location_prefix+"/backup-config/"||v___location_path==v___location_prefix+"/backup-config/index.cgi"?$description=$.trim($(this).parent("td").next("td.td_tag").next("td.td_tag").text()):v___location_path==v___location_prefix+"/mount/"||v___location_path==v___location_prefix+"/mount/index.cgi"||v___location_path==v___location_prefix+"/quota/"||v___location_path==v___location_prefix+"/quota/index.cgi"?$description=$.trim($(this).parent("td").next("td.td_tag").next("td.td_tag").text()):v___location_path==v___location_prefix+"/fsdump/"||v___location_path==v___location_prefix+"/fsdump/index.cgi"?$description=$.trim($(this).parents("td").next("td").next("td").next("td").find("label").find("tt").find("tt").text()):v___location_path==v___location_prefix+"/proc/"||v___location_path==v___location_prefix+"/proc/index_tree.cgi"||v___location_path==v___location_prefix+"/proc/index_user.cgi"||v___location_path==v___location_prefix+"/proc/index_size.cgi"||v___location_path==v___location_prefix+"/proc/index_cpu.cgi"||v___location_path==v___location_prefix+"/proc/index_tree.cgi"||v___location_path==v___location_prefix+"/proc/index_search.cgi"?v___location_path==v___location_prefix+"/proc/index_size.cgi"||v___location_path==v___location_prefix+"/proc/index_cpu.cgi"?$description=$.trim($(this).parent("td").next("td.td_tag").text())+" — "+$.trim($(this).parent("td").next("td.td_tag").next("td.td_tag").text())+" - "+$.trim($(this).parents("td").next("td").next("td").next("td").text()):v___location_path==v___location_prefix+"/proc/index_search.cgi"?$description=$.trim($(this).parent("td").next("td.td_tag").text())+" — "+$.trim($(this).parent("td").next("td.td_tag").next("td.td_tag").text())+" - "+$.trim($(this).parents("td").next("td").next("td").next("td").next("td").text()):$description=$.trim($(this).parent("td").next("td.td_tag").text())+" — "+$.trim($(this).parents("td").next("td").next("td").next("td").text()):v___location_path==v___location_prefix+"/useradmin/"||v___location_path==v___location_prefix+"/useradmin/index.cgi"?$description=$.trim($(this).parents("td").next("td").find("label").text())+" — "+$(this).text()+":"+$.trim($(this).parents("td").next("td").next("td").find("label").text())+" - "+$.trim($(this).parents("td").next("td").next("td").next("td").next("td").find("label").text())+", "+$.trim($(this).parents("td").next("td").next("td").next("td").next("td").next("td").find("label").text()):v___location_path==v___location_prefix+"/mailboxes/list_mail.cgi"||v___location_path==v___location_prefix+"/mailbox/"||v___location_path==v___location_prefix+"/mailbox/index.cgi"?$description=$.trim($(this).parents("td").next("td").next("td").next("td").find("label").text())+" — "+$.trim($(this).parents("td").next("td").find("label").text())+" ["+$.trim($(this).parents("td").next("td").next("td").find("label").text())+"]":v___location_path==v___location_prefix+"/cpan/"||v___location_path==v___location_prefix+"/cpan/index.cgi"?$description=$.trim($(this).parents("td").next("td").next("td").find("label").text()):v___location_path==v___location_prefix+"/fdisk/"||v___location_path==v___location_prefix+"/fdisk/index.cgi"?$description=$.trim($(this).parent("td").next("td.td_tag").text())+" - "+$.trim($(this).parent("td").next("td.td_tag").next("td.td_tag").text()):$description=$.trim($(this).parent("td").next("td.td_tag").text()),$description?$_description=!0:$_description=!1,n[("/"==$(this).attr("href").substring(0,1)?"":"/")+v___location_directory_unslashed_trail_slashed+$(this).attr("href")]=$.trim($(this).text())+($_description?" (":"")+$description+($_description?")":""))});var s=$.map(n,function(e,t){if("undefined"!=t)return{value:e,url:t,data:{category:get_module_title()}}}),_={};$.each($('li:not(.menu-exclude):not(.user-link) > ul.sub:not([id^="global_"]) > li:not(.menu-exclude):not(.user-link) > a'),function(e,t){_[("/"==$(this).attr("href").substring(0,1)?"":"/")+$(this).attr("href")]=$.trim($(this).text())}),$('li:not(.menu-exclude):not(.user-link) > a[target="page"]:not([data-href="/acl/edit_user.cgi"],[data-href="/virtual-server/index.cgi"],[data-href="/sysinfo.cgi"],[data-href="/virtual-server/pro/history.cgi"], [data-href="/mailbox/list_folders.cgi"], [data-href="/mailbox/list_ifolders.cgi"], [data-href="/mailbox/list_addresses.cgi"], [data-href="/filter/edit_forward.cgi"], [data-href="/filter/edit_auto.cgi"], [data-href="/filter/edit_auto.cgi"], [data-href="/filter/"], [data-href="/mailbox/edit_sig.cgi"])').each(function(e,t){$t_uri_usermin||navigation_dashboard_switch_available()||(_[$(this).attr("data-href")]=$.trim($(this).text()))});var r=$.map(_,function(e,t){if("undefined"!=t&&!Test.strContains(t,"/shell")&&!Test.strContains(t,"shell=1"))return{value:e,url:t,data:{category:$("aside .select2-selection__rendered").text()?''+$("aside .select2-selection__rendered").clone().children().remove().end().text()+"":get_navigation_module_name()}}}),o={};$("aside select option").each(function(){o[$(this).val()+":::"+$(this).parent("select").attr("name")]=$.trim($(this).text())});var l=$.map(o,function(e,t){if("undefined"!=t)return{value:e,url:t,data:{category:$("aside select").data("autocomplete-title")}}}).concat(s).concat(r).concat(a);$(".form-control.sidebar-search").on("keydown",function(e){34!=e.keyCode&&33!=e.keyCode&&20!=e.keyCode&&17!=e.keyCode&&16!=e.keyCode&&9!=e.keyCode||(e.preventDefault(),e.stopPropagation())}),$(".form-control.sidebar-search").autocomplete({lookup:l,onSelect:function(e){if(!0===navigation_dashboard_switch_available()&&$t_uri_dashboard&&2!=get_access_level()&&4!=get_access_level()&&set_switch_position("webmin"),$(this).val("").blur(),navigation_hide(),"/"==e.url.substring(0,1)){var t=$("body").find('a[href="'+e.url+'"]').attr("target");if(t&&"_parent"==t);else{var i=e.url.indexOf(v___location_prefix)>-1?e.url:v___location_prefix+e.url;get_onbeforeunload_status()?(event.preventDefault(),get_onbeforeunload_message([],{href:i})):get_pjax_content(i,["reference"])}}else e.url&&e.url.indexOf(":::")>-1&&(navigation_render_start(),$("select").val(e.url.split(":::")[0]).trigger("change").trigger("select2:select"))},groupBy:"category"})}}function navigation_update(e){if(!get_onbeforeunload_status()){var e=void 0===e||-1==e||""==e?$("aside select").val():e,t=$t_uri_virtualmin?"virtualmin":$t_uri_cloudmin?"cloudmin":$t_uri_usermin?"usermin":$t_uri_webmin?"webmin":"mail";"webmin"==t?(set_switch_position("webmin"),get_navigation_menu_webmin("webmin")):"virtualmin"==t?(set_switch_position("virtualmin"),get_navigation_menu_virtualmin(e)):"cloudmin"==t?(set_switch_position("cloudmin"),get_navigation_menu_cloudmin(e)):"usermin"==t?(set_switch_position("usermin"),get_navigation_menu_webmin("usermin")):"mail"==t&&(set_switch_position("webmail"),get_navigation_menu_webmin("webmail"))}}function navigation_select_label(){if($t_uri_cloudmin&&$("aside").find("li.menu-container.menu-status.hidden").find("font").length>0){var e=$("aside").find("li.menu-container.menu-status.hidden").find("font"),t=e.text(),i=e.attr("color");i=i&&(i.indexOf("00ff00")||i.indexOf("008800")||i.indexOf("00aa00"))?"success":i&&(i.indexOf("ff6600")||i.indexOf("ff00ff")||i.indexOf("ff22ff")||i.indexOf("ff44ff"))?"warning":i&&(i.indexOf("ff0000")||i.indexOf("ff1100")||i.indexOf("aa0000")||i.indexOf("ff2200")||i.indexOf("ff4400"))?"danger":"info","Virtualmin"==t&&(t="VM"),setTimeout(function(){var e=$("aside .select2-selection__rendered");if(!e.find(".menu-status-label").length){e.append(''+t+"");var a=$("aside .select2-selection__rendered .menu-status-label");a.animate({opacity:1},500),a.on("mouseover",function(){$(this).removeClass("bg-light-grey")}).on("mouseout",function(){$(this).addClass("bg-light-grey")}),e.on("mouseover",function(){$(this).find(".menu-status-label").removeClass("bg-light-grey")}).on("mouseout",function(){$(this).find(".menu-status-label").addClass("bg-light-grey")})}},300)}}function navigation_form_control(e){var t=$("aside select");e?$.each($("aside").find("forms"),function(){$(this).replaceTagName("form")}).promise().done(function(){navigation_init_select()}):(!!t.data("select2")&&t.select2("destroy"),$.each($("aside").find("form"),function(){$(this).replaceTagName("forms")}))}function navigation_filter_reset(){var e="-webkit-filter: grayscale(0) sepia(0) saturate(1) hue-rotate(0deg) invert(0) brightness(1) contrast(1); filter: grayscale(0) sepia(0) saturate(1) hue-rotate(0deg) invert(0) brightness(1) contrast(1);";$(".visible-xs.mobile-menu-toggler").attr("style","position: fixed;"+e),$("aside, .visible-xs.mobile-menu-toggler").attr("style","z-index: 10; overflow: visible; transform: translate("+settings_leftmenu_width+"px, 0px);"+e),$('input[name="settings_grayscale_level_navigation"], input[name="settings_sepia_level_navigation"], input[name="settings_hue_level_navigation"], input[name="settings_invert_level_navigation"]').val(0),$('input[name="settings_saturate_level_navigation"], input[name="settings_brightness_level_navigation"], input[name="settings_contrast_level_navigation"]').val(1),$('input[name="settings_grayscale_level_navigation"], input[name="settings_sepia_level_navigation"], input[name="settings_saturate_level_navigation"], input[name="settings_hue_level_navigation"], input[name="settings_invert_level_navigation"], input[name="settings_brightness_level_navigation"], input[name="settings_contrast_level_navigation"]').each(function(){$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val())})}function get_pjax_push(e){return!0}function get_pjax_type(e){new String;if(e&&e.href&&e.href.match(/([^\/]*)\/*$/)[1],Test.string(e)){var t=e.replace(v___location_origin,""),i=t.replace("/"+v___module+"/",""),a=$('form[action="'+t+'"]:visible'),n=(a=a.length?a:$('form[action="'+i+'"]:visible')).attr("method");if("multipart/form-data"===a.attr("enctype"))return"post";if(n)return n;if(!n){var n=(n=$('form[action="'+t+'"]').attr("method"))||$('form[action="'+URI(t).filename()+'"]').attr("method"),s=$('form[action="'+t+'"]').attr("enctype");return n||s?"multipart/form-data"===s?"post":n:"get"}}else if("object"==typeof e&&$(e).is("form")){var _=e.attr("method");return _||"get"}return e&&Test.strContains(e,".cgi?")&&!Test.strContains(e,"config.cgi?")?"GET":"POST"}function get_pjax_content(e,t){if(!get_onbeforeunload_status()){var t="object"==typeof t?t:function(){},i=!!$.isArray(t)&&$("",{href:e})[0];$.pjax({url:e,timeout:0,push:get_pjax_push(),type:get_pjax_type(i||e),container:"[data-dcontainer]",fragment:"[data-dcontainer]",callback:t})}}function get_pjax_event_end(e,t){if(v___available_session&&null!=t&&void 0!==t.responseText){var i=t.responseText.replace(/)<[^<]*)*<\/body>/gim,"").replace(/)<[^<]*)*<\/head>/gim,"").replace("","").replace("",""),a=$(i).filter("#xhtml0");$(a[0].attributes).each(function(){"id"!==this.nodeName&&(this.nodeName,v___available_navigation&&"data-redirect"===this.nodeName&&this.nodeValue&&this.nodeValue!="/?"+$__theme_navigation&&history.replaceState({},null,navigation_trigger(this.nodeValue,2)),get_server_data(this.nodeName,this.nodeValue))}).promise().done(function(){if(get_pjax_event_end_funcs(1),$.each($(".container-fluid img"),function(){var e=$(this),t=e.attr("src");t&&!t.startsWith("/")&&e.attr("src",v___location_directory_trail_slashed+t)}),unbuffered_header_post(t),e){var i=$(e.relatedTarget),a=i.attr("href"),n=i.parent().is("[data-linked], .favorites-dcontainer, .menu-exclude.ui-sortable-handle");(n&&(Test.strContains(a,"mysql")||Test.strContains(a,"postgresql"))||Test.strContains(v___module,"mysql")||Test.strContains(v___module,"postgresql"))&&f__ex__mysql_runner(),(n&&Test.strContains(a,"csf")||Test.strContains(v___module,"csf"))&&csf_init()}1===v___theme_updated&&(v___theme_updated=0,theme_update_notice(1))})}}function get_pjax_event_end_funcs(e){if(page_init(),v___module===v___module_file_manager&&"config.cgi"!==v___location_file&&page.handle.content.preloader(),e||setTimeout(function(){get_server_data("data-title-initial",$("#headln2c span[data-main_title]").text()),get_server_data("data-script-name",v___location_path),get_server_data("data-uri",v___location_resource);var e=new RegExp("^"+v___location_prefix,"i");v___module=get_server_data("data-uri").replace(e,"").split("/").filter(function(e){return 0!==e.length})[0],get_server_data("data-module",v___module),page_render(1)},40),Test.strContains(v___location_directory,v___module_file_manager)&&setTimeout(function(){"function"==typeof ___f__tw?___f__tw():get_bundle_file_manager(1)},40),Core.curModule("csf")||get_server_data("post",0,1),e&&page_render(0),$(".tooltip").tooltip("hide"),$(".popover").popover("hide"),theme_title_generate(),navigation_detect(),e&&$(".__page").scrollTop(0),setTimeout(function(){var e=v___page_container.find("form:visible:first").find('input:visible:not([readonly]):not([disabled]):not([type="radio"]):not([type="checkbox"]):not([type="submit"]), textarea:visible:not([readonly]):not([disabled])');e.length&&!e.parents(".ui_buttons_table").length&&"config.cgi"!==v___location_file&&"uconfig.cgi"!==v___location_file&&"settings-user.cgi"!==v___location_file&&e[0].focus()},200),v___available_navigation){var t=navigation_trigger(v___location.href,1).replace(v___location_origin+v___location_prefix,"");""==t||"/"==t||"/index.cgi"==t||unbuffered_header_processor_allow(v___location.href)||"csf"===v___module||"config.cgi"===v___location_file||(set_server_tmp_var_timeout=setTimeout(function(){set_server_tmp_var("goto",navigation_trigger(v___location.href,1))},400))}}function get_pjax_action_submit(e,t){if(!get_onbeforeunload_status())if(e&&!v___theme_force_buffered&&e.target&&e.target.action&&unbuffered_header_processor_allow(e.target.action))unbuffered_header_processor(e,1);else{v___theme_force_buffered=0;var i=quirks.active_element(),a=$(i).attr("name"),n=$.trim(i.value)?$.trim(i.value):$.trim(i.innerText),s=i.value,_=i.type,r=i.nodeName.toLowerCase(),o=$(e.target).find('[name="'+a+'"]'),l=o.attr("type");("input"!==r||o.val()==s&&"submit"!==l)&&("button"!==r||$.trim(o.text())==n&&"submit"!==l)||"button"!==l&&"submit"!==l&&"submit"!==_||$("").attr({type:"hidden",name:a,value:n||s}).appendTo($(e.target)),$.pjax.submit(e,"[data-dcontainer]",{timeout:0,push:get_pjax_push(),type:get_pjax_type(e.target.action),fragment:"[data-dcontainer]"})}}function get_pjax_action_click(e,t){if(void 0!=$(t).attr("href"))return $(e.target).is(".gl-icon-select")?(e.preventDefault(),void $(t).trigger("contextmenu")):t&&t.href&&unbuffered_header_processor_allow(t.href)?(e.preventDefault(),void unbuffered_header_processor(t.href,0)):void $.pjax.click(e,{timeout:0,push:get_pjax_push(),type:get_pjax_type(t),container:"[data-dcontainer]",fragment:"[data-dcontainer]"})}function get_onbeforeunload_message(e,t){bootbox.dialog({message:""+theme_language("theme_xhred_global_unbeforeunload_message"),title:'   '+theme_language("theme_xhred_global_unbeforeunload_title")+"",buttons:{main:{label:'   '+theme_language("theme_xhred_global_cancel")+"  ",className:"btn-default vertical-align-top margined-left--2",callback:function(){despinnerfy_buttons(),navigation_detect()}},danger:{label:'   '+theme_language("theme_xhred_global_continue")+"  ",className:"btn-danger vertical-align-top margined-left--2",callback:function(){set_onbeforeunload_status(0,0),set_onbeforeunload_status(0,1),"object"==typeof progressive_request&&1===progressive_request.readyState&&progressive_request.abort();if(t&&t.href&&Test.strContains(t.href,"::switch::"))$('.switch-toggle input[id="'+t.href.replace("::switch::","")+'"]').trigger("click");else{var i=$(t).is("form");i?i&&get_pjax_action_submit(e,t):t.href&&t.href.length&&get_pjax_content(t.href,!1)}}}},onEscape:function(){despinnerfy_buttons(),navigation_detect()}})}function get_onbeforeunload_status(){return $('.container-fluid > .panel > .panel-body[data-unload-warning="1"]').length||$('html[data-unload-warning="1"]').length}function set_onbeforeunload_status(e,t){var i=t?"html":".container-fluid > .panel > .panel-body";e?$(i).attr("data-unload-warning","1"):$(i).removeAttr("data-unload-warning")}function set_side_slider_visibility(e){var t="body .right-side-tabs";"0"!=get_server_data("access-level")&&"1"!=Core.moduleAvailable("status")||(e?($(t+"-toggler").addClass("hidden"),$(t).css("right","0px").addClass("right-side-tabs-fixed"),settings_side_slider_enabled&&get_server_data("data-slider-fixed","1")):(settings_side_slider_enabled&&$(t+"-toggler").removeClass("hidden opened").css("right","0"),$(t).css("right","-302px").removeClass("right-side-tabs-fixed"),get_server_data("data-slider-fixed","0")))}function set_side_slider_labels(){var e=$('a[href*="#right-side-tabs-sysinfo"]'),t=theme_language("theme_xhred_titles_dashboard");e.length&&void 0!==t?(e.text(t),$('a[href*="#right-side-tabs-notifications"]').text(theme_language("theme_xhred_global_notifications")),$('a[href*="#right-side-tabs-favorites"]').text(theme_language("theme_xhred_global_favorites")),$(".theme_xhred_notification_no_data").text(theme_language("theme_xhred_notification_no_data").toUpperCase()),$(".theme_xhred_notification_no_favorites").text(theme_language("theme_xhred_notification_no_favorites").toUpperCase()),$(".theme_xhred_notification_none").text(theme_language("theme_xhred_notification_none").toUpperCase()),$("[data-ss-dd-help]").text(theme_language("theme_xhred_global_help")),$("[data-ss-dd-theme-configuration]").text(theme_language("theme_xhred_global_theme_configuration")),$("[data-ss-dd-whats-new]").text(theme_language("theme_xhred_global_whats_new")),$("[data-ss-dd-issue-report]").text(theme_language("theme_xhred_global_report_an_issue")),$("[data-ss-dd-official-website]").text(theme_language("theme_xhred_global_official_website")),$("[data-ss-dd-webmin]").text(theme_language("theme_xhred_titles_wm")),$("[data-ss-dd-virtualmin]").text(theme_language("theme_xhred_titles_vm")),$("[data-ss-dd-about-theme]").text(theme_language("theme_xhred_global_about_theme")),$("[data-ss-dd-install-theme-update]").text(theme_language("theme_xhred_global_update")),$("[data-ss-dd-install-release]").text(theme_language("theme_xhred_force_upgrade_stable")),$("[data-ss-dd-install-development]").text(theme_language("theme_xhred_force_upgrade_beta"))):setTimeout(set_side_slider_labels,200)}function theme_password_generator(){var e=settings_global_passgen_format.split("|")[1].split(","),t=parseInt(settings_global_passgen_format.split("|")[0]),i="",a="";$.inArray("a-z",e)>=0&&(i+="abcdefghijklmnopqrstuvwxyz"),$.inArray("A-Z",e)>=0&&(i+="ABCDEFGHIJKLMNOPQRSTUVWXYZ"),$.inArray("0-9",e)>=0&&(i+="0123456789"),$.inArray("#",e)>=0&&(i+="![]{}()%&*$#^<>~@|");for(var n=0;n-1&&(r=r.split("~"),e=r[0],s=r[1]),$.each($(t).find(i),function(){if(!$(this).parents(t).hasClass("f__lnk_t_btn")){if(o){var _=new RegExp(RegExp.quote(o),"g");$(this).parent().replaceText(_,l||"")}a&&a.indexOf("__center__")>-1&&$(i).parent().addClass("text-center"),$(this).html(e+$(this).text().replace(/\.\.$/,"")+s).addClass(a).removeClass("ui_link").prepend(n?'  ':""),$(this).parent(t).addClass("f__lnk_t_btn")}})}))})}function theme_toggle_night_mode(){var e=$("body .user-link.palette-toggle"),t=e.find(".fa-sun").length?0:1,i=(get_server_data("data-night-mode"),get_server_data("data-default-theme")),a=settings_background_color,n=$("input, textarea").is(":focus");if((!v___available_navigation||!n)&&v___available_navigation&&!$("body").find(".modal.in:visible").length){if(1===t){e.find(".fa-moon").removeClass("fa-moon").addClass("fa-sun vertical-align-middle"),$(document).find(".settings_navigation_color_toggle").addClass("hidden");var s=$("html").find('head link[href*="palettes"][data-palette]');$("html").find("head").append(''),$("html").find("head").append(''),setTimeout(function(){get_server_data("data-theme","gunmetal"),s.remove(),get_server_data("data-background-style","nightRider"),get_server_data("data-night-mode",1)},3),v___theme_night_mode_enabled=1,v___theme_night_mode=1}else{$("body").find(".settings_navigation_color_toggle").removeClass("hidden"),e.find(".fa-sun").removeClass("fa-sun vertical-align-middle").addClass("fa-moon");var _=$("html").find('head link[href*="gunmetal"]');"blue"!=get_server_data("data-default-theme")&&$("html").find("head").append(''),get_server_data("data-theme",i),_.remove(),get_server_data("data-background-style",a),get_server_data("data-night-mode",0),"nightRider"!==settings_background_color&&$("html").find('head link[href*="nightrider"]').remove(),v___theme_night_mode_enabled="nightRider"===settings_background_color?1:0,v___theme_night_mode=0}v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"sysinfo.cgi"&&"0"==v___user_level?(setTimeout(function(){$.each($(".piechart"),function(){$(this).addClass("bg-filter-blur-grayscale-invert-opacity75").data("easyPieChart").update(0)})},1===t?150:0),theme_config("save",['get_pjax_content("'+v___location_prefix+'/sysinfo.cgi")',0])):theme_config("save")}}function theme_shell_unlock(){v___shell_processing=0,$('.-shell-port- input[data-command="true"]').removeAttr("readonly")}function theme_shell_clear(e){e.val(""),e.focus()}function theme_shell_open(e,t){var i=i=void 0!==t&&(t.startsWith("!")?t.substr(1):t),a=$("body").find(".-shell-port- input");if(i){a.val(i);var n=$.Event("keydown");n.which=13,a.trigger(n)}e.css("bottom","0vh").addClass("opened"),theme_shell_adapt(),setTimeout(function(){i||(focus(),a.focus())},20)}function theme_shell_close(e){e.css("bottom","100vh").removeClass("opened")}function theme_shell_adapt(){if(1==Core.moduleAvailable("shell")){var e=parseInt($("body").find(".-shell-port-cmd").width()),t=parseInt($("body").find(".-shell-port-prompt").width());$("body").find('.-shell-port- input[data-command="true"]').css("width",e-t-50+"px")}}function theme_shell_check_available(){var e=$t_uri_cloudmin&&$('a[target="page"][href*="/server-manager/save_serv.cgi"][href*="shell=1"]').length;return 1==Core.moduleAvailable("shell")||e?1:0}function theme_shell_link_control(){theme_shell_check_available()?0!=settings_show_terminal_link&&$(".user-link.ported-console").removeClass("hidden"):$(".user-link.ported-console").addClass("hidden")}function theme_spinner_small(){return''}function despinnerfy_buttons(){$.each($(".btn.disabled"),function(){var e=$(this),t=e.find(".cspinner_container"),i=t.prev("i.invisible");e.removeClass("disabled"),i.removeClass("invisible"),t.remove()}),$('#system-status [href="/?updated"]').removeClass("disabled").find("i").removeClass("fa-spin")}function spinnerfy_buttons(e,t,i,a){var n=!!(e.attr("onclick")&&-1!==e.attr("onclick").indexOf("blank")||e.parents("form").attr("target")&&-1!==e.parents("form").attr("target").indexOf("blank")),s=e.hasClass("heighter-28"),_="28px"==e.css("height"),r=e.hasClass("btn-lg"),o=Core.curModule("server-manager")?2:0,l=e.find(".fa").hasClass("fa-1_25x"),c=e.find(".fa"),d=void 0!==t&&0!=t&&t,h='',p='';setTimeout(function(){!n&&e.addClass("disabled")},10),c.length&&!n&&setTimeout(function(){e.hasClass("btn-default")?c.addClass("invisible").after(p):c.addClass("invisible").after(h)},10),"undefind"==typeof i&&(i=!1),"undefind"==typeof a&&(a=!1),(d[3]||i)&&setTimeout(function(){e.removeClass("disabled"),c.removeClass("invisible"),e.find(".cspinner_container").remove()},i||d[3]),a&&setTimeout(function(){progress.end()},400)}function theme_language(e,t){void 0===t&&(t=!1);var i=get_server_data("language-strings");return t?!!i&&Convert.arrFlip(i)[$.trim(e)]:!!i&&i[e]}function theme_config($action,callBack){var callBack="object"==typeof callBack&&callBack,watched_options=["config_portable_module_csf_style_custom_promoted","config_portable_theme_charset_warning_shown","config_portable_module_xsql_fit_content_screen_height","config_portable_module_filemanager_hide_toolbar","config_portable_module_filemanager_hovered_toolbar","config_portable_module_filemanager_hide_actions","config_portable_module_filemanager_remember_tabs","config_portable_module_filemanager_calculate_size","config_portable_module_filemanager_switch_user","config_portable_module_filemanager_notification_type"];if("get_options"==$action)return watched_options;if("save"==$action){var storeStorage={},val=0;$.each(localStorage,function(e,t){"string"==typeof e&&e.indexOf(v___server_hostname)>-1&&Test.arrIntersect(watched_options,e)&&"undefined"!=(val="true"==t||"false"!=t&&(Test.numeric(t)?parseInt(t):t))&&(storeStorage[e.replace(v___server_hostname+"-","")]=val)}),storeStorage.settings_force_night_mode=v___theme_night_mode,"undefind"!=settings_font_family&&(storeStorage.settings_font_family=settings_font_family),"undefind"!=settings_navigation_color&&(storeStorage.settings_navigation_color=settings_navigation_color),"undefind"!=settings_background_color&&(storeStorage.settings_background_color=settings_background_color),"undefind"!=settings_cm_editor_palette&&(storeStorage.settings_cm_editor_palette=settings_cm_editor_palette),"undefind"!=settings_button_tooltip&&(storeStorage.settings_button_tooltip=settings_button_tooltip),"undefind"!=settings_hide_top_loader&&(storeStorage.settings_hide_top_loader=settings_hide_top_loader),"undefind"!=settings_animation_left&&(storeStorage.settings_animation_left=settings_animation_left),"undefind"!=settings_animation_tabs&&(storeStorage.settings_animation_tabs=settings_animation_tabs),"undefind"!=settings_sysinfo_link_mini&&(storeStorage.settings_sysinfo_link_mini=settings_sysinfo_link_mini),"undefind"!=settings_show_night_mode_link&&(storeStorage.settings_show_night_mode_link=settings_show_night_mode_link),"undefind"!=settings_theme_options_button&&(storeStorage.settings_theme_options_button=settings_theme_options_button),"undefind"!=settings_leftmenu_button_refresh&&(storeStorage.settings_leftmenu_button_refresh=settings_leftmenu_button_refresh),"undefind"!=settings_hotkeys_active&&(storeStorage.settings_hotkeys_active=settings_hotkeys_active),setTimeout(function(){$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-manage-config=1&save=1",data:storeStorage,dataType:"text",success:function(c){Test.strContains(c,v___page_signin_form)?v___available_session=0:(setTimeout(function(){theme_settings_controls(0)},400),callBack&&(callBack[2]?setTimeout(function(){eval(callBack[0])},callBack[2]):eval(callBack[0])))},error:function(){}})},10)}else if("load"===$action){var val=0;$.ajax({type:"GET",url:v___location_prefix+"/index.cgi?xhr-manage-config=1&load=1",data:!1,dataType:"json",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:$.each(e,function(e,t){val="true"==t||"false"!=t&&(Test.numeric(t)?parseInt(t):t),localStorage.setItem(v___server_hostname+"-"+e,val),window[e]=val})},error:function(){}})}}function get_server_data(e,t,i){var a=$("html"),n=$("body"),s="data-"+e,_=e.replace("data-","");if(void 0!==i)e.startsWith("data-")?(a.removeAttr(e),a.removeData(_)):(a.removeAttr(s),a.removeData(e));else{if(void 0===t)return e.startsWith("data-")?a.attr(e):a.data(e);e.startsWith("data-")?a.attr(e,t).data(_,t):a.data(e,t).attr(s),"data-uri"!==e&&"data-module"!==e||(n.attr(e,t),"data-module"===e&&n.removeClass().addClass(t))}}function control_server_tmp_var(e,t,i,a,n,s){return $.ajax({type:"POST",url:v___location_prefix+"/index.cgi/?xhr-tmp_var=1&xhr-tmp_var_action="+e+"&xhr-tmp_var_name="+t+"&xhr-tmp_var_value="+(i?Convert.uriEncodeComponent(i):i)+"&xhr-tmp_var_keep="+a,data:!1,dataType:"text",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:"function"==typeof n&&(!e.length||e.length&&1===s)&&n()},error:function(e){}})}function get_server_tmp_var(e,t,i,a){return control_server_tmp_var("get",e,!1,t,i,a)}function set_server_tmp_var(e,t){control_server_tmp_var("set",e,t)}function get_navigation_module_name(){return $t_uri_webmin?theme_language("theme_xhred_titles_wm"):$t_uri_usermin?theme_language("theme_xhred_titles_um"):$t_uri_virtualmin?theme_language("theme_xhred_titles_vm"):$t_uri_cloudmin?theme_language("theme_xhred_titles_cm"):$t_uri_webmail?theme_language("theme_xhred_titles_mail"):$t_uri_dashboard?theme_language("theme_xhred_titles_dashboard"):void 0}function update_navigation_module_name(){$t_uri_webmin=$('.switch-toggle input[id="open_webmin"]:checked').length?1:0,$t_uri_usermin=$('.switch-toggle input[id="open_usermin"]:checked').length?1:0,$t_uri_virtualmin=$('.switch-toggle input[id="open_virtualmin"]:checked').length?1:0,$t_uri_cloudmin=$('.switch-toggle input[id="open_cloudmin"]:checked').length?1:0,$t_uri_webmail=$('.switch-toggle input[id="open_webmail"]:checked').length?1:0,$t_uri_dashboard=$('.switch-toggle input[id="open_dashboard"]:checked').length?1:0}function page_display(){var e=$("body"),t=$("body").find(".container-fluid"),i=$("head");t.css({opacity:1,"pointer-events":"auto"}),e.css("overflow","auto"),i.find("#__tmp_no_overflow").remove()}function page_adjust(e,t){"function"==typeof $.injectCSS&&($("style[data-persist]").remove(),t=!!t&&"translate("+t+"px, 0px) !important",$.injectCSS({"#sidebar":{left:-e+"px",width:e+"px",transform:t},".switch-toggle":{width:e+"px"},"#content.__page":{"margin-left":e+"px"},".autocomplete-suggestions":{"min-width":e-23+"px !important"},".__logo":{width:e+"px","max-width":e+"px"}}),$("aside select").length&&($("aside select[data-autocomplete-title]").attr("style","width:"+(e-24)+"px; margin-top: 0 !important"),navigation_init_select()))}function navigation_lock_width(){if("undefined"==typeof settings_leftmenu_width_initial&&(settings_leftmenu_width_initial=settings_leftmenu_width),matchMedia("(max-width: 767px)").matches)settings_leftmenu_width=260,page_adjust(settings_leftmenu_width,0);else{if(1===v___initial_load)return;settings_leftmenu_width=settings_leftmenu_width_initial,page_adjust(settings_leftmenu_width,settings_leftmenu_width)}}function theme_modal_dismiss(){$(".modal.in").find("[data-dismiss]").trigger("click")}function navigation_focus_search(e){if(settings_hotkeys_active&&v___available_session)return String.fromCharCode(e.which).toLowerCase()!=settings_hotkey_focus_search||!e[settings_hotkey_toggle_modifier]||(e.preventDefault(),$search=$(".form-control.sidebar-search").focus(),!1)}function theme_shortcut_check(e){return"0"==get_access_level()||!!Core.moduleAvailable(URI("/"+e).directory().replace(/\//g,""))}function theme_shortcuts(e){if(settings_hotkeys_active){if(!("1"==String.fromCharCode(e.which)&&settings_hotkey_custom_1&&e[settings_hotkey_toggle_modifier]||"2"==String.fromCharCode(e.which)&&settings_hotkey_custom_2&&e[settings_hotkey_toggle_modifier]||"3"==String.fromCharCode(e.which)&&settings_hotkey_custom_3&&e[settings_hotkey_toggle_modifier]||"4"==String.fromCharCode(e.which)&&settings_hotkey_custom_4&&e[settings_hotkey_toggle_modifier]||"5"==String.fromCharCode(e.which)&&settings_hotkey_custom_5&&e[settings_hotkey_toggle_modifier]||"6"==String.fromCharCode(e.which)&&settings_hotkey_custom_6&&e[settings_hotkey_toggle_modifier]||"7"==String.fromCharCode(e.which)&&settings_hotkey_custom_7&&e[settings_hotkey_toggle_modifier]||"8"==String.fromCharCode(e.which)&&settings_hotkey_custom_8&&e[settings_hotkey_toggle_modifier]||"9"==String.fromCharCode(e.which)&&settings_hotkey_custom_9&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_favorites&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_shell&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_sysinfo&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_slider&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_reload&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_night_mode&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_webmail&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_usermin&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_cloudmin&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_virtualmin&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_webmin&&e[settings_hotkey_toggle_modifier]))return!0;if(get_onbeforeunload_status()||!v___available_session)return e.preventDefault(),void console.log("Disabling theme hotkeys .. ");"1"==String.fromCharCode(e.which)&&settings_hotkey_custom_1&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_1)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_1)),"2"==String.fromCharCode(e.which)&&settings_hotkey_custom_2&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_2)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_2)),"3"==String.fromCharCode(e.which)&&settings_hotkey_custom_3&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_3)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_3)),"4"==String.fromCharCode(e.which)&&settings_hotkey_custom_4&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_4)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_4)),"5"==String.fromCharCode(e.which)&&settings_hotkey_custom_5&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_5)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_5)),"6"==String.fromCharCode(e.which)&&settings_hotkey_custom_6&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_6)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_6)),"7"==String.fromCharCode(e.which)&&settings_hotkey_custom_7&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_7)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_7)),"8"==String.fromCharCode(e.which)&&settings_hotkey_custom_8&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_8)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_8)),"9"==String.fromCharCode(e.which)&&settings_hotkey_custom_9&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_9)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_9)),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_webmin&&(e.preventDefault(),$('.switch-toggle input[id="open_webmin"]').trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_virtualmin&&(e.preventDefault(),$('.switch-toggle input[id="open_virtualmin"]').trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_cloudmin&&(e.preventDefault(),$('.switch-toggle input[id="open_cloudmin"]').trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_usermin&&(e.preventDefault(),$('.switch-toggle input[id="open_usermin"]').trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_webmail&&(e.preventDefault(),$('.switch-toggle input[id="open_webmail"]').trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_night_mode&&(e.preventDefault(),theme_toggle_night_mode()),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_slider&&(e.preventDefault(),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_reload&&$('.user-links a[data-refresh="true"]')&&(e.preventDefault(),get_pjax_content(v___location_resource));var t=$t_uri_cloudmin&&$('a[target="page"][href*="/server-manager/save_serv.cgi"][href*="shell=1"]').length;if(String.fromCharCode(e.which).toLowerCase()==settings_hotkey_shell&&(1==Core.moduleAvailable("shell")||t)){e.preventDefault();var i=$("body").find(".-shell-port-");i.hasClass("opened")?theme_shell_close(i):theme_shell_open(i)}return String.fromCharCode(e.which).toLowerCase()==settings_hotkey_sysinfo&&(e.preventDefault(),1==navigation_dashboard_switch_available()?navigation_dashboard_switch_select():get_pjax_content(v___location_prefix+"/sysinfo.cgi")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_favorites&&(e.preventDefault(),"0px"!=$(".favorites-menu-outer").css("left")?$(".user-link.favorites").trigger("click"):$(".favorites-menu-outer").removeClass("hover")),!1}}function get_access_level(){return parseInt(get_server_data("level"))}function navigation_dashboard_switch_available(){return"1"==get_server_data("dashboard")}function navigation_dashboard_switch_select(){set_switch_position("dashboard"),navigation_clear(),get_pjax_content(v___location_prefix+"/sysinfo.cgi")}function theme_messenger(e,t,i,a,n){var s=void 0===a?1:a,_=void 0===n||n;if($('body[class^="'+v___module_file_manager+'"]').length){if("4"==config_portable_module_filemanager_notification_type&&"info"!=i&&"warning"!=i&&"error"!=i)return;if("2"==config_portable_module_filemanager_notification_type&&"warning"!=i&&"error"!=i)return}"function"==typeof Messenger&&(window["Messenger_"+s]=Messenger().post({message:e,hideAfter:t,theme:"air",showCloseButton:_,type:i,id:s}))}function theme_message_dismiss(e){void 0!==window["Messenger_"+e]&&window["Messenger_"+e].hide()}function theme_alert(e,t,i,a,n,s,_,r){(void 0===i||0==i)&&(i=!1),(void 0===a||0==a)&&(a="md"),(void 0===n||0==n)&&(n="danger"),(void 0===s||0==s)&&(s="exclamation-triangle"),(void 0===_||0==_)&&(_="7"),(void 0===r||0==r)&&(r=!1);$.isArray(i);var o="modal-global-notification",l='";setTimeout(function(){$("body").hasClass("modal-open")||($("body").append(l),$("."+o).modal("show"),$("."+o).on("click",".modal-body a.label",function(e){$("."+o).modal("hide")}),$("."+o).on("hidden.bs.modal",function(e){$("."+o).remove()}))},r)}function theme_alert_charset(){var e=get_server_data("charset");if(e&&-1===e.toLowerCase().indexOf("utf")&&"true"!=localStorage.getItem(v___server_hostname+"-config_portable_theme_charset_warning_shown")){var t="

"+theme_language("theme_xhred_encoding_warning").replace("_hidden_",$t_uri_usermin?"hidden":"").replace("%prod",get_navigation_module_name()).replace("%lang",get_server_data("language")).replace("%charset",get_server_data("charset")).replace("%link",v___location_prefix+($t_uri_usermin?"/language":"/webmin/edit_lang.cgi"))+"

";theme_alert(theme_language("theme_xhred_global_warning"),t,!1,"sm","warning",!1,"7 modal-charset-warning",2e3),$("body").on("click",".modal-charset-warning a.label",function(e){$(".modal-charset-warning").modal("hide")}),$("body").on("hide.bs.modal",".modal-charset-warning",function(e){localStorage.setItem(v___server_hostname+"-config_portable_theme_charset_warning_shown","true"),theme_config("save")})}}function get_module_title(){return $_right_menu_title=$("#headln2c"),$_right_menu_title.find("span[data-main_title]").text().length?$_right_menu_title.find("span[data-main_title]").text():$_right_menu_title.text().length?$_right_menu_title.text().text():"->"}function get_module_subtitle(){}function editor_background_save(e){if(1===$('textarea[name="data"], textarea[name="text"], textarea[name="directives"], textarea[name="manual"]').length&&1===$('textarea[name="data"], textarea[name="text"], textarea[name="directives"], textarea[name="manual"]').parents("form").find('input[type="submit"]').length){if(!$(".CodeMirror").length)return;function t(){"undefined"!=typeof __cm_editor_static&&$(".container-fluid > .panel > .panel-body").attr("data-cm-line",__cm_editor_static.getCursor().line+","+__cm_editor_static.getCursor().ch).attr("data-cm-state",$('[data-form="submitter"]').hasClass("btn-warning")&&!$('[data-form="submitter"]').next("button").hasClass("disabled"))}$(".ui_reset").remove();var i=$('.container-fluid textarea[name="data"], .container-fluid textarea[name="text"], .container-fluid textarea[name="directives"], .container-fluid textarea[name="manual"]').parents("form"),a=i.find('button[type="button"]').length?i.find('button[type="button"]'):i.find('input[type="submit"]'),n=$('.container-fluid textarea[name="directives"]').length?"-12px":"0";$(".container-fluid select").val()?$(".container-fluid select").val():$(".container-fluid .table-title").text()?$(".container-fluid .table-title").text():$(".container-fluid .panel-body tt:first").text()?$(".container-fluid .panel-body tt:first").text():$(".container-fluid #headln2c tt:first").text()&&$(".container-fluid #headln2c tt:first").text();a.parents("table.ui_form_end_buttons").prev("br").remove(),a.parents("table.ui_form_end_buttons").prev("div.table-responsive").attr("style","margin-bottom: -4px !important"),a.replaceWith('\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t");var s=$('.container-fluid button[type="button"]:not(.ui_form_end_submit)'),_=$('.container-fluid button[type="submit"]:not(.ui_form_end_submit)');window.__cm_editor_static.on("change",function(e,i){__cm_editor_static.save(),s.addClass("btn-warning").removeClass("btn-success").attr("data-form-onbeforeunload",1),t()}),$("body").off("mousedown.cm1"),$("body").on("mousedown.cm1",".CodeMirror",function(e){t()}),$("body").off("keydown.cm1"),$("body").on("keydown.cm1",function(e){13==e.keyCode&&e.ctrlKey&&!e.shiftKey?s.trigger("click"):13==e.keyCode&&e.ctrlKey&&e.shiftKey&&_.trigger("click")});var r='button[type="submit"]:not(.disabled)';$("body").undelegate(r,"click.cm"),$("body").on("click.cm",r,function(e){set_onbeforeunload_status(0,0),$("button").addClass("disabled").find(".fa.fa-arrow-circle-o-left").addClass("invisible").after(''),s.attr("data-form-onbeforeunload",0)});var o='button[data-form="submitter"]:not(.disabled)';$("body").undelegate(o,"click.cm"),$("body").on("click.cm",o,function(e){e.preventDefault();var t=$(this).parents("form"),a=(t.attr("enctype")&&t.attr("enctype").indexOf("form-data")>-1?0:1)?t.serialize():new FormData(t[0]);$("button").addClass("disabled").find(".fa.fa-floppy-o").addClass("invisible").after(''),setTimeout(function(){$.ajax({type:"POST",url:i.attr("action"),data:a,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){if(!Test.strContains(e,v___page_signin_form))return s.removeClass("btn-warning").addClass("btn-success").attr("data-form-onbeforeunload",0),$("button").removeClass("disabled").find(".fa").removeClass("invisible").parent().find(".cspinner_container").remove(),$(".container-fluid > .panel > .panel-body").attr("data-cm-state","false"),set_onbeforeunload_status(0,0),!$(e).find(".panel-body > hr + h3").length||$(e).find(".panel-body .table").length||$(e).find(".panel-body form[action]").length?void 0:(theme_messenger(''+$(e).find(".panel-body hr + h3").html(),60,"error","magic_save_error"),s.removeClass("btn-success").addClass("btn-warning").attr("data-form-onbeforeunload",1),void $(".container-fluid > .panel > .panel-body").attr("data-cm-state","true"));v___available_session=0},error:function(e){}})},300)})}}function page_resized(){navigation_lock_width(),$(".mobile-menu-toggler").hasClass("selected")||($("aside").addClass("hidden-xs"),$("aside").css("transform","translate("+settings_leftmenu_width+"px, 0px)"),$(".switch-toggle").css("display","table"),"function"==typeof jQuery().transition&&$(".__logo")&&!$(".mobile-menu-toggler:visible").length?$(".__logo").transition({y:"-140px"},700,function(){}):$(".__logo")&&$(".__logo").css("transform","translate(0px, 0px)")),set_side_slider_visibility(!0!==settings_side_slider_fixed||$(".mobile-menu-toggler:visible").length||!v___available_navigation?0:1)}function theme_settings_controls(e){var t=$("#atsave, #save_user");e?(set_onbeforeunload_status(1,0),t.addClass("btn-warning")):(set_onbeforeunload_status(0,0),t.removeClass("btn-warning"))}function theme_settings_update(){$.each($("#atsettings .ui_form").serializeArray(),function(e,t){if("true"==t.value||"false"==t.value){if("true"==t.value)i=!0;else if("false"==t.value)i=!1}else var i=t.value;window[t.name]=Test.numeric(i)?parseInt(i):i})}function bind_sameorigin(){$("body").on("click",'a[href^="http"], a[href^="https"], a[href^="ftp"], a[href^="ftps"]',function(e){Core.linkSameOrigin($(this))||$(this).attr("target","_blank")}),$.each($('ul.navigation a[href^="http"], ul.navigation a[href^="https"], ul.navigation a[href^="ftp"], ul.navigation a[href^="ftps"], ul.navigation a[data-href^="http"], ul.navigation a[data-href^="https"], ul.navigation a[data-href^="ftp"], ul.navigation a[data-href^="ftps"]'),function(){$(this).removeClass("navigation_module_trigger").parents("li").addClass("navigation_external"),$(this).attr("target","_blank"),$(this).attr("href",$(this).data("href")),$(this).removeAttr("data-href")})}function reset_switch_position(){Test.string(v___theme_navigation_active)&&set_switch_position(v___theme_navigation_active)}function set_switch_position(e){get_onbeforeunload_status()||($('.switch-toggle input:not([id="open_'+e+'"])').each(function(){$(this).removeAttr("checked")}).promise().done(function(){$("#open_"+e).prop("checked",!0)}),update_navigation_module_name())}function get_navigation_menu_webmin(e){get_onbeforeunload_status()||(navigation_render_start(),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-navigation=1&xhr-navigation-type="+("webmail"==e?"webmail":"webmin"),data:!1,dataType:"text",success:function(t){if(Test.strContains(t,v___page_signin_form))return v___available_session=0,navigation_render_end(),void reset_switch_position();v___theme_navigation_active="webmail"==e?"webmail":get_server_data("product"),$("body ul.navigation").html(t),navigation_render_end(),!get_server_data("loading")&&navigation_detect()}}),get_navigation_menu_buttons())}function get_navigation_menu_virtualmin(e){get_onbeforeunload_status()||(navigation_render_start(),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-navigation=1&xhr-navigation-type=virtualmin"+(e?"&dom="+e:settings_right_virtualmin_default?"&dom="+settings_right_virtualmin_default:""),data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return v___available_session=0,navigation_render_end(),void reset_switch_position();v___theme_navigation_active="virtualmin",$("body ul.navigation").html(e),navigation_render_end(),get_navigation_menu_virtualmin_summary(),!get_server_data("loading")&&navigation_detect()}}),get_navigation_menu_buttons())}function get_navigation_menu_virtualmin_summary(){if(!get_onbeforeunload_status()){var e=$('a[href*=".cgi?dom=$#DOM"]'),t=e.attr("href"),i=$('aside [name="dom"]').val();e.length&&i&&e.attr("href",t.replace("$#DOM",i))}}function get_navigation_menu_cloudmin(e){get_onbeforeunload_status()||(navigation_render_start(),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-navigation=1&xhr-navigation-type=cloudmin"+(e||0===e?"&sid="+e:settings_right_cloudmin_default?"&sid="+settings_right_cloudmin_default:""),data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return v___available_session=0,navigation_render_end(),void reset_switch_position();v___theme_navigation_active="cloudmin",$("body ul.navigation").html(e),theme_shell_link_control(),navigation_render_end(),!get_server_data("loading")&&navigation_detect()}}),get_navigation_menu_buttons())}function get_navigation_menu_buttons(){get_onbeforeunload_status()||$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-buttons=1&xhr-buttons-type="+($t_uri_virtualmin||$t_uri_cloudmin?1:0),data:!1,dataType:"text",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:($("body ul.user-links").html(e),theme_shell_link_control())}})}function get_default_content(){get_onbeforeunload_status()||($("body").append(''),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-default=1",data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{$("#____switch").html(e),$____switch=$("#____switch").text();var t=v___location_prefix+(3==v___user_level&&Core.moduleAvailable("mailbox")&&$t_uri_webmail?"/mailbox/index.cgi?id=INBOX":3==v___user_level?"/sysinfo.cgi":("/"==$____switch.substring(0,1)?"":"/")+$____switch);(Test.strContains(t,"mysql")||Test.strContains(t,"postgresql"))&&get_bundle_sql(),Test.strContains(t,v___module_file_manager)&&get_bundle_file_manager(),Test.strContains(t,"csf")&&get_bundle_csf(),get_pjax_content(t),$("#____switch").remove()}}}))}function get_default_virtualmin_content(e,t){if(!get_onbeforeunload_status()||t){var i,a="/virtual-server";if(i=1==get_server_data("initial-wizard")?a+"/wizard.cgi":!1!==e?a+"/summary_domain.cgi?dom="+e:"sysinfo.cgi"==settings_right_virtualmin_default||""==settings_right_virtualmin_default?"/sysinfo.cgi":"index.cgi"==settings_right_virtualmin_default?a+"/index.cgi":a+"/summary_domain.cgi?dom="+settings_right_virtualmin_default,t)return v___location_prefix+i;get_pjax_content(v___location_prefix+i)}}function get_default_cloudmin_content(e,t){if(!get_onbeforeunload_status()||t){var i;if(i=!1===e||settings_right_cloudmin_default||"0"==settings_right_cloudmin_default?"sysinfo.cgi"==settings_right_cloudmin_default||""==settings_right_cloudmin_default&&"0"!=settings_right_cloudmin_default?"sysinfo.cgi":"index.cgi"==settings_right_cloudmin_default?"server-manager/index.cgi":"server-manager/edit_serv.cgi?id="+settings_right_cloudmin_default:"server-manager/edit_serv.cgi?id="+e,t)return v___location_prefix+"/"+i;get_pjax_content(v___location_prefix+"/"+i)}}function get_navigation_and_content(e,t,i){get_onbeforeunload_status()||("virtualmin"===e?(get_navigation_menu_virtualmin(!1),1!=settings_right_reload&&1!==t||1===i||get_default_virtualmin_content(!1)):"cloudmin"===e?(get_navigation_menu_cloudmin(!1),1!=settings_right_reload&&1!==t||1===i||get_default_cloudmin_content(!1)):(0==navigation_dashboard_switch_available()&&get_navigation_menu_webmin(e),1!=settings_right_reload&&1!==t||1===i||get_default_content()))}function information_update(){if(!$("body .modal.in").length&&0==v___user_level){var e=$("body").find("#system-status"),t=e.length?e[0]:0;$("#right-side-tabs-sysinfo .graph-container").length||$("#right-side-tabs .info-container").html(get_right_panel_sysinfo_data()),t&&$(t).find('h3 > a[data-refresh="system-status"]').addClass("disabled").find("i").addClass("fa-spin");var i=$(".right-side-tabs-dismiss .fa-reload");i.addClass("fa-spin-fast"),setTimeout(function(){i.removeClass("fa-spin-fast")},3e3),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-info=1",data:!1,dataType:"json",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:($.each(e,function(e,i){if("cpu_percent"!=e&&"mem_percent"!=e&&"virt_percent"!=e&&"disk_percent"!=e||(Test.numeric(i)?localStorage.setItem(v___server_hostname+"-sysinfo_"+e+"_stats",i):localStorage.setItem(v___server_hostname+"-sysinfo_"+e+"_stats","")),t){if($(t).find('span[data-id="sysinfo_'+e+'"]').html(i),"local_time"==e||"uptime"==e||"running_proc"==e){var a=$(t).find('span[data-id="sysinfo_'+e+'"]'),n=$(t).find('span[data-id="sysinfo_'+e+'"] a'),s=$(t).find('span[data-id="sysinfo_'+e+'"]').text();"local_time"==e&&settings_window_replace_timestamps?n&&n.length?(s=$(t).find('span[data-id="sysinfo_'+e+'"] a').data("convertible-timestamp-full"),a.html(n.html(moment.unix(s).format(settings_window_replaced_timestamp_format_full)))):(s=$(t).find('span[data-id="sysinfo_'+e+'"] > span').data("convertible-timestamp-full"),a.html(moment.unix(s).format(settings_window_replaced_timestamp_format_full))):n&&n.length&&a.html(n.html(s))}if(page_sysinfo_sensor_update_label(),$(t).find('.piechart[data-charts="sysinfo_'+e+'"]').length){var _=$("body").find('.piechart[data-charts="sysinfo_'+e+'"]');_.length&&!isNaN(parseInt(i))&&_.data("easyPieChart").update(i)}"cpu_percent"!=e&&"mem_percent"!=e&&"virt_percent"!=e&&"disk_percent"!=e||localStorage.setItem(v___server_hostname+"-sysinfo_"+e+"_seen",i),$(t).find(".modal-backdrop").remove()}if($__id__=moment().unix(),"cpu_percent"==e||"mem_percent"==e||"virt_percent"==e||"disk_percent"==e||"csf_title"==e||"csf_remote_version"==e||"authentic_remote_version"==e||"package_message"==e?localStorage.getItem(v___server_hostname+"-sysinfo_"+e)||localStorage.setItem(v___server_hostname+"-sysinfo_"+e,i):i&&null!=i&&NaN!=i?localStorage.setItem(v___server_hostname+"-sysinfo_"+e,i):localStorage.setItem(v___server_hostname+"-sysinfo_"+e,""),localStorage.getItem(v___server_hostname+"-sysinfo_package_message_initial")||localStorage.setItem(v___server_hostname+"-sysinfo_package_message_initial",1),"authentic_theme_version"==e&&!localStorage.getItem(v___server_hostname+"-sysinfo_theme_current_version")&&i&&localStorage.setItem(v___server_hostname+"-sysinfo_theme_current_version",i.match(/^\d+|\d+\b|\d+(?=\w)/g)[0]+"."+i.match(/^\d+|\d+\b|\d+(?=\w)/g)[1]),"csf_data"==e&&!localStorage.getItem(v___server_hostname+"-sysinfo_csf_current_version")&&i&&localStorage.setItem(v___server_hostname+"-sysinfo_csf_current_version",i.match(/^\d+|\d+\b|\d+(?=\w)/g)[0]+"."+i.match(/^\d+|\d+\b|\d+(?=\w)/g)[1]),"csf_title"==e||"csf_data"==e||"csf_remote_version"==e||"authentic_remote_version"==e||"authentic_theme_version"==e||"package_message"==e){if("package_message"===e){if((localStorage.getItem(v___server_hostname+"-sysinfo_"+e)!=i||1==localStorage.getItem(v___server_hostname+"-sysinfo_package_message_initial"))&&i&&i.indexOf("badge-danger")>-1){var r=theme_language("theme_xhred_notifications_packages_updates"),o=$(i).html().replace(/badge-danger/g,"badge-success");localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_package_message",JSON.stringify({title:r,time:$__id__,timestamp:$__id__,message:o,readStatus:0,type:e,link:$(i).attr("href")})),slider_mark_group_notifications_read("package_message"),localStorage.setItem(v___server_hostname+"-sysinfo_"+e,i),localStorage.setItem(v___server_hostname+"-sysinfo_package_message_initial",0),notifications(r,o,e)}else"package_message"===e&&localStorage.setItem(v___server_hostname+"-sysinfo_"+e,i);$(i).find("i.badge:first-child").length||slider_mark_group_notifications_read("package_message")}var l=localStorage.getItem(v___server_hostname+"-sysinfo_theme_current_version");if(settings_sysinfo_theme_updates&&(0==localStorage.getItem(v___server_hostname+"-sysinfo_authentic_remote_version")&&localStorage.removeItem(v___server_hostname+"-sysinfo_authentic_remote_version"),l&&localStorage.getItem(v___server_hostname+"-sysinfo_authentic_remote_version")&&"authentic_remote_version"==e&&l';localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_authentic_remote_version",JSON.stringify({title:c,time:$__id__,timestamp:$__id__,message:d,readStatus:0,type:e,link:v___location_prefix+"/sysinfo.cgi"})),localStorage.setItem(v___server_hostname+"-sysinfo_"+e,i),localStorage.setItem(v___server_hostname+"-sysinfo_theme_current_version",i),notifications(c,d,e)}if("authentic_theme_version"!==e||Test.strContains(i,"CHANGELOG.md")||slider_mark_group_notifications_read("authentic_remote_version"),settings_sysinfo_csf_updates){var h=localStorage.getItem(v___server_hostname+"-sysinfo_csf_current_version");if(h&&null!=h&&localStorage.getItem(v___server_hostname+"-sysinfo_csf_remote_version")&&"csf_remote_version"==e&&h-1&&1!=localStorage.getItem(v___server_hostname+"-sysinfo_csf_not_running")){var g=theme_language("theme_xhred_notifications_firewall_danger"),u=theme_language("theme_xhred_notifications_firewall_danger_message").replace("%v",moment.unix($__id__).format(settings_window_replaced_timestamp_format_short));localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_csf_title",JSON.stringify({title:g,time:$__id__,timestamp:$__id__,message:u,readStatus:0,type:e,link:v___location_prefix+"/csf/index.cgi"})),slider_mark_group_notifications_read("csf_title"),localStorage.setItem(v___server_hostname+"-sysinfo_csf_not_running",1),notifications(g,u,"csf_remote_version")}else i&&-1===i.indexOf("label-danger")&&(slider_mark_group_notifications_read("csf_title"),localStorage.removeItem(v___server_hostname+"-sysinfo_csf_not_running"))}if("csf_deny"==e){var v=JSON.parse(i);$.each(v,function(t,i){var a=(i=i.split("|"))[0],n=i[1],s=i[2],_=i[3],r=(i[4],i[5],i[6],i[7]);if(r=r.replace("*Port Scan*",s&&_?'Port '+_+" scan":"Port scan"),!localStorage.getItem(v___server_hostname+"-allowed_trigger_"+(a+n.replace(/\./g,"0"))+"_csf_deny")){var o=theme_language("theme_xhred_notifications_firewall_warning"),l=r+(s&&_?" ("+s+":"+_+")":"");localStorage.setItem(v___server_hostname+"-notifications_"+(a+n.replace(/\./g,"0"))+"_csf_deny",JSON.stringify({title:o,time:$__id__,timestamp:$__id__,message:l,readStatus:0,type:e,link:v___location_prefix+"/csf/index.cgi"})),localStorage.setItem(v___server_hostname+"-allowed_trigger_"+(a+n.replace(/\./g,"0"))+"_csf_deny",1)}})}"cpu_percent"!=e&&"mem_percent"!=e&&"virt_percent"!=e&&"disk_percent"!=e||null!==localStorage.getItem(v___server_hostname+"-sysinfo_"+e+"_seen")&&i>=85&&localStorage.getItem(v___server_hostname+"-sysinfo_"+e+"_seen"),setTimeout(function(){if((localStorage.getItem(v___server_hostname+"-sysinfo_cpu_percent_stats")||localStorage.getItem(v___server_hostname+"-sysinfo_mem_percent_stats")||localStorage.getItem(v___server_hostname+"-sysinfo_virt_percent_stats")||localStorage.getItem(v___server_hostname+"-sysinfo_disk_percent_stats"))&&$("#right-side-tabs-sysinfo .graph-container").length){var t=!localStorage.getItem(v___server_hostname+"-sysinfo_"+e+"_stats"),a=$(".info-container .graph-container."+e);t?a.addClass("hidden").prev("br").addClass("hidden"):a.removeClass("hidden").prev("br").removeClass("hidden"),"cpu_percent"==e&&($("#right-side-tabs-sysinfo .graph-container."+e+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_load")).text(theme_language("theme_xhred_global_cpu_load")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_cpu_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_load")+")"),$("#right-side-tabs-sysinfo .graph-container."+e+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_cpu_percent_stats")+"%")),"mem_percent"==e&&($("#right-side-tabs-sysinfo .graph-container."+e+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_real_memory")).text(theme_language("body_real")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_mem_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_real_memory")+")"),$("#right-side-tabs-sysinfo .graph-container."+e+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_mem_percent_stats")+"%")),"virt_percent"==e&&($("#right-side-tabs-sysinfo .graph-container."+e+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_virtual_memory")).text(theme_language("body_virt")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_virt_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_virtual_memory")+")"),$("#right-side-tabs-sysinfo .graph-container."+e+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_virt_percent_stats")+"%")),"disk_percent"==e&&($("#right-side-tabs-sysinfo .graph-container."+e+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_disk_space")).text(theme_language("body_disk")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_disk_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_disk_space")+")"),$("#right-side-tabs-sysinfo .graph-container."+e+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_disk_percent_stats")+"%"))}if($('#right-side-tabs .info-container .info-list-data span[data-data="'+e+'"]').html(i),"package_message"==e&&Core.moduleAvailable("package-updates")&&$('#right-side-tabs .info-container .info-list-data span[data-data="'+e+'"]').html($(i).html($(i).html().split(",")[0])[0].outerHTML),"local_time"==e&&settings_window_replace_timestamps){(o=$('#right-side-tabs .info-container .info-list-data span[data-data="'+e+'"] a'))&&o.length&&o.html(o.next("span").detach());var n=$(".info-container").find("span[data-convertible-timestamp-full]"),s=n.attr("data-convertible-timestamp-full");n.html(moment.unix(s).format(settings_window_replaced_timestamp_format_full)),time.tictac(1)}if("cpu_temperature"==e){var _=0;$.each($(i).filter(".badge-cpustatus"),function(e,t){var a,n=parseInt($(this).text().split(":")[1]),s=n,r=$(this).text().indexOf("°C")>-1;"bg-warning"!=(a=$(this).text().indexOf("RPM")>-1?HTML.label.rpm(s):HTML.label.temperature(n,r))&&"bg-danger"!=a||(_=1),$("#right-side-tabs .info-container .badge-drivestatus.badge-cpustatus").length||$('strong[data-stats="cpu"] + br[data-stats="cpu"]').after(i.replace(/
| /gi,"")),$($("#right-side-tabs .info-container .badge-drivestatus.badge-cpustatus")[e]).html($(this).text()).removeClass(function(e,t){return(t.match(/(^|\s)bg-\S+/g)||[]).join(" ")}).addClass(a+"-dark")}).promise().done(function(){_||"undefined"!=typeof config_custom_force_display_cpu_sensors?$('.info-container [data-stats="cpu"]').removeClass("hidden"):$('.info-container [data-stats="cpu"]').addClass("hidden")})}if("hdd_temperature"==e){var r=0;$.each($(i).filter(".badge-drivestatus:not(.badge-cpustatus)"),function(e,t){var a,n=parseInt($(this).text().split(":")[1]),s=$(this).text().indexOf("°C")>-1;"bg-warning"!=(a=HTML.label.temperature(n,s))&&"bg-danger"!=a||(r=1),$("#right-side-tabs .info-container .badge-drivestatus:not(.badge-cpustatus)").length||$('strong[data-stats="drive"] + br[data-stats="drive"]').after(i.replace(/
| /gi,"")),$($("#right-side-tabs .info-container .badge-drivestatus:not(.badge-cpustatus)")[e]).html($(this).text()).removeClass(function(e,t){return(t.match(/(^|\s)bg-\S+/g)||[]).join(" ")}).addClass(a+"-dark")}).promise().done(function(){r||"undefined"!=typeof config_custom_force_display_drive_sensors?$('.info-container [data-stats="drive"]').removeClass("hidden"):$('.info-container [data-stats="drive"]').addClass("hidden")})}if("uptime"==e||"running_proc"==e){var o=$('#right-side-tabs .info-container .info-list-data span[data-data="'+e+'"] a');if(o&&o.length){var l=o.parent(),c=l.text();l.html(o.text(c))}}if("warning_si"==e&&((d=$("#right-side-tabs .info-container .warning-list-data")).html(i.replace(/<(script|link|meta)\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/type='submit'/g,"formtarget='page' type='submit'").replace(/class='ui_submit/g,"class='ui_submit btn btn-default btn-xs").replace(/ui_form_end_submit" type="button"/g,'ui_form_end_submit" type="submit" formtarget="page"').replace(/ui_form_end_submit/g,"ui_form_end_submit btn-tiny")),"
"==i&&d.empty()),"extended_si"==e){var d=$("#right-side-tabs .info-container .extended-list-data"),h=i.replace(/aria-expanded="true"/gi,'aria-expanded="false"').replace(/collapse in/gi,"collapse");opened_tabs=$("#extended_sysinfo .panel .in").map(function(){h=h.replace('data-toggle="collapse" href="#'+this.id+'" aria-expanded="false" aria-controls="'+this.id+'"','data-toggle="collapse" href="#'+this.id+'" aria-expanded="true" aria-controls="'+this.id+'"'),h=h.replace('div id="'+this.id+'" class="panel-collapse collapse"','div id="'+this.id+'" class="panel-collapse collapse in"')}).promise().done(function(){d.html('
'+h);var e=$("#right-side-tabs .extended-list-data");e.find("div.panel-heading:not(#status_services-status):not(#status-virtual-server):not(#acl_logins-acl):not(#sysinfo-virtual-server):not(#quota-virtual-server):not(#bw-virtual-server)").parent().remove(),$.each(e.find("div.panel-heading .panel-title"),function(){var e=$(this).find("a"),t="true"!=$(this).find("a").attr("aria-expanded")?1:0,i=t?"+":"—";$(this).append(''+i+""),e.text(Convert.strUpFirst($.trim(e.text())))}),e.find(".panel.panel-default").detach().appendTo("#right-side-tabs #extended_sysinfo"),e.find("div.panel-body").find("img").remove(),e.find('input[type="submit"]').addClass("btn btn-default btn-xs"),e.find('input[type="submit"]').parents("form").attr("formtarget","page"),e.find('button[type="button"].ui_submit').addClass("btn btn-default btn-xs"),e.find('button[type="button"].ui_submit').parents("form").attr("formtarget","page"),$("#extended_sysinfo .panel").on("show.bs.collapse",function(){$(this).find(".panel-title-status").removeClass("margined-right-2").text("—")}).on("hide.bs.collapse",function(){$(this).find(".panel-title-status").addClass("margined-right-2").text("+")})})}$.trim($(".info-list-data").text()).length&&setTimeout(function(){$("#right-side-tabs .is-sysinfo_data").removeClass("hidden"),$("#right-side-tabs .no-sysinfo_data").addClass("hidden")},100)},101)}),setTimeout(function(){slider_check_notifications()},3e3),t&&$(t).find('h3 > a[data-refresh="system-status"]').removeClass("disabled").find("i").removeClass("fa-spin"))}})}}function information_check(){if(setTimeout(function(){information_update()},1e4),settings_side_slider_enabled&&!$("body .modal.in").length)return setInterval(function(){information_update()},6e4*settings_side_slider_background_refresh_time)}function slider_display_notification_badges(){if(settings_side_slider_enabled&&settings_side_slider_notifications_enabled){var e="right-side-tab-notification-asterix",t="faa-ring faa-slow animated-hover",i=$(".right-side-tabs .list-group-item:not(.no-notifications, .opacity-0_3)").length;favicon.badge(i),i>0?($(".right-side-tabs-toggler button i.fa-bell").addClass(t),$(".right-side-tabs-toggler button span.badge").removeClass("hidden").text(i),$("#right-side-tabs ."+e).removeClass("hidden").text(i)):($(".right-side-tabs-toggler button i.fa-bell").removeClass(t),$(".right-side-tabs-toggler button span.badge").addClass("hidden").text(0),$("#right-side-tabs ."+e).addClass("hidden").text(0))}}function slider_check_notifications(){var $current_localData_notifications={};$.each(localStorage,function(e,t){if("string"==typeof e&&e.indexOf("notifications_")>-1&&e.indexOf(v___server_hostname)>-1){var i=e.split("_")[1],a=JSON.parse(t),n=a.title,s=a.time,_=a.timestamp,r=a.message,o=a.readStatus,l=a.type,c=a.link;$current_localData_notifications[s+"_"+n]=i+"~~~~"+n+"~~~~"+s+"~~~~"+_+"~~~~"+r+"~~~~"+o+"~~~~"+l+"~~~~"+c,$('.list-group-item[id="'+i+'"][data-type="'+l+'"]').length&&$('.list-group-item[id="'+i+'"][data-type="'+l+'"] .list-group-item-heading small').text(moment.unix(s).fromNow())}});var package_message_num=Object.values($current_localData_notifications).filter(function(e){return e.indexOf("package_message")>-1}).length,csf_remote_version_num=Object.values($current_localData_notifications).filter(function(e){return e.indexOf("csf_remote_version")>-1}).length,authentic_remote_version_num=Object.values($current_localData_notifications).filter(function(e){return e.indexOf("authentic_remote_version")>-1}).length,csf_title_num=Object.values($current_localData_notifications).filter(function(e){return e.indexOf("csf_title")>-1}).length,keys=[];for(var key in $current_localData_notifications)$current_localData_notifications.hasOwnProperty(key)&&keys.push(key);$current_localData_notifications_sorted_keys=keys.sort(),$.each($current_localData_notifications_sorted_keys,function(i,v){var vx=$current_localData_notifications[v],$__id__=vx.split("~~~~")[0],$__data__title=vx.split("~~~~")[1],$__data__time=vx.split("~~~~")[2],$__data__timestamp=vx.split("~~~~")[3],$__data__message=vx.split("~~~~")[4],$__data__readStatus=vx.split("~~~~")[5],$__data__type=vx.split("~~~~")[6],$__data__link=vx.split("~~~~")[7];if("package_message"==$__data__type||"csf_remote_version"==$__data__type||"authentic_remote_version"==$__data__type||"csf_title"==$__data__type){var $__num=eval($__data__type+"_num");i+1<$__num&&($__data__readStatus=1)}$('.list-group-item[id="'+$__id__+'"][data-type="'+$__data__type+'"]').length||slider_add_notification($__id__,$__data__title,$__data__time,$__data__timestamp,$__data__message,$__data__readStatus,$__data__type,$__data__link)})}function slider_remove_all_notifications(){$.each(localStorage,function(e,t){"string"==typeof e&&e.indexOf("notifications_")>-1&&e.indexOf(v___server_hostname)>-1&&delete localStorage[e]})}function slider_mark_notification_read(e,t,i,a){var n=JSON.parse(localStorage.getItem(v___server_hostname+"-notifications_"+e+"_"+t));n&&localStorage.setItem(v___server_hostname+"-notifications_"+e+"_"+t,JSON.stringify({title:n.title,time:n.time,timestamp:n.timestamp,message:n.message,readStatus:i,type:n.type,link:n.link})),a&&slider_display_notification_badges()}function slider_mark_group_notifications_read(e){var t="";e&&(t='[data-type="'+e+'"]'),$(".right-side-tabs .list-group-item"+t+":not(.no-notifications)").each(function(){$(this).addClass("opacity-0_3"),slider_mark_notification_read($(this).attr("id"),$(this).data("type"),1,0)}).promise().done(function(){slider_display_notification_badges()})}function slider_add_notification(e,t,i,a,n,s,_,r){$(".right-side-tabs .list-group").prepend(' \t\t\t
\t\t\t
\t\t\t \t\t\t \t\t\t
'+t+" "+moment.unix(i).fromNow()+"
\t\t\t "+n+" \t\t\t
\t\t\t
\t\t\t"),$(".right-side-tabs-no-notifications").remove(),slider_display_notification_badges(),v___initial_load||slider_add_no_notifications()}function slider_add_no_notifications(){if(0===$(".right-side-tabs .list-group-item").length){var e=theme_language("theme_xhred_notification_none");$(".right-side-tabs .list-group").prepend('
'+(e?e.toUpperCase():"")+"
"),$(".right-side-tabs-no-notifications").animate({opacity:"1"},$settings_animation_left_slide_time,function(){})}setTimeout(function(){slider_display_notification_badges()},$settings_animation_left_slide_time)}function fetch_right_pane_favorites(){if("function"==typeof favorites_get){var e=favorites_get(),t=$("#right-side-tabs .no-favorites_data");$("#right-side-tabs .favorites-dcontainer .right_pane_favorites_link, #right-side-tabs .favorites-dcontainer .right_pane_favorites_num").remove(),e.length?($.each(e,function(e,t){$("#right-side-tabs .favorites-dcontainer").append(''+(e+1)+'  '+t.title+"")}),t.addClass("hidden")):t.removeClass("hidden")}}function get_right_panel_sysinfo_data(){$_____________got_rp__sys_dat=1;var e=Core.moduleAvailable("package-updates"),t=Core.moduleAvailable("proc")?"":" pointer-events-none",i=Core.moduleAvailable("disk-usage")||Core.moduleAvailable("quota")?"":" pointer-events-none",a=e?"":' class="hidden"',n=localStorage.getItem(v___server_hostname+"-sysinfo_package_message");return'
'+theme_language("theme_xhred_notification_no_data").toUpperCase()+"
"}function editor_html_init(e){CKEDITOR_BASEPATH=v___location_prefix+"/unauthenticated/js/ckeditor/",$.getScript(v___location_prefix+"/unauthenticated/js/ckeditor/ckeditor.js",function(t,i,a){/** +const browser={internet_explorer:function(){var e=0,t=/MSIE (\d+\.\d+);/.test(navigator.userAgent),a=!!navigator.userAgent.match(/Trident\/7.0/),n=navigator.userAgent.indexOf("rv:11.0");return t&&(e=new Number(RegExp.$1)),-1!=navigator.appVersion.indexOf("MSIE 10")&&(e=10),a&&-1!=n&&(e=11),e},safari:function(e){var t=window.navigator.userAgent,a=(!!t.match(/iPad/i)||!!t.match(/iPhone/i))&&!!t.match(/WebKit/i)&&!t.match(/CriOS/i)&&!t.match(/OPiOS/i),n=navigator.vendor&&navigator.vendor.indexOf("Apple")>-1&&navigator.userAgent&&!navigator.userAgent.match("CriOS");return e?a:n}},Convert={arrFlip:function(e){var t,a={};for(t in e)e.hasOwnProperty(t)&&(a[e[t]]=t);return a},uriDecodeComponent:function(e,t){var a,n,i,r=new String,o=0;if(void 0===t&&(t=0),a=e?e.split(/(%(?:d0|d1)%.{2})/):[],$.isEmptyObject(a))return e;for(n=a.length;o":">",'"':""","'":"'","=":"="};return String(e).replace(/[&<>"'=]/g,function(e){return t[e]})},htmlUnEscape:function(e){var t=[["amp","&"],["apos","'"],["#x27","'"],["#x2F","/"],["#39","'"],["#47","/"],["#61","="],["lt","<"],["gt",">"],["nbsp"," "],["quot",'"']];if(e)for(var a=0,n=t.length;a").html(e).text()},pathnamePopLast:function(e){var t=~e.indexOf("%2F")?"%2F":"/",a=e.split(t);return a.pop(),a.join(t)||"/"},strUpFirst:function(e){return e.charAt(0).toUpperCase()+e.slice(1).toLowerCase()},strUpInitial:function(e){return e.length?this.strUpFirst(e.toLowerCase()):e}},Core={fnExtend:function(e,t){window[e]=function(e){return function(){e(),t()}}(window[e])},linkSameOrigin:function(e){return e.attr("href")&&(e.attr("href").match("^http:")||e.attr("href").match("^https:")||e.attr("href").match("^ftp:"))&&URI(e.attr("href")).hostname()!=v___location_hostname||e.attr("data-href")&&(e.attr("data-href").match("^http:")||e.attr("data-href").match("^https:")||e.attr("data-href").match("^ftp:"))&&URI(e.attr("data-href")).hostname()!=v___location_hostname?0:1},moduleAvailable:function(e){return void 0!=get_server_data(e)?Test.true(get_server_data(e)):$.inArray(e,get_server_data("available-modules"))>-1},curModuleFileQuery:function(e,t,a){return $('body[class*="'+e+'"]').length&&v___location_file==t&&v___location_query&&-1!==v___location_query.indexOf(a)},curModuleFile:function(e,t){return $('body[class*="'+e+'"]').length&&v___location_file==t},curModule:function(e){return $('body[class*="'+e+'"]').length}},HTML={label:{temperature:function(e,t){var a="bg-semi-transparent";return t?e<=30?a:e>30&&e<=60?a:e>60&&e<=80?"bg-warning":e>80?"bg-danger":"":e<=86?a:e>86&&e<=140?a:e>140&&e<=176?"bg-warning":e>176?"bg-danger":""},rpm:function(e){return e<=2*rpmFactor?bg_semi_tr:e>2*rpmFactor&&e<=3*rpmFactor?bg_semi_tr:e>3*rpmFactor&&e<=4*rpmFactor?bg_warn:e>4*rpmFactor?bg_danger:""}},template:{accordion:function(e,t,a,n){for(var i='
',r=0;r
'+a[r]+"
"}return i+=""},page_content_preloader:function(e){return'
 '+e+'
'},reauthenticate:function(e){return'

'+theme_language("theme_xhred_session_expired")+"

"+theme_language("theme_xhred_session_expired_details")+'
'+theme_language("theme_xhred_tooltip_switch_user")+"
"}}},load={script:function($script,$css,callBack){var head=$("head"),body=$("body"),callBack="object"==typeof callBack&&callBack,css=($css&&1!==$css?$css:$script)+"."+v___source_type+".css?"+v___theme_version_plain,js=$script+"."+v___source_type+".js?"+v___theme_version_plain;Test.arrContains(o___gotten_scripts,js)||($css&&head.append(''),$.getScript(js,function(data,textStatus,jqxhr){o___gotten_scripts.push(js),callBack&&$.each(callBack,function(i2,v2){eval(v2)})}))}},page={handle:{content:{preloader:function(e){var t=this,a=$("#content"),n=$(".container-fluid"),i=$(".container-fluid-loading"),r=$("span[data-main_title]").text(),o=HTML.template.page_content_preloader(r);i.length?(i.remove(),n.removeClass("invisible"),a.removeClass("progressing"),setTimeout(function(){progress.progress()&&progress.end()},100)):(a.addClass("progressing").prepend(o),n.addClass("invisible")),e&&setTimeout(function(){t.preloader()},e)}}},render:{content:{filter:{init:function(e){var t=this,a="container-fluid .nav.nav-tabs",n=$(".__page .dataTables_filter"),i=$(".__page .panel-filter"),r=".panel-filter .panel.panel-default",o=$("body");(n.length||i.length)&&setTimeout(function(){$(".btn-filter-top-right").length||$(".btn-accordion-filter").length||($("#headln2r .btn-group a").addClass("pull-left").attr("style",""),$("#headln2r .btn-group").prepend(''+(e?'':""))),$(".btn-filter-gl").data("title",theme_language("theme_xhred_datatable_filter")),$(".btn-toggle-accordions").data("title",theme_language("theme_xhred_toggle_accordions")),settings_button_tooltip&&$(".btn-group").tooltip({selector:'a[data-toggle="tooltip"][data-skip]',container:"body",delay:{show:800,hide:30}}),$("."+a).length&&(e&&o.on("hide.bs.tab",'a[data-toggle="tab"]',function(e){t.clear()}),o.on("shown.bs.tab",'a[data-toggle="tab"]',function(e){var n=$(e.target).parent(".active");n.data("filter-value")?$(".dataTable-mirror").val(n.data("filter-value")).trigger("keyup"):$(".dataTable-mirror").val("").trigger("keyup"),t.visibility("btn-filter-top-right","btn-accordion-filter","btn-toggle-accordions",a)})),o.undelegate(r,"shown.bs.collapse.config hidden.bs.collapse.config"),o.on("shown.bs.collapse.config hidden.bs.collapse.config",r,function(e){setTimeout(function(){var e=$(".container-fluid").find(".btn-toggle-accordions").find("i");i.find(".panel-collapse").length===i.find(".panel-collapse.in").length?e.addClass("fa-toggle-switch text-light"):e.removeClass("fa-toggle-switch text-light")},10)});var n=$(".btn-toggle-accordions");e?$(i).find('a[data-toggle="collapse"]').on("click",function(e){$.trim($(".dataTable-mirror").val()).length&&page.render.content.filter.clear(),e.originalEvent&&$(".btn-toggle-accordions").find("i").removeClass("fa-toggle-switch text-light")}):$(".dataTables_filter").hide(),$(".filter_mirror_clear").mousedown(function(e){$(e.target).is(".filter_mirror_clear")&&t.clear()}),$(".btn-filter-top-right, .btn-accordion-filter").click(function(e){!$(e.target).is("input")&&$(this).find("label").slideToggle(300,function(){$(this).find("input").focus()})}),n.click(function(e){var a=$(this).find(".fa"),n=$(this).find(".fa-toggle-switch").length?1:0,i=$(".__page .panel-filter:visible");0===n?(i.find(".panel-collapse.in").length,i.find(".panel-collapse").length,i.find(".panel-collapse:not(.in)").filter(function(){$(this).removeData("bs.collapse").collapse({parent:!0,toggle:!1}).collapse("show").removeData("bs.collapse")})):i.find(".panel-collapse.in").filter(function(){"true"!==$(this).attr("aria-static")&&$(this).collapse("hide")}),a.toggleClass("fa-toggle-switch text-light"),void 0!==e.originalEvent&&$(".btn-accordion-filter input").val().length&&t.clear()}),$(".dataTable-mirror").keydown(function(e){76==e.keyCode&&e.ctrlKey&&(e.preventDefault(),e.stopPropagation(),t.clear())}).keyup(function(t){var i=$(this).val(),o=$(".__page .panel-filter:visible");if(e)if(i){$.support.transition&&($.support.transition=!1),n.find(".fa-toggle-switch-off:not(.fa-toggle-switch)").trigger("click"),o.find(".panel tr:not([data-empty-row]):not(.hidden-skip)").addClass("hidden-forged"),o.find('.panel tbody tr:containsi("'+i+'")').removeClass("hidden-forged"),$.each($(r=" .hidden-dependent-skip"),function(e){$(this).hasClass("hidden-forged")?$(this).nextAll(".hidden-skip").addClass("hidden-forged"):$(this).nextAll(".hidden-skip").removeClass("hidden-forged")});var s=$(".__page .panel-filter:visible");$.each(s.find(".panel"),function(){var e=$(this).find("tr").first().find("td").length;rows=$(this).find("tbody").find("tr:not([data-empty-row])"),hidden_rows=$(this).find("tbody tr:not([data-empty-row]):hidden");var t=$(this).find("tbody tr[data-empty-row]");rows.length===hidden_rows.length?t.length?$(this).find("tbody").find("var[data-query-str]").text(i):$(this).find("tbody").append(''+theme_language("theme_xhred_filter_content_no_matches_query").replace("%str",""+i+"")+""):t.remove()})}else n.find(".fa-toggle-switch").trigger("click"),o.find(".panel tr").removeClass("hidden-forged"),o.find(".panel tr[data-empty-row]").remove(),!$.support.transition&&($.support.transition={end:"webkitTransitionEnd"});else{$("."+a).length?($(".nav-tabs li.active").data("filter-value",i),$(".active .dataTables_filter input").val(i).trigger("keyup")):$(".dataTables_filter input").val(i).trigger("keyup")}var l=".btn-filter-top-right span, .btn-accordion-filter span",d=".btn-filter-top-right i, .btn-accordion-filter i";$.trim($(this).val()).length>0?($(l).removeClass("text-lighter"),$(d).addClass("text-danger")):($(l).addClass("text-lighter"),$(d).removeClass("text-danger"))}),$(".btn-filter-top-right input, .btn-accordion-filter input").blur(function(e){$(this).parent("label").slideToggle(0)}),t.visibility("btn-filter-top-right","btn-accordion-filter","btn-toggle-accordions",a)},0)},visibility:function(e,t,a,n){var i=$("."+e+", ."+t+", ."+a);$("."+n).length&&($(".active .dataTables_filter").length||$(".active #conf-_-gr").length)||!$("."+n).length&&($(".dataTables_filter").length||$("#conf-_-gr").length)?i.show():i.hide()},clear:function(){var e=$(".btn-filter-top-right .dataTable-mirror, .btn-accordion-filter .dataTable-mirror"),t=$(".btn-filter-top-right input, .btn-accordion-filter input");e.val("").trigger("keyup"),t.is(":visible")&&t.trigger("blur"),$(".panel-filter").find("tr[data-empty-row]").remove(),!$.support.transition&&($.support.transition={end:"webkitTransitionEnd"})}}},module_config:function(e){var t=v___page_container.find(".table-title:visible").parents(".table:visible"),a=t.parent("div.table-responsive:visible"),n=t.find("tbody > tr > td > table:visible"),i=0,r=1;$.each(n.find("tr"),function(e,t){var a=$(this);a.find(".col_header").length?(i+=1,a.attr("tj",i+":0")):a.attr("tj",i+":1")}).promise().done(function(){var n=$('tr[tj$=":0"]').map(function(){return $.trim($(this).text())});0===n.length&&(n.push(theme_language("theme_xhred_config_configurable_options")),r=0);for(var i=[],o=1;o tr[tj="0:1"]')).map(function(){return this.outerHTML.replace(/\n/g,"")}).get().join("\n"),s+="",i[o-1]=s}var l="conf-_-gr";a.replaceWith(HTML.template.accordion(l,n,i,r?e:[2])),page.render.content.filter.init(1),$(".container-fluid > .panel > .panel-body").on("hide.bs.collapse show.bs.collapse","#conf-_-gr",function(){$(".module-help .close-popover-trigger").trigger("click")})})}}},pjax={clear:{modules:function(e){"csf"===v___module&&"function"==typeof __c_____undel&&__c_____undel(e.url),v___module===v___module_file_manager&&"function"==typeof __f_____undel&&(jsPanel.closeChildpanels("body"),__f_____undel()),"mysql"!==v___module&&"postgresql"!==v___module||"function"!=typeof __sql_____undel||__sql_____undel(),"syslog"===v___module&&"number"==typeof refreshTimer&&clearInterval(refreshTimer)}}},progress={progress:function(){return"object"==typeof NProgress&&settings_loader_top},start:function(){this.progress()&&NProgress.start()},end:function(){this.progress()&&NProgress.done()},configure:function(){this.progress()&&NProgress.configure({showSpinner:!1,trickleRate:.09,trickleSpeed:100})}},session={reauthenticate:function(){var e="session-reauthenticate";!$("."+e).length&&$.ajax({type:"GET",url:v___location_prefix+"/index.cgi",data:!1,dataType:"text",success:function(t){var a=Test.strContains(t,v___page_signin_form+" pam_");if(!Test.strContains(t,v___page_signin_banner)){var n=$(t).find('input[name="twofactor"]').length,i="aside, aside .navigation, .form-control.sidebar-search, .container-fluid, .right-side-tabs, .right-side-tabs-toggler",r="pointer-events-none bg-filter-grayscale-opacity50 disabled",o=$("body").find(".-shell-port-"),s='';$(i).addClass(r),$("body").append(HTML.template.reauthenticate(e)),navigation_render_end(),navigation_detect(),reset_switch_position(),despinnerfy_buttons(),theme_shell_unlock(),theme_shell_close(o),n||$("."+e).find("[data-container-twofactor]").remove(),$("."+e).find("form").on("submit",function(n){function o(t,a,n,o){if(a){var s="theme_xhred_session_failed"===theme_language(a,1)?theme_language("theme_xhred_session_failed_password"):a;s.endsWith(".")||(s+="."),s=s.replace(/\n/gm,""),g.text(s).addClass("text-danger").removeClass("loading-dots"),c.removeClass("disabled btn-transparent").addClass("btn-success");var l=$(o).find(".alert[data-twofactor]").length?$("."+e).find('input[name="twofactor"]'):$("."+e).find('input:not([name="user"]):not([name="twofactor"])');l.addClass("faa-horizontal animated"),l[0].focus(),setTimeout(function(){l.removeClass("faa-horizontal animated")},1e3)}else t&&!n&&(g.text(theme_language("theme_xhred_signing_success")).removeClass("text-danger").removeClass("loading-dots").addClass("text-success"),f.removeClass("fa-lock").addClass("fa-unlock fa-rotate-180 fa-flip-horizontal"),p.text(theme_language("theme_xhred_session_unlocked")),v___available_session=1,setTimeout(function(){v___available_session=1,$("."+e).remove(),$(i).removeClass(r)},1800))}n.preventDefault(),n.stopImmediatePropagation(),a&&$("."+e).find('form input[name="user"]').attr("name","answer").val(get_server_data("user"));var l=$(t).find("form").append(s).attr("action"),d=$("."+e).find("form").serialize(),c=$("."+e).find("[data-submit]"),f=$("."+e+"-header-icon i"),p=$("."+e+"-header-title h3"),g=$("."+e+"-header-title small");c.hasClass("disabled")||(g.text(theme_language("theme_xhred_signing_in")+"").removeClass("text-danger").addClass("loading-dots"),c.addClass("disabled btn-transparent").removeClass("btn-success"),$.ajax({type:"GET",url:l,data:d,dataType:"text",success:function(t){var n=$(t).find(".switch-toggle").text().length,i=$(t).find(".alert span").text(),r=i.length;if(a){var d=$(t).find("form").append(s),c=(d.find('input[name="answer"]').val($("."+e).find('input[type="password"]').val()),d.serialize());$.ajax({type:"GET",url:l,data:c,dataType:"text",success:function(e){n=$(e).find(".switch-toggle").text().length,i=$(e).find(".alert span").text(),r=i.length,o(n,i,r,e)}})}else o(n,i,r,t)}}))})}}})}},Test={true:function(e){return!/^(false|0)$/i.test(e)&&!!e},false:function(e){return/^(false|0)$/i.test(e)||!e},numeric:function(e){return Number(parseFloat(e))==e},string:function(e){return"string"==typeof e||e instanceof String?1:0},strContains:function(e,t){return"string"==typeof e&&!!~e.indexOf(t)},arrContains:function(e,t,a){return void 0===a&&(a=0),e=$.inArray(t,e),a?e:-1=n}},time={tictac:function(e){var t="convertible-timestamp-full",a=$("[data-"+t+"]");a.parent().contents().filter(function(){return 3===this.nodeType}).remove(),a.data(t,parseInt(a.data(t))+1),"undefined"!=typeof moment&&a.text(moment.unix(a.data(t)).format(settings_window_replaced_timestamp_format_full)),!e&&setInterval(this.tictac,1e3)}},theme={update:function(e){var t=$("body").add($(".__page")),a=$("aside").add($("#right-side-tabs")).add($(".__page")),n=1===e?"-release":"-beta";t.addClass("pointer-events-none"),set_onbeforeunload_status(1,0),a.addClass("bg-filter-blur-grayscale-opacity50"),theme_messenger(''+theme_language("theme_xhred_git_patch_initiated")+" "+theme_language("theme_xhred_global_please_wait")+'   ',1800,"info","themeUpgrade",0),$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-update=1&xhr-update-type="+n,data:!1,dataType:"json",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:e[0]&&e[0].success?(theme_messenger(''+e[0].success,4,"success","themeUpgrade"),slider_mark_group_notifications_read("authentic_remote_version"),set_server_tmp_var("goto",v___location_prefix+"/sysinfo.cgi"),setTimeout(function(){theme_reload()},2e3)):e[0]&&e[0].no_git?(theme_messenger(''+e[0].no_git,20,"warning","themeUpgrade"),a.removeClass("bg-filter-blur-grayscale-opacity50"),t.removeClass("pointer-events-none")):(theme_messenger(''+theme_language("theme_xhred_git_patch_update"),20,"error","themeUpgrade"),a.removeClass("bg-filter-blur-grayscale-opacity50"),t.removeClass("pointer-events-none"))},error:function(e){theme_messenger(''+theme_language("theme_xhred_git_patch_update"),20,"error","themeUpgrade"),a.removeClass("bg-filter-blur-grayscale-opacity50"),t.removeClass("pointer-events-none")},complete:function(e){set_onbeforeunload_status(0,0)}})},version:function(){return v___theme_version}},quirks={active_element:function(){return document.activeElement&&$(document.activeElement).is("body")?v___page_activeElement:document.activeElement}};function addmodule(e,t){return adduser(e,t),!1}function addgroup(e,t){return adduser(e,t),!1}function adduser(e,t){return $v__mpp__g_olt=0,$('.mppopup input[data-role="tagsinput"]').tagsinput("add",e),setTimeout(function(){v__mpp__ml_t__e||($(".mppopup_filter_input").val(""),$(".mppopup_filter_input").focus().trigger("keyup")),v__mpp__ml_t__e=0},440),!1}function parentdir(e){fileclick(e,"1"),$v__mpp__g_gp=1}function fileclick(e,t){$v__mpp__g_ol=e,$v__mpp__g_olt=t}function select(e,t){return $data_mppopup_value.val(e),!1}function filter_match(e,t,i){t="",i=i||!1;var a=function(e){e=e||!1;var a=$(".mppopup table tbody tr");if(a.length>0)for(var n=0;n0)for(var s=0;s]*>/gi,""))&&(l=l.toLowerCase()).match(e.toLowerCase())&&(n[s].style.display="")}}}else a(!0)}function tab_action(e,t){document.forms[0]&&document.forms[0][e]&&(document.forms[0][e].value=t)}function hidden_opener(e,t){0===$("#"+e).parent(".opener_container").length&&$("#"+e).wrapAll('
'),$("#"+e).hasClass("opener_shown")?($("#"+e).parent(".opener_container").prev(".opener_extra_container.opener_extra_container_style").find(".opener_extra_container_a_style").removeClass("opener_container_opened").addClass("opener_container_closed"),$("#"+e).parent(".opener_container").prev("p").find(".opener_extra_container_a_style").removeClass("opener_container_opened").addClass("opener_container_closed"),$("#"+e).parent(".opener_container").parent("tr").prev("tr").find("td a:nth-child(1)").removeClass("opener_container_opened").addClass("opener_container_closed"),$("#"+e).parent(".opener_container").show().find("#"+e).slideUp($settings_animation_tabs_slide_time,function(){$("#"+e).removeClass("opener_shown").addClass("opener_hidden").parent('.opener_container:not(".opener_sub_container")').hide(),$("#"+e).parent(".opener_sub_container").removeClass("margined-top")})):($("#"+e).parent(".opener_container").prev(".opener_extra_container.opener_extra_container_style").find(".opener_extra_container_a_style").addClass("opener_container_opened").removeClass("opener_container_closed"),$("#"+e).parent(".opener_container").prev("p").find(".opener_extra_container_a_style").addClass("opener_container_opened").removeClass("opener_container_closed"),$("#"+e).parent(".opener_container").parent("tr").prev("tr").find("td a:nth-child(1)").addClass("opener_container_opened").removeClass("opener_container_closed"),$("#"+e).slideUp(0).removeClass("opener_hidden").addClass("opener_shown").parent(".opener_container").slideDown($settings_animation_tabs_slide_time).find(".opener_shown").slideDown($settings_animation_tabs_slide_time),$("#"+e).parent(".opener_sub_container").addClass("margined-top"))}function select_mode(e){var t=$("aside form").length;for(i=0;i"+t)})}function g__text_breaker(e,t){if(e.val()){var i=e.val().split(t),a="";$.each(i,function(e,i){i&&(a+=t+i+"\n")}),e.val(a)}}function extract_content(e,t,i,a){if(!e)return 0;var n=a?0:t.length,s=a?i.length:0,_=e.indexOf(t),r=e.indexOf(i,_),o=-1===r?e.length:r;return e.slice(_+n,o+s)}function get_form_data(e){return(e.attr("enctype")&&e.attr("enctype").indexOf("form-data")>-1?0:1)?e.serialize():new FormData(e[0])}function page_extended(){return"settings-upload.cgi"===v___location_file||"settings-upload_save.cgi"===v___location_file||"settings-editor_read.cgi"===v___location_file||"settings-editor_write.cgi"===v___location_file||"settings-favorites_save.cgi"===v___location_file?1:0}function get_bundle_csf(){var e=$("head"),t=v___server_extensions_path+"/csf/csf."+v___source_type+".css?"+v___theme_version_plain,i=v___server_extensions_path+"/csf/csf."+v___source_type+".js?"+v___theme_version_plain;Test.arrContains(o___gotten_scripts,i)||(e.append(''),$.getScript(""+i,function(e,t,a){o___gotten_scripts.push(i)}))}function get_bundle_file_manager(e){$("head");var t=v___server_extensions_path+"/file-manager/file-manager."+v___source_type+".js?"+v___theme_version_plain;Test.arrContains(o___gotten_scripts,t)||$.getScript(""+t,function(i,a,n){o___gotten_scripts.push(t),e&&___f__tw()})}function get_bundle_sql(){$("head");var e=v___server_extensions_path+"/sql."+v___source_type+".js?"+v___theme_version_plain;Test.arrContains(o___gotten_scripts,e)||$.getScript(""+e,function(t,i,a){o___gotten_scripts.push(e)})}function theme_open_new_tab(e){var e=Test.strContains(e,v___location_origin)?e:v___location_origin+(e.startsWith("/")?e:"/"+e);$("body").append(''),$("#theme_open_new_tab").simulateUserClick().remove()}function theme_to_new_tab(){$.each($('a[href*="virtualmin-awstats/view.cgi?config="], .virtualmin-awstats a[href*="view.cgi?config="], a.ui_link_replaced[href*="search.cgi/webminlog"] '),function(){$(this).addClass("--to-new-tab")})}function theme_reload(){window.location.href=location.origin+v___location_prefix}function theme_update_notice(e){0===$("#update_notice").length&&$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-get_update_notice=1",success:function(t){if(Test.strContains(t,v___page_signin_form))v___available_session=0;else{$("body").prepend(t);var i=$("#update_notice");e&&i.addClass("r"),i.modal("show")}},error:function(e){}})}function theme_title_generate(){if(v___available_navigation){var e=$("#headln2c span[data-main_title]").text()||$('.panel-heading font[size="+2"]').text();if($('li.sub_active a[href*="'+v___module_file_manager+'"]').length){var t=v___module_file_manager;$('body[class*="'+t+'"] .active form input#path').val()?document.title=Convert.uriDecodeComponent($('body[class*="'+t+'"] .active form input#path').val())+" - "+$("li.sub_active a").text()+" — "+v___title_initial:document.title=$("li.sub_active a").text()+" — "+v___title_initial}else($t_uri_virtualmin||$t_uri_cloudmin)&&$("aside select option:checked").text()&&$("aside select option:checked").text().length?e&&e.length?$("#webmin_search_form").parent("li").prevAll().has(".sub_active, .current-large").length?document.title=$("aside select option:checked").text()+" - "+e+" — "+v___title_initial:document.title=e+" — "+v___title_initial:document.title=get_navigation_module_name()+" — "+v___title_initial:$t_uri_webmail?e&&e.length?document.title=e+" - Mail — "+v___title_initial:document.title=get_navigation_module_name()+" — "+v___title_initial:e&&e.length?document.title=e+" — "+v___title_initial:document.title=v___title_initial;var i=$(".right-side-tabs .list-group-item:not(.no-notifications, .opacity-0_3)").length;settings_side_slider_enabled&&settings_side_slider_notifications_enabled?titlenotifier.set(i):titlenotifier.set(0)}}function navigation_clear(){var e=".navigation";$(e+" li.has-sub").removeClass("sub_active"),$(e+" > li:not('.has-sub')").removeClass("sub_active").find("span.current-large").remove(),$(e+" > li > ul.sub > li").removeClass("sub_active").find("span.current").remove(),$(e+" > li.has-sub").removeClass("active"),$(e+" > li > ul.sub").hide(),$(e+" > li > a > i.fa.fa-folder-open-o").removeClass("fa-folder-open-o")}function navigation_detect(e,t){if(Test.arrContains(["webmin_search.cgi"],v___location_file))navigation_clear();else{if(void 0===t){if(v___blocked_navigation)return;var i=1,a=$('.navigation a[href*="'+v___location_path+'"]:not([data-parent-hidden]):first');$('.navigation a[href^="'+v___location_resource+'"]:not([data-parent-hidden]):first').length?(e=v___location_resource,i=0):Test.strContains(v___location_file,"cgi")&&a.length&&(e=a.attr("href"),i=0);var e=e?e.replace("/edit_users.cgi","/list_users.cgi").replace("/edit_user.cgi","/list_users.cgi").replace("/edit_alias.cgi","/list_aliases.cgi").replace("/edit_database.cgi","/list_databases.cgi").replace("/save_database.cgi","/list_databases.cgi").replace("/edit_script.cgi","/list_scripts.cgi").replace("/script_form.cgi","/list_scripts.cgi"):e;i&&"config.cgi"===v___location_file&&(e=$t_uri_virtualmin?v___location_prefix+"/config.cgi?virtual-server":$t_uri_cloudmin?v___location_prefix+"/config.cgi?server-manager":v___location_prefix+"/"+v___location_query+"/");var n=$t_uri_webmin||$t_uri_usermin;if(!e&&n)if(Test.strContains(v___location_file,".cgi")&&!Test.strContains(v___location_file,"sysinfo.cgi"))e=v___location_path.replace(v___location_file,""),page_extended()&&(e=v___location_prefix+"/webmin/");else if(!e){var s=new RegExp("^"+v___location_prefix,"i");e=get_server_data("data-uri").replace(s,"").split("/").filter(function(e){return 0!==e.length})[0],e=v___location_prefix+"/"+e}targeted_menu_link=$('.navigation a[href^="'+e+'"]:not([data-parent-hidden]):first'),targeted_menu_link.length&&navigation_clear()}else targeted_menu_link=$('.navigation a[href^="'+e+'"]:not([data-parent-hidden]):first'),targeted_menu_link.length&&navigation_clear();targeted_menu_link.parent("li:not(.menu-exclude):not(.user-link)").addClass("sub_active").append('').parent("ul.sub").show().parent("li:not(.menu-exclude):not(.user-link)").prev("li").addClass("active")}}function navigation_render_start(){$(".mCSB_container, .mCSB_dragger").css("top","0"),!$("#_menu_loader").length&&$("body ul.navigation").before(''),setTimeout(function(){$("#loader-close-sm").removeClass("hidden"),$("#loader-close-sm i").trigger("click")},4200),$("body aside .mCSB_scrollTools, body ul.navigation, body ul.user-links").css("visibility","hidden"),$("aside ul.user-html").addClass("invisible")}function navigation_render_end(){$("aside ul.user-html").removeClass("invisible"),$("body aside .mCSB_scrollTools, body ul.navigation, body ul.user-links").css("visibility","visible"),$("#_menu_loader").remove(),navigation_init_select(),navigation_select_label(),theme_to_new_tab()}function navigation_display(){"none"==$("aside").css("transform")&&($("aside").transition({x:settings_leftmenu_width},2.5*$settings_animation_left_slide_time,function(){$(".__logo")&&"none"==$(".__logo").css("transform")&&!$(".mobile-menu-toggler:visible").length&&$(".__logo").transition({y:"-140px"},1.5*$settings_animation_left_slide_time)}),setTimeout(function(){$(".switch-toggle").css("display","table")},1))}function navigation_hide(){var e="mobile-menu-toggler";"function"==typeof jQuery().transition&&$("."+e+":visible").length&&$("."+e).attr("style")&&-1==$("."+e).attr("style").indexOf("ease")&&($(".__logo")&&$(".__logo").transition({y:0},1.5*$settings_animation_left_slide_time),$("aside, ."+e).transition({x:0},$settings_animation_left_slide_time,function(){$("."+e).removeClass("selected").find("button").removeClass("btn-primary").addClass("btn-primary"),$(".switch-toggle").css("display","none"),$("aside").addClass("hidden-xs")}))}function navigation_init_select(){$(".form-control.sidebar-search").is(":focus")||$.each($("aside select > option"),function(){var e=$(this).text().match(/^\s{0,4}/)[0].length,t=$(this).text();settings_leftmenu_vm_cm_dropdown_icons&&(4===e&&-1===t.indexOf("↱")?$(this).html("    â†± "+t.replace(/\s/g,"")):2===e&&-1===t.indexOf("↴")&&$(this).html("  â†´ "+t.replace(/\s/g,"")))}).promise().done(function(){var e=$("aside select");e.removeAttr("id"),e.length&&(e.removeAttr("onchange disabled"),!!e.data("select2")&&e.select2("destroy"),e.unbind("select2:select"),e.select2({minimumResultsForSearch:$.browser.mobile?-1:5}),setTimeout(function(){var t=e.data("select2");t&&(t.open(),t.close())},1),e.on("select2:select",function(e){"dom"===e.currentTarget.name?(get_navigation_menu_virtualmin(e.currentTarget.value),get_default_virtualmin_content(e.currentTarget.value)):"sid"===e.currentTarget.name&&(get_navigation_menu_cloudmin(e.currentTarget.value),get_default_cloudmin_content(e.currentTarget.value))}),e.on("select2:open",function(e){$.each($("select > option"),function(){if($(this).attr("style")&&$(this).attr("style").indexOf("italic")>-1){var e=$(this);setTimeout(function(){$("body").find('li[id$="'+e.attr("value")+'"]').attr("style","color: #"+(v___theme_night_mode_enabled?"9a5150":"e97471")+" !important;")},1)}})}),1===$("aside select option").length&&($(".select2 span").css("cursor","default"),$(".select2 .select2-selection__arrow").remove(),e.on("select2:open",function(){$(".select2-container .select2-dropdown").css("opacity","0")})),$.each($("aside select > option"),function(){$(this).attr("style")&&$(this).attr("style").indexOf("italic")>-1&&$(".select2-selection > .select2-selection__rendered").text().trim()==$(this).text().trim()&&$(".select2-selection > .select2-selection__rendered").attr("style","color: #"+(v___theme_night_mode_enabled?"9a5150":"e97471")+" !important;")}))})}function navigation_trigger(e,t){return e&&(e=e.replace(/([?&])(_pjax|_)=[^&]*/g,"")),1===t&&(e=e.replace("?"+$__theme_navigation,"").replace("&"+$__theme_navigation,"")),2===t&&(Test.strContains(e,$__theme_navigation)||(e=Test.strContains(e,"?")?e+"&"+$__theme_navigation:e+"?"+$__theme_navigation)),e}function navigation_init_autocomplete(e,t){if("c"!=e||($(".autocomplete-suggestions").remove(),$(".form-control.sidebar-search").removeAttr("disabled"),$(".form-control.sidebar-search").autocomplete("dispose"),$(".form-control.sidebar-search").val(""),!t)){var i={};$.each($('li:not(.menu-exclude):not(.user-link) > ul[id^="global_"].sub > li:not(.menu-exclude):not(.user-link) > a'),function(e,t){i[("/"==$(this).attr("href").substring(0,1)?"":"/")+$(this).attr("href")]=$.trim($(this).text())}),$('li > a[target="page"][data-href="/virtual-server/index.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/sysinfo.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/virtual-server/pro/history.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/mailbox/list_folders.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/mailbox/list_ifolders.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/mailbox/list_addresses.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/filter/edit_forward.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/filter/edit_auto.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/filter/edit_auto.cgi"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/filter/"], li:not(.menu-exclude):not(.user-link) > a[target="page"][data-href="/mailbox/edit_sig.cgi"]').each(function(e,t){i[$(this).attr("data-href")]=$.trim($(this).text())});var a=$.map(i,function(e,t){if("undefined"!=t)return{value:e,url:t,data:{category:get_navigation_module_name()}}}),n={};v___location_path!=v___location_prefix+"/custom/"&&v___location_path!=v___location_prefix+"/custom/index.cgi"&&v___location_path!=v___location_prefix+"/backup-config/"&&v___location_path!=v___location_prefix+"/backup-config/index.cgi"&&v___location_path!=v___location_prefix+"/usermin/"&&v___location_path!=v___location_prefix+"/usermin/index.cgi"&&v___location_path!=v___location_prefix+"/webmin/"&&v___location_path!=v___location_prefix+"/webmin/index.cgi"&&v___location_path!=v___location_prefix+"/acl/"&&v___location_path!=v___location_prefix+"/acl/index.cgi"&&v___location_path!=v___location_prefix+"/init/"&&v___location_path!=v___location_prefix+"/init/index.cgi"&&v___location_path!=v___location_prefix+"/mount/"&&v___location_path!=v___location_prefix+"/mount/index.cgi"&&v___location_path!=v___location_prefix+"/quota/"&&v___location_path!=v___location_prefix+"/quota/index.cgi"&&v___location_path!=v___location_prefix+"/fsdump/"&&v___location_path!=v___location_prefix+"/fsdump/index.cgi"&&v___location_path!=v___location_prefix+"/inittab/"&&v___location_path!=v___location_prefix+"/inittab/index.cgi"&&v___location_path!=v___location_prefix+"/logrotate/"&&v___location_path!=v___location_prefix+"/logrotate/index.cgi"&&v___location_path!=v___location_prefix+"/mailcap/"&&v___location_path!=v___location_prefix+"/mailcap/index.cgi"&&v___location_path!=v___location_prefix+"/pam/"&&v___location_path!=v___location_prefix+"/pam/index.cgi"&&v___location_path!=v___location_prefix+"/proc/"&&v___location_path!=v___location_prefix+"/proc/index_tree.cgi"&&v___location_path!=v___location_prefix+"/proc/index_user.cgi"&&v___location_path!=v___location_prefix+"/proc/index_size.cgi"&&v___location_path!=v___location_prefix+"/proc/index_cpu.cgi"&&v___location_path!=v___location_prefix+"/proc/index_tree.cgi"&&v___location_path!=v___location_prefix+"/proc/index_search.cgi"&&v___location_path!=v___location_prefix+"/cron/"&&v___location_path!=v___location_prefix+"/cron/index.cgi"&&v___location_path!=v___location_prefix+"/syslog/"&&v___location_path!=v___location_prefix+"/syslog/index.cgi"&&v___location_path!=v___location_prefix+"/useradmin/"&&v___location_path!=v___location_prefix+"/useradmin/index.cgi"&&v___location_path!=v___location_prefix+"/apache/"&&v___location_path!=v___location_prefix+"/apache/index.cgi"&&v___location_path!=v___location_prefix+"/bind8/"&&v___location_path!=v___location_prefix+"/bind8/index.cgi"&&v___location_path!=v___location_prefix+"/dhcpd/"&&v___location_path!=v___location_prefix+"/dhcpd/index.cgi"&&v___location_path!=v___location_prefix+"/dovecot/"&&v___location_path!=v___location_prefix+"/dovecot/index.cgi"&&v___location_path!=v___location_prefix+"/ldap-server/"&&v___location_path!=v___location_prefix+"/ldap-server/index.cgi"&&v___location_path!=v___location_prefix+"/virtualmin-nginx/"&&v___location_path!=v___location_prefix+"/virtualmin-nginx/index.cgi"&&v___location_path!=v___location_prefix+"/fetchmail/"&&v___location_path!=v___location_prefix+"/fetchmail/index.cgi"&&v___location_path!=v___location_prefix+"/mysql/"&&v___location_path!=v___location_prefix+"/mysql/index.cgi"&&v___location_path!=v___location_prefix+"/mysql/edit_dbase.cgi"&&v___location_path!=v___location_prefix+"/postgresql/"&&v___location_path!=v___location_prefix+"/postgresql/index.cgi"&&v___location_path!=v___location_prefix+"/postgresql/edit_dbase.cgi"&&v___location_path!=v___location_prefix+"/postfix/"&&v___location_path!=v___location_prefix+"/postfix/index.cgi"&&v___location_path!=v___location_prefix+"/procmail/"&&v___location_path!=v___location_prefix+"/procmail/index.cgi"&&v___location_path!=v___location_prefix+"/proftpd/"&&v___location_path!=v___location_prefix+"/proftpd/index.cgi"&&v___location_path!=v___location_prefix+"/mailboxes/"&&v___location_path!=v___location_prefix+"/mailboxes/index.cgi"&&v___location_path!=v___location_prefix+"/mailboxes/list_mail.cgi"&&v___location_path!=v___location_prefix+"/mailbox/"&&v___location_path!=v___location_prefix+"/mailbox/index.cgi"&&v___location_path!=v___location_prefix+"/samba/"&&v___location_path!=v___location_prefix+"/samba/index.cgi"&&v___location_path!=v___location_prefix+"/spam/"&&v___location_path!=v___location_prefix+"/spam/index.cgi"&&v___location_path!=v___location_prefix+"/squid/"&&v___location_path!=v___location_prefix+"/squid/index.cgi"&&v___location_path!=v___location_prefix+"/sshd/"&&v___location_path!=v___location_prefix+"/sshd/index.cgi"&&v___location_path!=v___location_prefix+"/webalizer/"&&v___location_path!=v___location_prefix+"/webalizer/index.cgi"&&v___location_path!=v___location_prefix+"/cpan/"&&v___location_path!=v___location_prefix+"/cpan/index.cgi"&&v___location_path!=v___location_prefix+"/htaccess-htpasswd/"&&v___location_path!=v___location_prefix+"/htaccess-htpasswd/index.cgi"&&v___location_path!=v___location_prefix+"/status/"&&v___location_path!=v___location_prefix+"/status/index.cgi"&&v___location_path!=v___location_prefix+"/net/"&&v___location_path!=v___location_prefix+"/net/index.cgi"&&v___location_path!=v___location_prefix+"/tcpwrappers/"&&v___location_path!=v___location_prefix+"/tcpwrappers/index.cgi"&&v___location_path!=v___location_prefix+"/fdisk/"&&v___location_path!=v___location_prefix+"/fdisk/index.cgi"&&v___location_path!=v___location_prefix+"/fail2ban/"&&v___location_path!=v___location_prefix+"/fail2ban/index.cgi"&&v___location_path!=v___location_prefix+"/nis/"&&v___location_path!=v___location_prefix+"/nis/index.cgi"&&v___location_path!=v___location_prefix+"/passwd/"&&v___location_path!=v___location_prefix+"/passwd/index.cgi"||$($(".container-fluid .panel-body a[href]:not([href*='javascript'],[href*='list_users.cgi?dom'],[href*='edit_hdparm.cgi?disk'],[href*='blink.cgi?disk'],[href*='smart-status/index.cgi?drive'],[href*='help.cgi'],[href*='edit_user.cgi?new='],[href*='edit_user.cgi?idx='],[href*='edit_recipe.cgi'],[href*='up.cgi'],[href*='down.cgi'],[href*='virt_index.cgi'],[href*='save_log.cgi'],[href*='backup.cgi'],[href*='activate.cgi'],[href*='#'])")).each(function(e,t){v___location_path==v___location_prefix+"/syslog/"||v___location_path==v___location_prefix+"/syslog/index.cgi"?n["/"+v___location_path_lead_unslashed+$(this).parent("td").next("td.td_tag").next("td.td_tag").next("td.td_tag").find("a").attr("href")]=$.trim($(this).text()):(v___location_path==v___location_prefix+"/backup-config/"||v___location_path==v___location_prefix+"/backup-config/index.cgi"?$description=$.trim($(this).parent("td").next("td.td_tag").next("td.td_tag").text()):v___location_path==v___location_prefix+"/mount/"||v___location_path==v___location_prefix+"/mount/index.cgi"||v___location_path==v___location_prefix+"/quota/"||v___location_path==v___location_prefix+"/quota/index.cgi"?$description=$.trim($(this).parent("td").next("td.td_tag").next("td.td_tag").text()):v___location_path==v___location_prefix+"/fsdump/"||v___location_path==v___location_prefix+"/fsdump/index.cgi"?$description=$.trim($(this).parents("td").next("td").next("td").next("td").find("label").find("tt").find("tt").text()):v___location_path==v___location_prefix+"/proc/"||v___location_path==v___location_prefix+"/proc/index_tree.cgi"||v___location_path==v___location_prefix+"/proc/index_user.cgi"||v___location_path==v___location_prefix+"/proc/index_size.cgi"||v___location_path==v___location_prefix+"/proc/index_cpu.cgi"||v___location_path==v___location_prefix+"/proc/index_tree.cgi"||v___location_path==v___location_prefix+"/proc/index_search.cgi"?v___location_path==v___location_prefix+"/proc/index_size.cgi"||v___location_path==v___location_prefix+"/proc/index_cpu.cgi"?$description=$.trim($(this).parent("td").next("td.td_tag").text())+" — "+$.trim($(this).parent("td").next("td.td_tag").next("td.td_tag").text())+" - "+$.trim($(this).parents("td").next("td").next("td").next("td").text()):v___location_path==v___location_prefix+"/proc/index_search.cgi"?$description=$.trim($(this).parent("td").next("td.td_tag").text())+" — "+$.trim($(this).parent("td").next("td.td_tag").next("td.td_tag").text())+" - "+$.trim($(this).parents("td").next("td").next("td").next("td").next("td").text()):$description=$.trim($(this).parent("td").next("td.td_tag").text())+" — "+$.trim($(this).parents("td").next("td").next("td").next("td").text()):v___location_path==v___location_prefix+"/useradmin/"||v___location_path==v___location_prefix+"/useradmin/index.cgi"?$description=$.trim($(this).parents("td").next("td").find("label").text())+" — "+$(this).text()+":"+$.trim($(this).parents("td").next("td").next("td").find("label").text())+" - "+$.trim($(this).parents("td").next("td").next("td").next("td").next("td").find("label").text())+", "+$.trim($(this).parents("td").next("td").next("td").next("td").next("td").next("td").find("label").text()):v___location_path==v___location_prefix+"/mailboxes/list_mail.cgi"||v___location_path==v___location_prefix+"/mailbox/"||v___location_path==v___location_prefix+"/mailbox/index.cgi"?$description=$.trim($(this).parents("td").next("td").next("td").next("td").find("label").text())+" — "+$.trim($(this).parents("td").next("td").find("label").text())+" ["+$.trim($(this).parents("td").next("td").next("td").find("label").text())+"]":v___location_path==v___location_prefix+"/cpan/"||v___location_path==v___location_prefix+"/cpan/index.cgi"?$description=$.trim($(this).parents("td").next("td").next("td").find("label").text()):v___location_path==v___location_prefix+"/fdisk/"||v___location_path==v___location_prefix+"/fdisk/index.cgi"?$description=$.trim($(this).parent("td").next("td.td_tag").text())+" - "+$.trim($(this).parent("td").next("td.td_tag").next("td.td_tag").text()):$description=$.trim($(this).parent("td").next("td.td_tag").text()),$description?$_description=!0:$_description=!1,n[("/"==$(this).attr("href").substring(0,1)?"":"/")+v___location_directory_unslashed_trail_slashed+$(this).attr("href")]=$.trim($(this).text())+($_description?" (":"")+$description+($_description?")":""))});var s=$.map(n,function(e,t){if("undefined"!=t)return{value:e,url:t,data:{category:get_module_title()}}}),_={};$.each($('li:not(.menu-exclude):not(.user-link) > ul.sub:not([id^="global_"]) > li:not(.menu-exclude):not(.user-link) > a'),function(e,t){_[("/"==$(this).attr("href").substring(0,1)?"":"/")+$(this).attr("href")]=$.trim($(this).text())}),$('li:not(.menu-exclude):not(.user-link) > a[target="page"]:not([data-href="/acl/edit_user.cgi"],[data-href="/virtual-server/index.cgi"],[data-href="/sysinfo.cgi"],[data-href="/virtual-server/pro/history.cgi"], [data-href="/mailbox/list_folders.cgi"], [data-href="/mailbox/list_ifolders.cgi"], [data-href="/mailbox/list_addresses.cgi"], [data-href="/filter/edit_forward.cgi"], [data-href="/filter/edit_auto.cgi"], [data-href="/filter/edit_auto.cgi"], [data-href="/filter/"], [data-href="/mailbox/edit_sig.cgi"])').each(function(e,t){$t_uri_usermin||navigation_dashboard_switch_available()||(_[$(this).attr("data-href")]=$.trim($(this).text()))});var r=$.map(_,function(e,t){if("undefined"!=t&&!Test.strContains(t,"/shell")&&!Test.strContains(t,"shell=1"))return{value:e,url:t,data:{category:$("aside .select2-selection__rendered").text()?''+$("aside .select2-selection__rendered").clone().children().remove().end().text()+"":get_navigation_module_name()}}}),o={};$("aside select option").each(function(){o[$(this).val()+":::"+$(this).parent("select").attr("name")]=$.trim($(this).text())});var l=$.map(o,function(e,t){if("undefined"!=t)return{value:e,url:t,data:{category:$("aside select").data("autocomplete-title")}}}).concat(s).concat(r).concat(a);$(".form-control.sidebar-search").on("keydown",function(e){34!=e.keyCode&&33!=e.keyCode&&20!=e.keyCode&&17!=e.keyCode&&16!=e.keyCode&&9!=e.keyCode||(e.preventDefault(),e.stopPropagation())}),$(".form-control.sidebar-search").autocomplete({lookup:l,onSelect:function(e){if(!0===navigation_dashboard_switch_available()&&$t_uri_dashboard&&2!=get_access_level()&&4!=get_access_level()&&set_switch_position("webmin"),$(this).val("").blur(),navigation_hide(),"/"==e.url.substring(0,1)){var t=$("body").find('a[href="'+e.url+'"]').attr("target");if(t&&"_parent"==t);else{var i=e.url.indexOf(v___location_prefix)>-1?e.url:v___location_prefix+e.url;get_onbeforeunload_status()?(event.preventDefault(),get_onbeforeunload_message([],{href:i})):get_pjax_content(i,["reference"])}}else e.url&&e.url.indexOf(":::")>-1&&(navigation_render_start(),$("select").val(e.url.split(":::")[0]).trigger("change").trigger("select2:select"))},groupBy:"category"})}}function navigation_update(e){if(!get_onbeforeunload_status()){var e=void 0===e||-1==e||""==e?$("aside select").val():e,t=$t_uri_virtualmin?"virtualmin":$t_uri_cloudmin?"cloudmin":$t_uri_usermin?"usermin":$t_uri_webmin?"webmin":"mail";"webmin"==t?(set_switch_position("webmin"),get_navigation_menu_webmin("webmin")):"virtualmin"==t?(set_switch_position("virtualmin"),get_navigation_menu_virtualmin(e)):"cloudmin"==t?(set_switch_position("cloudmin"),get_navigation_menu_cloudmin(e)):"usermin"==t?(set_switch_position("usermin"),get_navigation_menu_webmin("usermin")):"mail"==t&&(set_switch_position("webmail"),get_navigation_menu_webmin("webmail"))}}function navigation_select_label(){if($t_uri_cloudmin&&$("aside").find("li.menu-container.menu-status.hidden").find("font").length>0){var e=$("aside").find("li.menu-container.menu-status.hidden").find("font"),t=e.text(),i=e.attr("color");i=i&&(i.indexOf("00ff00")||i.indexOf("008800")||i.indexOf("00aa00"))?"success":i&&(i.indexOf("ff6600")||i.indexOf("ff00ff")||i.indexOf("ff22ff")||i.indexOf("ff44ff"))?"warning":i&&(i.indexOf("ff0000")||i.indexOf("ff1100")||i.indexOf("aa0000")||i.indexOf("ff2200")||i.indexOf("ff4400"))?"danger":"info","Virtualmin"==t&&(t="VM"),setTimeout(function(){var e=$("aside .select2-selection__rendered");if(!e.find(".menu-status-label").length){e.append(''+t+"");var a=$("aside .select2-selection__rendered .menu-status-label");a.animate({opacity:1},500),a.on("mouseover",function(){$(this).removeClass("bg-light-grey")}).on("mouseout",function(){$(this).addClass("bg-light-grey")}),e.on("mouseover",function(){$(this).find(".menu-status-label").removeClass("bg-light-grey")}).on("mouseout",function(){$(this).find(".menu-status-label").addClass("bg-light-grey")})}},300)}}function navigation_form_control(e){var t=$("aside select");e?$.each($("aside").find("forms"),function(){$(this).replaceTagName("form")}).promise().done(function(){navigation_init_select()}):(!!t.data("select2")&&t.select2("destroy"),$.each($("aside").find("form"),function(){$(this).replaceTagName("forms")}))}function navigation_filter_reset(){var e="-webkit-filter: grayscale(0) sepia(0) saturate(1) hue-rotate(0deg) invert(0) brightness(1) contrast(1); filter: grayscale(0) sepia(0) saturate(1) hue-rotate(0deg) invert(0) brightness(1) contrast(1);";$(".visible-xs.mobile-menu-toggler").attr("style","position: fixed;"+e),$("aside, .visible-xs.mobile-menu-toggler").attr("style","z-index: 10; overflow: visible; transform: translate("+settings_leftmenu_width+"px, 0px);"+e),$('input[name="settings_grayscale_level_navigation"], input[name="settings_sepia_level_navigation"], input[name="settings_hue_level_navigation"], input[name="settings_invert_level_navigation"]').val(0),$('input[name="settings_saturate_level_navigation"], input[name="settings_brightness_level_navigation"], input[name="settings_contrast_level_navigation"]').val(1),$('input[name="settings_grayscale_level_navigation"], input[name="settings_sepia_level_navigation"], input[name="settings_saturate_level_navigation"], input[name="settings_hue_level_navigation"], input[name="settings_invert_level_navigation"], input[name="settings_brightness_level_navigation"], input[name="settings_contrast_level_navigation"]').each(function(){$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val())})}function get_pjax_push(e){return!0}function get_pjax_type(e){new String;if(e&&e.href&&e.href.match(/([^\/]*)\/*$/)[1],Test.string(e)){var t=e.replace(v___location_origin,""),i=t.replace("/"+v___module+"/",""),a=$('form[action="'+t+'"]:visible'),n=(a=a.length?a:$('form[action="'+i+'"]:visible')).attr("method");if("multipart/form-data"===a.attr("enctype"))return"post";if(n)return n;if(!n){var n=(n=$('form[action="'+t+'"]').attr("method"))||$('form[action="'+URI(t).filename()+'"]').attr("method"),s=$('form[action="'+t+'"]').attr("enctype");return n||s?"multipart/form-data"===s?"post":n:"get"}}else if("object"==typeof e&&$(e).is("form")){var _=e.attr("method");return _||"get"}return e&&Test.strContains(e,".cgi?")&&!Test.strContains(e,"config.cgi?")?"GET":"POST"}function get_pjax_content(e,t){if(!get_onbeforeunload_status()){var t="object"==typeof t?t:function(){},i=!!$.isArray(t)&&$("",{href:e})[0];$.pjax({url:e,timeout:0,push:get_pjax_push(),type:get_pjax_type(i||e),container:"[data-dcontainer]",fragment:"[data-dcontainer]",callback:t})}}function get_pjax_event_end(e,t){if(v___available_session&&null!=t&&void 0!==t.responseText){var i=t.responseText.replace(/)<[^<]*)*<\/body>/gim,"").replace(/)<[^<]*)*<\/head>/gim,"").replace("","").replace("",""),a=$(i).filter("#xhtml0");$(a[0].attributes).each(function(){"id"!==this.nodeName&&(this.nodeName,v___available_navigation&&"data-redirect"===this.nodeName&&this.nodeValue&&this.nodeValue!="/?"+$__theme_navigation&&history.replaceState({},null,navigation_trigger(this.nodeValue,2)),get_server_data(this.nodeName,this.nodeValue))}).promise().done(function(){if(get_pjax_event_end_funcs(1),$.each($(".container-fluid img"),function(){var e=$(this),t=e.attr("src");t&&!t.startsWith("/")&&e.attr("src",v___location_directory_trail_slashed+t)}),unbuffered_header_post(t),e){var i=$(e.relatedTarget),a=i.attr("href"),n=i.parent().is("[data-linked], .favorites-dcontainer, .menu-exclude.ui-sortable-handle");(n&&(Test.strContains(a,"mysql")||Test.strContains(a,"postgresql"))||Test.strContains(v___module,"mysql")||Test.strContains(v___module,"postgresql"))&&f__ex__mysql_runner(),(n&&Test.strContains(a,"csf")||Test.strContains(v___module,"csf"))&&csf_init()}1===v___theme_updated&&(v___theme_updated=0,theme_update_notice(1))})}}function get_pjax_event_end_funcs(e){if(page_init(),v___module===v___module_file_manager&&"config.cgi"!==v___location_file&&page.handle.content.preloader(),e||setTimeout(function(){get_server_data("data-title-initial",$("#headln2c span[data-main_title]").text()),get_server_data("data-script-name",v___location_path),get_server_data("data-uri",v___location_resource);var e=new RegExp("^"+v___location_prefix,"i");v___module=get_server_data("data-uri").replace(e,"").split("/").filter(function(e){return 0!==e.length})[0],get_server_data("data-module",v___module),page_render(1)},40),Test.strContains(v___location_directory,v___module_file_manager)&&setTimeout(function(){"function"==typeof ___f__tw?___f__tw():get_bundle_file_manager(1)},40),Core.curModule("csf")||get_server_data("post",0,1),e&&page_render(0),$(".tooltip").tooltip("hide"),$(".popover").popover("hide"),theme_title_generate(),navigation_detect(),e&&$(".__page").scrollTop(0),setTimeout(function(){var e=v___page_container.find("form:visible:first").find('input:visible:not([readonly]):not([disabled]):not([type="radio"]):not([type="checkbox"]):not([type="submit"]), textarea:visible:not([readonly]):not([disabled])');e.length&&!e.parents(".ui_buttons_table").length&&"config.cgi"!==v___location_file&&"uconfig.cgi"!==v___location_file&&"settings-user.cgi"!==v___location_file&&e[0].focus()},200),v___available_navigation){var t=navigation_trigger(v___location.href,1).replace(v___location_origin+v___location_prefix,"");""==t||"/"==t||"/index.cgi"==t||unbuffered_header_processor_allow(v___location.href)||"csf"===v___module||"config.cgi"===v___location_file||(set_server_tmp_var_timeout=setTimeout(function(){set_server_tmp_var("goto",navigation_trigger(v___location.href,1))},400))}}function get_pjax_action_submit(e,t){if(!get_onbeforeunload_status())if(e&&!v___theme_force_buffered&&e.target&&e.target.action&&unbuffered_header_processor_allow(e.target.action))unbuffered_header_processor(e,1);else{v___theme_force_buffered=0;var i=quirks.active_element(),a=$(i).attr("name"),n=$.trim(i.value)?$.trim(i.value):$.trim(i.innerText),s=i.value,_=i.type,r=i.nodeName.toLowerCase(),o=$(e.target).find('[name="'+a+'"]'),l=o.attr("type");("input"!==r||o.val()==s&&"submit"!==l)&&("button"!==r||$.trim(o.text())==n&&"submit"!==l)||"button"!==l&&"submit"!==l&&"submit"!==_||$("").attr({type:"hidden",name:a,value:n||s}).appendTo($(e.target)),$.pjax.submit(e,"[data-dcontainer]",{timeout:0,push:get_pjax_push(),type:get_pjax_type(e.target.action),fragment:"[data-dcontainer]"})}}function get_pjax_action_click(e,t){if(void 0!=$(t).attr("href"))return $(e.target).is(".gl-icon-select")?(e.preventDefault(),void $(t).trigger("contextmenu")):t&&t.href&&unbuffered_header_processor_allow(t.href)?(e.preventDefault(),void unbuffered_header_processor(t.href,0)):void $.pjax.click(e,{timeout:0,push:get_pjax_push(),type:get_pjax_type(t),container:"[data-dcontainer]",fragment:"[data-dcontainer]"})}function get_onbeforeunload_message(e,t){bootbox.dialog({message:""+theme_language("theme_xhred_global_unbeforeunload_message"),title:'   '+theme_language("theme_xhred_global_unbeforeunload_title")+"",buttons:{main:{label:'   '+theme_language("theme_xhred_global_cancel")+"  ",className:"btn-default vertical-align-top margined-left--2",callback:function(){despinnerfy_buttons(),navigation_detect()}},danger:{label:'   '+theme_language("theme_xhred_global_continue")+"  ",className:"btn-danger vertical-align-top margined-left--2",callback:function(){set_onbeforeunload_status(0,0),set_onbeforeunload_status(0,1),"object"==typeof progressive_request&&1===progressive_request.readyState&&progressive_request.abort();if(t&&t.href&&Test.strContains(t.href,"::switch::"))$('.switch-toggle input[id="'+t.href.replace("::switch::","")+'"]').trigger("click");else{var i=$(t).is("form");i?i&&get_pjax_action_submit(e,t):t.href&&t.href.length&&get_pjax_content(t.href,!1)}}}},onEscape:function(){despinnerfy_buttons(),navigation_detect()}})}function get_onbeforeunload_status(){return $('.container-fluid > .panel > .panel-body[data-unload-warning="1"]').length||$('html[data-unload-warning="1"]').length}function set_onbeforeunload_status(e,t){var i=t?"html":".container-fluid > .panel > .panel-body";e?$(i).attr("data-unload-warning","1"):$(i).removeAttr("data-unload-warning")}function set_side_slider_visibility(e){var t="body .right-side-tabs";"0"!=get_server_data("access-level")&&"1"!=Core.moduleAvailable("status")||(e?($(t+"-toggler").addClass("hidden"),$(t).css("right","0px").addClass("right-side-tabs-fixed"),settings_side_slider_enabled&&get_server_data("data-slider-fixed","1")):(settings_side_slider_enabled&&$(t+"-toggler").removeClass("hidden opened").css("right","0"),$(t).css("right","-302px").removeClass("right-side-tabs-fixed"),get_server_data("data-slider-fixed","0")))}function set_side_slider_labels(){var e=$('a[href*="#right-side-tabs-sysinfo"]'),t=theme_language("theme_xhred_titles_dashboard");e.length&&void 0!==t?(e.text(t),$('a[href*="#right-side-tabs-notifications"]').text(theme_language("theme_xhred_global_notifications")),$('a[href*="#right-side-tabs-favorites"]').text(theme_language("theme_xhred_global_favorites")),$(".theme_xhred_notification_no_data").text(theme_language("theme_xhred_notification_no_data").toUpperCase()),$(".theme_xhred_notification_no_favorites").text(theme_language("theme_xhred_notification_no_favorites").toUpperCase()),$(".theme_xhred_notification_none").text(theme_language("theme_xhred_notification_none").toUpperCase()),$("[data-ss-dd-help]").text(theme_language("theme_xhred_global_help")),$("[data-ss-dd-theme-configuration]").text(theme_language("theme_xhred_global_theme_configuration")),$("[data-ss-dd-whats-new]").text(theme_language("theme_xhred_global_whats_new")),$("[data-ss-dd-issue-report]").text(theme_language("theme_xhred_global_report_an_issue")),$("[data-ss-dd-official-website]").text(theme_language("theme_xhred_global_official_website")),$("[data-ss-dd-webmin]").text(theme_language("theme_xhred_titles_wm")),$("[data-ss-dd-virtualmin]").text(theme_language("theme_xhred_titles_vm")),$("[data-ss-dd-about-theme]").text(theme_language("theme_xhred_global_about_theme")),$("[data-ss-dd-install-theme-update]").text(theme_language("theme_xhred_global_update")),$("[data-ss-dd-install-release]").text(theme_language("theme_xhred_force_upgrade_stable")),$("[data-ss-dd-install-development]").text(theme_language("theme_xhred_force_upgrade_beta"))):setTimeout(set_side_slider_labels,200)}function theme_password_generator(){var e=settings_global_passgen_format.split("|")[1].split(","),t=parseInt(settings_global_passgen_format.split("|")[0]),i="",a="";$.inArray("a-z",e)>=0&&(i+="abcdefghijklmnopqrstuvwxyz"),$.inArray("A-Z",e)>=0&&(i+="ABCDEFGHIJKLMNOPQRSTUVWXYZ"),$.inArray("0-9",e)>=0&&(i+="0123456789"),$.inArray("#",e)>=0&&(i+="![]{}()%&*$#^<>~@|");for(var n=0;n-1&&(r=r.split("~"),e=r[0],s=r[1]),$.each($(t).find(i),function(){if(!$(this).parents(t).hasClass("f__lnk_t_btn")){if(o){var _=new RegExp(RegExp.quote(o),"g");$(this).parent().replaceText(_,l||"")}a&&a.indexOf("__center__")>-1&&$(i).parent().addClass("text-center"),$(this).html(e+$(this).text().replace(/\.\.$/,"")+s).addClass(a).removeClass("ui_link").prepend(n?'  ':""),$(this).parent(t).addClass("f__lnk_t_btn")}})}))})}function theme_toggle_night_mode(){var e=$("body .user-link.palette-toggle"),t=e.find(".fa-sun").length?0:1,i=(get_server_data("data-night-mode"),get_server_data("data-default-theme")),a=settings_background_color,n=$("input, textarea").is(":focus");if((!v___available_navigation||!n)&&v___available_navigation&&!$("body").find(".modal.in:visible").length){if(1===t){e.find(".fa-moon").removeClass("fa-moon").addClass("fa-sun vertical-align-middle"),$(document).find(".settings_navigation_color_toggle").addClass("hidden");var s=$("html").find('head link[href*="palettes"][data-palette]');$("html").find("head").append(''),$("html").find("head").append(''),setTimeout(function(){get_server_data("data-theme","gunmetal"),s.remove(),get_server_data("data-background-style","nightRider"),get_server_data("data-night-mode",1)},3),v___theme_night_mode_enabled=1,v___theme_night_mode=1}else{$("body").find(".settings_navigation_color_toggle").removeClass("hidden"),e.find(".fa-sun").removeClass("fa-sun vertical-align-middle").addClass("fa-moon");var _=$("html").find('head link[href*="gunmetal"]');"blue"!=get_server_data("data-default-theme")&&$("html").find("head").append(''),get_server_data("data-theme",i),_.remove(),get_server_data("data-background-style",a),get_server_data("data-night-mode",0),"nightRider"!==settings_background_color&&$("html").find('head link[href*="nightrider"]').remove(),v___theme_night_mode_enabled="nightRider"===settings_background_color?1:0,v___theme_night_mode=0}v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"sysinfo.cgi"&&"0"==v___user_level?(setTimeout(function(){$.each($(".piechart"),function(){$(this).addClass("bg-filter-blur-grayscale-invert-opacity75").data("easyPieChart").update(0)})},1===t?150:0),theme_config("save",['get_pjax_content("'+v___location_prefix+'/sysinfo.cgi")',0])):theme_config("save")}}function theme_shell_unlock(){v___shell_processing=0,$('.-shell-port- input[data-command="true"]').removeAttr("readonly")}function theme_shell_clear(e){e.val(""),e.focus()}function theme_shell_open(e,t){var i=i=void 0!==t&&(t.startsWith("!")?t.substr(1):t),a=$("body").find(".-shell-port- input");if(i){a.val(i);var n=$.Event("keydown");n.which=13,a.trigger(n)}e.css("bottom","0vh").addClass("opened"),theme_shell_adapt(),setTimeout(function(){i||(focus(),a.focus())},20)}function theme_shell_close(e){e.css("bottom","100vh").removeClass("opened")}function theme_shell_adapt(){if(1==Core.moduleAvailable("shell")){var e=parseInt($("body").find(".-shell-port-cmd").width()),t=parseInt($("body").find(".-shell-port-prompt").width());$("body").find('.-shell-port- input[data-command="true"]').css("width",e-t-50+"px")}}function theme_shell_check_available(){var e=$t_uri_cloudmin&&$('a[target="page"][href*="/server-manager/save_serv.cgi"][href*="shell=1"]').length;return 1==Core.moduleAvailable("shell")||e?1:0}function theme_shell_link_control(){theme_shell_check_available()?0!=settings_show_terminal_link&&$(".user-link.ported-console").removeClass("hidden"):$(".user-link.ported-console").addClass("hidden")}function theme_spinner_small(){return''}function despinnerfy_buttons(){$.each($(".btn.disabled"),function(){var e=$(this),t=e.find(".cspinner_container"),i=t.prev("i.invisible");e.removeClass("disabled"),i.removeClass("invisible"),t.remove()}),$('#system-status [href="/?updated"]').removeClass("disabled").find("i").removeClass("fa-spin")}function spinnerfy_buttons(e,t,i,a){var n=!!(e.attr("onclick")&&-1!==e.attr("onclick").indexOf("blank")||e.parents("form").attr("target")&&-1!==e.parents("form").attr("target").indexOf("blank")),s=e.hasClass("heighter-28"),_="28px"==e.css("height"),r=e.hasClass("btn-lg"),o=Core.curModule("server-manager")?2:0,l=e.find(".fa").hasClass("fa-1_25x"),c=e.find(".fa"),d=void 0!==t&&0!=t&&t,h='',p='';setTimeout(function(){!n&&e.addClass("disabled")},10),c.length&&!n&&setTimeout(function(){e.hasClass("btn-default")?c.addClass("invisible").after(p):c.addClass("invisible").after(h)},10),"undefind"==typeof i&&(i=!1),"undefind"==typeof a&&(a=!1),(d[3]||i)&&setTimeout(function(){e.removeClass("disabled"),c.removeClass("invisible"),e.find(".cspinner_container").remove()},i||d[3]),a&&setTimeout(function(){progress.end()},400)}function theme_language(e,t){void 0===t&&(t=!1);var i=get_server_data("language-strings");return t?!!i&&Convert.arrFlip(i)[$.trim(e)]:!!i&&i[e]}function theme_config($action,callBack){var callBack="object"==typeof callBack&&callBack,watched_options=["config_portable_module_csf_style_custom_promoted","config_portable_theme_charset_warning_shown","config_portable_module_xsql_fit_content_screen_height","config_portable_module_filemanager_hide_toolbar","config_portable_module_filemanager_hovered_toolbar","config_portable_module_filemanager_hide_actions","config_portable_module_filemanager_remember_tabs","config_portable_module_filemanager_calculate_size","config_portable_module_filemanager_switch_user","config_portable_module_filemanager_notification_type"];if("get_options"==$action)return watched_options;if("save"==$action){var storeStorage={},val=0;$.each(localStorage,function(e,t){"string"==typeof e&&e.indexOf(v___server_hostname)>-1&&Test.arrIntersect(watched_options,e)&&"undefined"!=(val="true"==t||"false"!=t&&(Test.numeric(t)?parseInt(t):t))&&(storeStorage[e.replace(v___server_hostname+"-","")]=val)}),storeStorage.settings_force_night_mode=v___theme_night_mode,"undefind"!=settings_font_family&&(storeStorage.settings_font_family=settings_font_family),"undefind"!=settings_navigation_color&&(storeStorage.settings_navigation_color=settings_navigation_color),"undefind"!=settings_background_color&&(storeStorage.settings_background_color=settings_background_color),"undefind"!=settings_cm_editor_palette&&(storeStorage.settings_cm_editor_palette=settings_cm_editor_palette),"undefind"!=settings_button_tooltip&&(storeStorage.settings_button_tooltip=settings_button_tooltip),"undefind"!=settings_hide_top_loader&&(storeStorage.settings_hide_top_loader=settings_hide_top_loader),"undefind"!=settings_animation_left&&(storeStorage.settings_animation_left=settings_animation_left),"undefind"!=settings_animation_tabs&&(storeStorage.settings_animation_tabs=settings_animation_tabs),"undefind"!=settings_sysinfo_link_mini&&(storeStorage.settings_sysinfo_link_mini=settings_sysinfo_link_mini),"undefind"!=settings_show_night_mode_link&&(storeStorage.settings_show_night_mode_link=settings_show_night_mode_link),"undefind"!=settings_theme_options_button&&(storeStorage.settings_theme_options_button=settings_theme_options_button),"undefind"!=settings_leftmenu_button_refresh&&(storeStorage.settings_leftmenu_button_refresh=settings_leftmenu_button_refresh),"undefind"!=settings_hotkeys_active&&(storeStorage.settings_hotkeys_active=settings_hotkeys_active),setTimeout(function(){$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-manage-config=1&save=1",data:storeStorage,dataType:"text",success:function(c){Test.strContains(c,v___page_signin_form)?v___available_session=0:(setTimeout(function(){theme_settings_controls(0)},400),callBack&&(callBack[2]?setTimeout(function(){eval(callBack[0])},callBack[2]):eval(callBack[0])))},error:function(){}})},10)}else if("load"===$action){var val=0;$.ajax({type:"GET",url:v___location_prefix+"/index.cgi?xhr-manage-config=1&load=1",data:!1,dataType:"json",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:$.each(e,function(e,t){val="true"==t||"false"!=t&&(Test.numeric(t)?parseInt(t):t),localStorage.setItem(v___server_hostname+"-"+e,val),window[e]=val})},error:function(){}})}}function get_server_data(e,t,i){var a=$("html"),n=$("body"),s="data-"+e,_=e.replace("data-","");if(void 0!==i)e.startsWith("data-")?(a.removeAttr(e),a.removeData(_)):(a.removeAttr(s),a.removeData(e));else{if(void 0===t)return e.startsWith("data-")?a.attr(e):a.data(e);e.startsWith("data-")?a.attr(e,t).data(_,t):a.data(e,t).attr(s),"data-uri"!==e&&"data-module"!==e||(n.attr(e,t),"data-module"===e&&n.removeClass().addClass(t))}}function control_server_tmp_var(e,t,i,a,n,s){return $.ajax({type:"POST",url:v___location_prefix+"/index.cgi/?xhr-tmp_var=1&xhr-tmp_var_action="+e+"&xhr-tmp_var_name="+t+"&xhr-tmp_var_value="+(i?Convert.uriEncodeComponent(i):i)+"&xhr-tmp_var_keep="+a,data:!1,dataType:"text",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:"function"==typeof n&&(!e.length||e.length&&1===s)&&n()},error:function(e){}})}function get_server_tmp_var(e,t,i,a){return control_server_tmp_var("get",e,!1,t,i,a)}function set_server_tmp_var(e,t){control_server_tmp_var("set",e,t)}function get_navigation_module_name(){return $t_uri_webmin?theme_language("theme_xhred_titles_wm"):$t_uri_usermin?theme_language("theme_xhred_titles_um"):$t_uri_virtualmin?theme_language("theme_xhred_titles_vm"):$t_uri_cloudmin?theme_language("theme_xhred_titles_cm"):$t_uri_webmail?theme_language("theme_xhred_titles_mail"):$t_uri_dashboard?theme_language("theme_xhred_titles_dashboard"):void 0}function update_navigation_module_name(){$t_uri_webmin=$('.switch-toggle input[id="open_webmin"]:checked').length?1:0,$t_uri_usermin=$('.switch-toggle input[id="open_usermin"]:checked').length?1:0,$t_uri_virtualmin=$('.switch-toggle input[id="open_virtualmin"]:checked').length?1:0,$t_uri_cloudmin=$('.switch-toggle input[id="open_cloudmin"]:checked').length?1:0,$t_uri_webmail=$('.switch-toggle input[id="open_webmail"]:checked').length?1:0,$t_uri_dashboard=$('.switch-toggle input[id="open_dashboard"]:checked').length?1:0}function page_display(){var e=$("body"),t=$("body").find(".container-fluid"),i=$("head");t.css({opacity:1,"pointer-events":"auto"}),e.css("overflow","auto"),i.find("#__tmp_no_overflow").remove()}function page_adjust(e,t){"function"==typeof $.injectCSS&&($("style[data-persist]").remove(),t=!!t&&"translate("+t+"px, 0px) !important",$.injectCSS({"#sidebar":{left:-e+"px",width:e+"px",transform:t},".switch-toggle":{width:e+"px"},"#content.__page":{"margin-left":e+"px"},".autocomplete-suggestions":{"min-width":e-23+"px !important"},".__logo":{width:e+"px","max-width":e+"px"}}),$("aside select").length&&($("aside select[data-autocomplete-title]").attr("style","width:"+(e-24)+"px; margin-top: 0 !important"),navigation_init_select()))}function navigation_lock_width(){if("undefined"==typeof settings_leftmenu_width_initial&&(settings_leftmenu_width_initial=settings_leftmenu_width),matchMedia("(max-width: 767px)").matches)settings_leftmenu_width=260,page_adjust(settings_leftmenu_width,0);else{if(1===v___initial_load)return;settings_leftmenu_width=settings_leftmenu_width_initial,page_adjust(settings_leftmenu_width,settings_leftmenu_width)}}function theme_modal_dismiss(){$(".modal.in").find("[data-dismiss]").trigger("click")}function navigation_focus_search(e){if(settings_hotkeys_active&&v___available_session)return String.fromCharCode(e.which).toLowerCase()!=settings_hotkey_focus_search||!e[settings_hotkey_toggle_modifier]||(e.preventDefault(),$search=$(".form-control.sidebar-search").focus(),!1)}function theme_shortcut_check(e){return"0"==get_access_level()||!!Core.moduleAvailable(URI("/"+e).directory().replace(/\//g,""))}function theme_shortcuts(e){if(settings_hotkeys_active){if(!("1"==String.fromCharCode(e.which)&&settings_hotkey_custom_1&&e[settings_hotkey_toggle_modifier]||"2"==String.fromCharCode(e.which)&&settings_hotkey_custom_2&&e[settings_hotkey_toggle_modifier]||"3"==String.fromCharCode(e.which)&&settings_hotkey_custom_3&&e[settings_hotkey_toggle_modifier]||"4"==String.fromCharCode(e.which)&&settings_hotkey_custom_4&&e[settings_hotkey_toggle_modifier]||"5"==String.fromCharCode(e.which)&&settings_hotkey_custom_5&&e[settings_hotkey_toggle_modifier]||"6"==String.fromCharCode(e.which)&&settings_hotkey_custom_6&&e[settings_hotkey_toggle_modifier]||"7"==String.fromCharCode(e.which)&&settings_hotkey_custom_7&&e[settings_hotkey_toggle_modifier]||"8"==String.fromCharCode(e.which)&&settings_hotkey_custom_8&&e[settings_hotkey_toggle_modifier]||"9"==String.fromCharCode(e.which)&&settings_hotkey_custom_9&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_favorites&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_shell&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_sysinfo&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_slider&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_reload&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_night_mode&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_webmail&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_usermin&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_cloudmin&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_virtualmin&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_webmin&&e[settings_hotkey_toggle_modifier]))return!0;if(get_onbeforeunload_status()||!v___available_session)return e.preventDefault(),void console.log("Disabling theme hotkeys .. ");"1"==String.fromCharCode(e.which)&&settings_hotkey_custom_1&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_1)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_1)),"2"==String.fromCharCode(e.which)&&settings_hotkey_custom_2&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_2)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_2)),"3"==String.fromCharCode(e.which)&&settings_hotkey_custom_3&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_3)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_3)),"4"==String.fromCharCode(e.which)&&settings_hotkey_custom_4&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_4)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_4)),"5"==String.fromCharCode(e.which)&&settings_hotkey_custom_5&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_5)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_5)),"6"==String.fromCharCode(e.which)&&settings_hotkey_custom_6&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_6)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_6)),"7"==String.fromCharCode(e.which)&&settings_hotkey_custom_7&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_7)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_7)),"8"==String.fromCharCode(e.which)&&settings_hotkey_custom_8&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_8)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_8)),"9"==String.fromCharCode(e.which)&&settings_hotkey_custom_9&&(e.preventDefault(),theme_shortcut_check(settings_hotkey_custom_9)&&get_pjax_content(v___location_prefix+settings_hotkey_custom_9)),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_webmin&&(e.preventDefault(),$('.switch-toggle input[id="open_webmin"]').trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_virtualmin&&(e.preventDefault(),$('.switch-toggle input[id="open_virtualmin"]').trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_cloudmin&&(e.preventDefault(),$('.switch-toggle input[id="open_cloudmin"]').trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_usermin&&(e.preventDefault(),$('.switch-toggle input[id="open_usermin"]').trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_webmail&&(e.preventDefault(),$('.switch-toggle input[id="open_webmail"]').trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_key_night_mode&&(e.preventDefault(),theme_toggle_night_mode()),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_toggle_slider&&(e.preventDefault(),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_reload&&$('.user-links a[data-refresh="true"]')&&(e.preventDefault(),get_pjax_content(v___location_resource));var t=$t_uri_cloudmin&&$('a[target="page"][href*="/server-manager/save_serv.cgi"][href*="shell=1"]').length;if(String.fromCharCode(e.which).toLowerCase()==settings_hotkey_shell&&(1==Core.moduleAvailable("shell")||t)){e.preventDefault();var i=$("body").find(".-shell-port-");i.hasClass("opened")?theme_shell_close(i):theme_shell_open(i)}return String.fromCharCode(e.which).toLowerCase()==settings_hotkey_sysinfo&&(e.preventDefault(),1==navigation_dashboard_switch_available()?navigation_dashboard_switch_select():get_pjax_content(v___location_prefix+"/sysinfo.cgi")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_favorites&&(e.preventDefault(),"0px"!=$(".favorites-menu-outer").css("left")?$(".user-link.favorites").trigger("click"):$(".favorites-menu-outer").removeClass("hover")),!1}}function get_access_level(){return parseInt(get_server_data("level"))}function navigation_dashboard_switch_available(){return"1"==get_server_data("dashboard")}function navigation_dashboard_switch_select(){set_switch_position("dashboard"),navigation_clear(),get_pjax_content(v___location_prefix+"/sysinfo.cgi")}function theme_messenger(e,t,i,a,n){var s=void 0===a?1:a,_=void 0===n||n;if($('body[class^="'+v___module_file_manager+'"]').length){if("4"==config_portable_module_filemanager_notification_type&&"info"!=i&&"warning"!=i&&"error"!=i)return;if("2"==config_portable_module_filemanager_notification_type&&"warning"!=i&&"error"!=i)return}"function"==typeof Messenger&&(window["Messenger_"+s]=Messenger().post({message:e,hideAfter:t,theme:"air",showCloseButton:_,type:i,id:s}))}function theme_message_dismiss(e){void 0!==window["Messenger_"+e]&&window["Messenger_"+e].hide()}function theme_alert(e,t,i,a,n,s,_,r){(void 0===i||0==i)&&(i=!1),(void 0===a||0==a)&&(a="md"),(void 0===n||0==n)&&(n="danger"),(void 0===s||0==s)&&(s="exclamation-triangle"),(void 0===_||0==_)&&(_="7"),(void 0===r||0==r)&&(r=!1);$.isArray(i);var o="modal-global-notification",l='";setTimeout(function(){$("body").hasClass("modal-open")||($("body").append(l),$("."+o).modal("show"),$("."+o).on("click",".modal-body a.label",function(e){$("."+o).modal("hide")}),$("."+o).on("hidden.bs.modal",function(e){$("."+o).remove()}))},r)}function theme_alert_charset(){var e=get_server_data("charset");if(e&&-1===e.toLowerCase().indexOf("utf")&&"true"!=localStorage.getItem(v___server_hostname+"-config_portable_theme_charset_warning_shown")){var t="

"+theme_language("theme_xhred_encoding_warning").replace("_hidden_",$t_uri_usermin?"hidden":"").replace("%prod",get_navigation_module_name()).replace("%lang",get_server_data("language")).replace("%charset",get_server_data("charset")).replace("%link",v___location_prefix+($t_uri_usermin?"/language":"/webmin/edit_lang.cgi"))+"

";theme_alert(theme_language("theme_xhred_global_warning"),t,!1,"sm","warning",!1,"7 modal-charset-warning",2e3),$("body").on("click",".modal-charset-warning a.label",function(e){$(".modal-charset-warning").modal("hide")}),$("body").on("hide.bs.modal",".modal-charset-warning",function(e){localStorage.setItem(v___server_hostname+"-config_portable_theme_charset_warning_shown","true"),theme_config("save")})}}function get_module_title(){return $_right_menu_title=$("#headln2c"),$_right_menu_title.find("span[data-main_title]").text().length?$_right_menu_title.find("span[data-main_title]").text():$_right_menu_title.text().length?$_right_menu_title.text().text():"->"}function get_module_subtitle(){}function editor_background_save(e){if(1===$('textarea[name="data"], textarea[name="text"], textarea[name="directives"], textarea[name="manual"]').length&&1===$('textarea[name="data"], textarea[name="text"], textarea[name="directives"], textarea[name="manual"]').parents("form").find('input[type="submit"]').length){if(!$(".CodeMirror").length)return;function t(){"undefined"!=typeof __cm_editor_static&&$(".container-fluid > .panel > .panel-body").attr("data-cm-line",__cm_editor_static.getCursor().line+","+__cm_editor_static.getCursor().ch).attr("data-cm-state",$('[data-form="submitter"]').hasClass("btn-warning")&&!$('[data-form="submitter"]').next("button").hasClass("disabled"))}$(".ui_reset").remove();var i=$('.container-fluid textarea[name="data"], .container-fluid textarea[name="text"], .container-fluid textarea[name="directives"], .container-fluid textarea[name="manual"]').parents("form"),a=i.find('button[type="button"]').length?i.find('button[type="button"]'):i.find('input[type="submit"]'),n=$('.container-fluid textarea[name="directives"]').length?"-12px":"0";$(".container-fluid select").val()?$(".container-fluid select").val():$(".container-fluid .table-title").text()?$(".container-fluid .table-title").text():$(".container-fluid .panel-body tt:first").text()?$(".container-fluid .panel-body tt:first").text():$(".container-fluid #headln2c tt:first").text()&&$(".container-fluid #headln2c tt:first").text();a.parents("table.ui_form_end_buttons").prev("br").remove(),a.parents("table.ui_form_end_buttons").prev("div.table-responsive").attr("style","margin-bottom: -4px !important"),a.replaceWith('\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t");var s=$('.container-fluid button[type="button"]:not(.ui_form_end_submit)'),_=$('.container-fluid button[type="submit"]:not(.ui_form_end_submit)');window.__cm_editor_static.on("change",function(e,i){__cm_editor_static.save(),s.addClass("btn-warning").removeClass("btn-success").attr("data-form-onbeforeunload",1),t()}),$("body").off("mousedown.cm1"),$("body").on("mousedown.cm1",".CodeMirror",function(e){t()}),$("body").off("keydown.cm1"),$("body").on("keydown.cm1",function(e){13==e.keyCode&&e.ctrlKey&&!e.shiftKey?s.trigger("click"):13==e.keyCode&&e.ctrlKey&&e.shiftKey&&_.trigger("click")});var r='button[type="submit"]:not(.disabled)';$("body").undelegate(r,"click.cm"),$("body").on("click.cm",r,function(e){set_onbeforeunload_status(0,0),$("button").addClass("disabled").find(".fa.fa-arrow-circle-o-left").addClass("invisible").after(''),s.attr("data-form-onbeforeunload",0)});var o='button[data-form="submitter"]:not(.disabled)';$("body").undelegate(o,"click.cm"),$("body").on("click.cm",o,function(e){e.preventDefault();var t=$(this).parents("form"),a=(t.attr("enctype")&&t.attr("enctype").indexOf("form-data")>-1?0:1)?t.serialize():new FormData(t[0]);$("button").addClass("disabled").find(".fa.fa-floppy-o").addClass("invisible").after(''),setTimeout(function(){$.ajax({type:"POST",url:i.attr("action"),data:a,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){if(!Test.strContains(e,v___page_signin_form))return s.removeClass("btn-warning").addClass("btn-success").attr("data-form-onbeforeunload",0),$("button").removeClass("disabled").find(".fa").removeClass("invisible").parent().find(".cspinner_container").remove(),$(".container-fluid > .panel > .panel-body").attr("data-cm-state","false"),set_onbeforeunload_status(0,0),!$(e).find(".panel-body > hr + h3").length||$(e).find(".panel-body .table").length||$(e).find(".panel-body form[action]").length?void 0:(theme_messenger(''+$(e).find(".panel-body hr + h3").html(),60,"error","magic_save_error"),s.removeClass("btn-success").addClass("btn-warning").attr("data-form-onbeforeunload",1),void $(".container-fluid > .panel > .panel-body").attr("data-cm-state","true"));v___available_session=0},error:function(e){}})},300)})}}function page_resized(){navigation_lock_width(),$(".mobile-menu-toggler").hasClass("selected")||($("aside").addClass("hidden-xs"),$("aside").css("transform","translate("+settings_leftmenu_width+"px, 0px)"),$(".switch-toggle").css("display","table"),"function"==typeof jQuery().transition&&$(".__logo")&&!$(".mobile-menu-toggler:visible").length?$(".__logo").transition({y:"-140px"},700,function(){}):$(".__logo")&&$(".__logo").css("transform","translate(0px, 0px)")),set_side_slider_visibility(!0!==settings_side_slider_fixed||$(".mobile-menu-toggler:visible").length||!v___available_navigation?0:1)}function theme_settings_controls(e){var t=$("#atsave, #save_user");e?(set_onbeforeunload_status(1,0),t.addClass("btn-warning")):(set_onbeforeunload_status(0,0),t.removeClass("btn-warning"))}function theme_settings_update(){$.each($("#atsettings .ui_form").serializeArray(),function(e,t){if("true"==t.value||"false"==t.value){if("true"==t.value)i=!0;else if("false"==t.value)i=!1}else var i=t.value;window[t.name]=Test.numeric(i)?parseFloat(i):i})}function bind_sameorigin(){$("body").on("click",'a[href^="http"], a[href^="https"], a[href^="ftp"], a[href^="ftps"]',function(e){Core.linkSameOrigin($(this))||$(this).attr("target","_blank")}),$.each($('ul.navigation a[href^="http"], ul.navigation a[href^="https"], ul.navigation a[href^="ftp"], ul.navigation a[href^="ftps"], ul.navigation a[data-href^="http"], ul.navigation a[data-href^="https"], ul.navigation a[data-href^="ftp"], ul.navigation a[data-href^="ftps"]'),function(){$(this).removeClass("navigation_module_trigger").parents("li").addClass("navigation_external"),$(this).attr("target","_blank"),$(this).attr("href",$(this).data("href")),$(this).removeAttr("data-href")})}function reset_switch_position(){Test.string(v___theme_navigation_active)&&set_switch_position(v___theme_navigation_active)}function set_switch_position(e){get_onbeforeunload_status()||($('.switch-toggle input:not([id="open_'+e+'"])').each(function(){$(this).removeAttr("checked")}).promise().done(function(){$("#open_"+e).prop("checked",!0)}),update_navigation_module_name())}function get_navigation_menu_webmin(e){get_onbeforeunload_status()||(navigation_render_start(),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-navigation=1&xhr-navigation-type="+("webmail"==e?"webmail":"webmin"),data:!1,dataType:"text",success:function(t){if(Test.strContains(t,v___page_signin_form))return v___available_session=0,navigation_render_end(),void reset_switch_position();v___theme_navigation_active="webmail"==e?"webmail":get_server_data("product"),$("body ul.navigation").html(t),navigation_render_end(),!get_server_data("loading")&&navigation_detect()}}),get_navigation_menu_buttons())}function get_navigation_menu_virtualmin(e){get_onbeforeunload_status()||(navigation_render_start(),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-navigation=1&xhr-navigation-type=virtualmin"+(e?"&dom="+e:settings_right_virtualmin_default?"&dom="+settings_right_virtualmin_default:""),data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return v___available_session=0,navigation_render_end(),void reset_switch_position();v___theme_navigation_active="virtualmin",$("body ul.navigation").html(e),navigation_render_end(),get_navigation_menu_virtualmin_summary(),!get_server_data("loading")&&navigation_detect()}}),get_navigation_menu_buttons())}function get_navigation_menu_virtualmin_summary(){if(!get_onbeforeunload_status()){var e=$('a[href*=".cgi?dom=$#DOM"]'),t=e.attr("href"),i=$('aside [name="dom"]').val();e.length&&i&&e.attr("href",t.replace("$#DOM",i))}}function get_navigation_menu_cloudmin(e){get_onbeforeunload_status()||(navigation_render_start(),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-navigation=1&xhr-navigation-type=cloudmin"+(e||0===e?"&sid="+e:settings_right_cloudmin_default?"&sid="+settings_right_cloudmin_default:""),data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return v___available_session=0,navigation_render_end(),void reset_switch_position();v___theme_navigation_active="cloudmin",$("body ul.navigation").html(e),theme_shell_link_control(),navigation_render_end(),!get_server_data("loading")&&navigation_detect()}}),get_navigation_menu_buttons())}function get_navigation_menu_buttons(){get_onbeforeunload_status()||$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-buttons=1&xhr-buttons-type="+($t_uri_virtualmin||$t_uri_cloudmin?1:0),data:!1,dataType:"text",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:($("body ul.user-links").html(e),theme_shell_link_control())}})}function get_default_content(){get_onbeforeunload_status()||($("body").append(''),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-default=1",data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{$("#____switch").html(e),$____switch=$("#____switch").text();var t=v___location_prefix+(3==v___user_level&&Core.moduleAvailable("mailbox")&&$t_uri_webmail?"/mailbox/index.cgi?id=INBOX":3==v___user_level?"/sysinfo.cgi":("/"==$____switch.substring(0,1)?"":"/")+$____switch);(Test.strContains(t,"mysql")||Test.strContains(t,"postgresql"))&&get_bundle_sql(),Test.strContains(t,v___module_file_manager)&&get_bundle_file_manager(),Test.strContains(t,"csf")&&get_bundle_csf(),get_pjax_content(t),$("#____switch").remove()}}}))}function get_default_virtualmin_content(e,t){if(!get_onbeforeunload_status()||t){var i,a="/virtual-server";if(i=1==get_server_data("initial-wizard")?a+"/wizard.cgi":!1!==e?a+"/summary_domain.cgi?dom="+e:"sysinfo.cgi"==settings_right_virtualmin_default||""==settings_right_virtualmin_default?"/sysinfo.cgi":"index.cgi"==settings_right_virtualmin_default?a+"/index.cgi":a+"/summary_domain.cgi?dom="+settings_right_virtualmin_default,t)return v___location_prefix+i;get_pjax_content(v___location_prefix+i)}}function get_default_cloudmin_content(e,t){if(!get_onbeforeunload_status()||t){var i;if(i=!1===e||settings_right_cloudmin_default||"0"==settings_right_cloudmin_default?"sysinfo.cgi"==settings_right_cloudmin_default||""==settings_right_cloudmin_default&&"0"!=settings_right_cloudmin_default?"sysinfo.cgi":"index.cgi"==settings_right_cloudmin_default?"server-manager/index.cgi":"server-manager/edit_serv.cgi?id="+settings_right_cloudmin_default:"server-manager/edit_serv.cgi?id="+e,t)return v___location_prefix+"/"+i;get_pjax_content(v___location_prefix+"/"+i)}}function get_navigation_and_content(e,t,i){get_onbeforeunload_status()||("virtualmin"===e?(get_navigation_menu_virtualmin(!1),1!=settings_right_reload&&1!==t||1===i||get_default_virtualmin_content(!1)):"cloudmin"===e?(get_navigation_menu_cloudmin(!1),1!=settings_right_reload&&1!==t||1===i||get_default_cloudmin_content(!1)):(0==navigation_dashboard_switch_available()&&get_navigation_menu_webmin(e),1!=settings_right_reload&&1!==t||1===i||get_default_content()))}function information_update(){if(!$("body .modal.in").length&&0==v___user_level){var e=$("body").find("#system-status"),t=e.length?e[0]:0;$("#right-side-tabs-sysinfo .graph-container").length||$("#right-side-tabs .info-container").html(get_right_panel_sysinfo_data()),t&&$(t).find('h3 > a[data-refresh="system-status"]').addClass("disabled").find("i").addClass("fa-spin");var i=$(".right-side-tabs-dismiss .fa-reload");i.addClass("fa-spin-fast"),setTimeout(function(){i.removeClass("fa-spin-fast")},3e3),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-info=1",data:!1,dataType:"json",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:($.each(e,function(e,i){if("cpu_percent"!=e&&"mem_percent"!=e&&"virt_percent"!=e&&"disk_percent"!=e||(Test.numeric(i)?localStorage.setItem(v___server_hostname+"-sysinfo_"+e+"_stats",i):localStorage.setItem(v___server_hostname+"-sysinfo_"+e+"_stats","")),t){if($(t).find('span[data-id="sysinfo_'+e+'"]').html(i),"local_time"==e||"uptime"==e||"running_proc"==e){var a=$(t).find('span[data-id="sysinfo_'+e+'"]'),n=$(t).find('span[data-id="sysinfo_'+e+'"] a'),s=$(t).find('span[data-id="sysinfo_'+e+'"]').text();"local_time"==e&&settings_window_replace_timestamps?n&&n.length?(s=$(t).find('span[data-id="sysinfo_'+e+'"] a').data("convertible-timestamp-full"),a.html(n.html(moment.unix(s).format(settings_window_replaced_timestamp_format_full)))):(s=$(t).find('span[data-id="sysinfo_'+e+'"] > span').data("convertible-timestamp-full"),a.html(moment.unix(s).format(settings_window_replaced_timestamp_format_full))):n&&n.length&&a.html(n.html(s))}if(page_sysinfo_sensor_update_label(),$(t).find('.piechart[data-charts="sysinfo_'+e+'"]').length){var _=$("body").find('.piechart[data-charts="sysinfo_'+e+'"]');_.length&&!isNaN(parseInt(i))&&_.data("easyPieChart").update(i)}"cpu_percent"!=e&&"mem_percent"!=e&&"virt_percent"!=e&&"disk_percent"!=e||localStorage.setItem(v___server_hostname+"-sysinfo_"+e+"_seen",i),$(t).find(".modal-backdrop").remove()}if($__id__=moment().unix(),"cpu_percent"==e||"mem_percent"==e||"virt_percent"==e||"disk_percent"==e||"csf_title"==e||"csf_remote_version"==e||"authentic_remote_version"==e||"package_message"==e?localStorage.getItem(v___server_hostname+"-sysinfo_"+e)||localStorage.setItem(v___server_hostname+"-sysinfo_"+e,i):i&&null!=i&&NaN!=i?localStorage.setItem(v___server_hostname+"-sysinfo_"+e,i):localStorage.setItem(v___server_hostname+"-sysinfo_"+e,""),localStorage.getItem(v___server_hostname+"-sysinfo_package_message_initial")||localStorage.setItem(v___server_hostname+"-sysinfo_package_message_initial",1),"authentic_theme_version"==e&&!localStorage.getItem(v___server_hostname+"-sysinfo_theme_current_version")&&i&&localStorage.setItem(v___server_hostname+"-sysinfo_theme_current_version",i.match(/^\d+|\d+\b|\d+(?=\w)/g)[0]+"."+i.match(/^\d+|\d+\b|\d+(?=\w)/g)[1]),"csf_data"==e&&!localStorage.getItem(v___server_hostname+"-sysinfo_csf_current_version")&&i&&localStorage.setItem(v___server_hostname+"-sysinfo_csf_current_version",i.match(/^\d+|\d+\b|\d+(?=\w)/g)[0]+"."+i.match(/^\d+|\d+\b|\d+(?=\w)/g)[1]),"csf_title"==e||"csf_data"==e||"csf_remote_version"==e||"authentic_remote_version"==e||"authentic_theme_version"==e||"package_message"==e){if("package_message"===e){if((localStorage.getItem(v___server_hostname+"-sysinfo_"+e)!=i||1==localStorage.getItem(v___server_hostname+"-sysinfo_package_message_initial"))&&i&&i.indexOf("badge-danger")>-1){var r=theme_language("theme_xhred_notifications_packages_updates"),o=$(i).html().replace(/badge-danger/g,"badge-success");localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_package_message",JSON.stringify({title:r,time:$__id__,timestamp:$__id__,message:o,readStatus:0,type:e,link:$(i).attr("href")})),slider_mark_group_notifications_read("package_message"),localStorage.setItem(v___server_hostname+"-sysinfo_"+e,i),localStorage.setItem(v___server_hostname+"-sysinfo_package_message_initial",0),notifications(r,o,e)}else"package_message"===e&&localStorage.setItem(v___server_hostname+"-sysinfo_"+e,i);$(i).find("i.badge:first-child").length||slider_mark_group_notifications_read("package_message")}var l=localStorage.getItem(v___server_hostname+"-sysinfo_theme_current_version");if(settings_sysinfo_theme_updates&&(0==localStorage.getItem(v___server_hostname+"-sysinfo_authentic_remote_version")&&localStorage.removeItem(v___server_hostname+"-sysinfo_authentic_remote_version"),l&&localStorage.getItem(v___server_hostname+"-sysinfo_authentic_remote_version")&&"authentic_remote_version"==e&&l';localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_authentic_remote_version",JSON.stringify({title:c,time:$__id__,timestamp:$__id__,message:d,readStatus:0,type:e,link:v___location_prefix+"/sysinfo.cgi"})),localStorage.setItem(v___server_hostname+"-sysinfo_"+e,i),localStorage.setItem(v___server_hostname+"-sysinfo_theme_current_version",i),notifications(c,d,e)}if("authentic_theme_version"!==e||Test.strContains(i,"CHANGELOG.md")||slider_mark_group_notifications_read("authentic_remote_version"),settings_sysinfo_csf_updates){var h=localStorage.getItem(v___server_hostname+"-sysinfo_csf_current_version");if(h&&null!=h&&localStorage.getItem(v___server_hostname+"-sysinfo_csf_remote_version")&&"csf_remote_version"==e&&h-1&&1!=localStorage.getItem(v___server_hostname+"-sysinfo_csf_not_running")){var g=theme_language("theme_xhred_notifications_firewall_danger"),u=theme_language("theme_xhred_notifications_firewall_danger_message").replace("%v",moment.unix($__id__).format(settings_window_replaced_timestamp_format_short));localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_csf_title",JSON.stringify({title:g,time:$__id__,timestamp:$__id__,message:u,readStatus:0,type:e,link:v___location_prefix+"/csf/index.cgi"})),slider_mark_group_notifications_read("csf_title"),localStorage.setItem(v___server_hostname+"-sysinfo_csf_not_running",1),notifications(g,u,"csf_remote_version")}else i&&-1===i.indexOf("label-danger")&&(slider_mark_group_notifications_read("csf_title"),localStorage.removeItem(v___server_hostname+"-sysinfo_csf_not_running"))}if("csf_deny"==e){var m=JSON.parse(i);$.each(m,function(t,i){var a=(i=i.split("|"))[0],n=i[1],s=i[2],_=i[3],r=(i[4],i[5],i[6],i[7]);if(r=r.replace("*Port Scan*",s&&_?'Port '+_+" scan":"Port scan"),!localStorage.getItem(v___server_hostname+"-allowed_trigger_"+(a+n.replace(/\./g,"0"))+"_csf_deny")){var o=theme_language("theme_xhred_notifications_firewall_warning"),l=r+(s&&_?" ("+s+":"+_+")":"");localStorage.setItem(v___server_hostname+"-notifications_"+(a+n.replace(/\./g,"0"))+"_csf_deny",JSON.stringify({title:o,time:$__id__,timestamp:$__id__,message:l,readStatus:0,type:e,link:v___location_prefix+"/csf/index.cgi"})),localStorage.setItem(v___server_hostname+"-allowed_trigger_"+(a+n.replace(/\./g,"0"))+"_csf_deny",1)}})}"cpu_percent"!=e&&"mem_percent"!=e&&"virt_percent"!=e&&"disk_percent"!=e||null!==localStorage.getItem(v___server_hostname+"-sysinfo_"+e+"_seen")&&i>=85&&localStorage.getItem(v___server_hostname+"-sysinfo_"+e+"_seen"),setTimeout(function(){if((localStorage.getItem(v___server_hostname+"-sysinfo_cpu_percent_stats")||localStorage.getItem(v___server_hostname+"-sysinfo_mem_percent_stats")||localStorage.getItem(v___server_hostname+"-sysinfo_virt_percent_stats")||localStorage.getItem(v___server_hostname+"-sysinfo_disk_percent_stats"))&&$("#right-side-tabs-sysinfo .graph-container").length){var t=!localStorage.getItem(v___server_hostname+"-sysinfo_"+e+"_stats"),a=$(".info-container .graph-container."+e);t?a.addClass("hidden").prev("br").addClass("hidden"):a.removeClass("hidden").prev("br").removeClass("hidden"),"cpu_percent"==e&&($("#right-side-tabs-sysinfo .graph-container."+e+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_load")).text(theme_language("theme_xhred_global_cpu_load")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_cpu_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_load")+")"),$("#right-side-tabs-sysinfo .graph-container."+e+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_cpu_percent_stats")+"%")),"mem_percent"==e&&($("#right-side-tabs-sysinfo .graph-container."+e+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_real_memory")).text(theme_language("body_real")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_mem_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_real_memory")+")"),$("#right-side-tabs-sysinfo .graph-container."+e+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_mem_percent_stats")+"%")),"virt_percent"==e&&($("#right-side-tabs-sysinfo .graph-container."+e+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_virtual_memory")).text(theme_language("body_virt")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_virt_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_virtual_memory")+")"),$("#right-side-tabs-sysinfo .graph-container."+e+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_virt_percent_stats")+"%")),"disk_percent"==e&&($("#right-side-tabs-sysinfo .graph-container."+e+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_disk_space")).text(theme_language("body_disk")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_disk_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_disk_space")+")"),$("#right-side-tabs-sysinfo .graph-container."+e+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_disk_percent_stats")+"%"))}if($('#right-side-tabs .info-container .info-list-data span[data-data="'+e+'"]').html(i),"package_message"==e&&Core.moduleAvailable("package-updates")&&$('#right-side-tabs .info-container .info-list-data span[data-data="'+e+'"]').html($(i).html($(i).html().split(",")[0])[0].outerHTML),"local_time"==e&&settings_window_replace_timestamps){(o=$('#right-side-tabs .info-container .info-list-data span[data-data="'+e+'"] a'))&&o.length&&o.html(o.next("span").detach());var n=$(".info-container").find("span[data-convertible-timestamp-full]"),s=n.attr("data-convertible-timestamp-full");n.html(moment.unix(s).format(settings_window_replaced_timestamp_format_full)),time.tictac(1)}if("cpu_temperature"==e){var _=0;$.each($(i).filter(".badge-cpustatus"),function(e,t){var a,n=parseInt($(this).text().split(":")[1]),s=n,r=$(this).text().indexOf("°C")>-1;"bg-warning"!=(a=$(this).text().indexOf("RPM")>-1?HTML.label.rpm(s):HTML.label.temperature(n,r))&&"bg-danger"!=a||(_=1),$("#right-side-tabs .info-container .badge-drivestatus.badge-cpustatus").length||$('strong[data-stats="cpu"] + br[data-stats="cpu"]').after(i.replace(/
| /gi,"")),$($("#right-side-tabs .info-container .badge-drivestatus.badge-cpustatus")[e]).html($(this).text()).removeClass(function(e,t){return(t.match(/(^|\s)bg-\S+/g)||[]).join(" ")}).addClass(a+"-dark")}).promise().done(function(){_||"undefined"!=typeof config_custom_force_display_cpu_sensors?$('.info-container [data-stats="cpu"]').removeClass("hidden"):$('.info-container [data-stats="cpu"]').addClass("hidden")})}if("hdd_temperature"==e){var r=0;$.each($(i).filter(".badge-drivestatus:not(.badge-cpustatus)"),function(e,t){var a,n=parseInt($(this).text().split(":")[1]),s=$(this).text().indexOf("°C")>-1;"bg-warning"!=(a=HTML.label.temperature(n,s))&&"bg-danger"!=a||(r=1),$("#right-side-tabs .info-container .badge-drivestatus:not(.badge-cpustatus)").length||$('strong[data-stats="drive"] + br[data-stats="drive"]').after(i.replace(/
| /gi,"")),$($("#right-side-tabs .info-container .badge-drivestatus:not(.badge-cpustatus)")[e]).html($(this).text()).removeClass(function(e,t){return(t.match(/(^|\s)bg-\S+/g)||[]).join(" ")}).addClass(a+"-dark")}).promise().done(function(){r||"undefined"!=typeof config_custom_force_display_drive_sensors?$('.info-container [data-stats="drive"]').removeClass("hidden"):$('.info-container [data-stats="drive"]').addClass("hidden")})}if("uptime"==e||"running_proc"==e){var o=$('#right-side-tabs .info-container .info-list-data span[data-data="'+e+'"] a');if(o&&o.length){var l=o.parent(),c=l.text();l.html(o.text(c))}}if("warning_si"==e&&((d=$("#right-side-tabs .info-container .warning-list-data")).html(i.replace(/<(script|link|meta)\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/type='submit'/g,"formtarget='page' type='submit'").replace(/class='ui_submit/g,"class='ui_submit btn btn-default btn-xs").replace(/ui_form_end_submit" type="button"/g,'ui_form_end_submit" type="submit" formtarget="page"').replace(/ui_form_end_submit/g,"ui_form_end_submit btn-tiny")),"
"==i&&d.empty()),"extended_si"==e){var d=$("#right-side-tabs .info-container .extended-list-data"),h=i.replace(/aria-expanded="true"/gi,'aria-expanded="false"').replace(/collapse in/gi,"collapse");opened_tabs=$("#extended_sysinfo .panel .in").map(function(){h=h.replace('data-toggle="collapse" href="#'+this.id+'" aria-expanded="false" aria-controls="'+this.id+'"','data-toggle="collapse" href="#'+this.id+'" aria-expanded="true" aria-controls="'+this.id+'"'),h=h.replace('div id="'+this.id+'" class="panel-collapse collapse"','div id="'+this.id+'" class="panel-collapse collapse in"')}).promise().done(function(){d.html('
'+h);var e=$("#right-side-tabs .extended-list-data");e.find("div.panel-heading:not(#status_services-status):not(#status-virtual-server):not(#acl_logins-acl):not(#sysinfo-virtual-server):not(#quota-virtual-server):not(#bw-virtual-server)").parent().remove(),$.each(e.find("div.panel-heading .panel-title"),function(){var e=$(this).find("a"),t="true"!=$(this).find("a").attr("aria-expanded")?1:0,i=t?"+":"—";$(this).append(''+i+""),e.text(Convert.strUpFirst($.trim(e.text())))}),e.find(".panel.panel-default").detach().appendTo("#right-side-tabs #extended_sysinfo"),e.find("div.panel-body").find("img").remove(),e.find('input[type="submit"]').addClass("btn btn-default btn-xs"),e.find('input[type="submit"]').parents("form").attr("formtarget","page"),e.find('button[type="button"].ui_submit').addClass("btn btn-default btn-xs"),e.find('button[type="button"].ui_submit').parents("form").attr("formtarget","page"),$("#extended_sysinfo .panel").on("show.bs.collapse",function(){$(this).find(".panel-title-status").removeClass("margined-right-2").text("—")}).on("hide.bs.collapse",function(){$(this).find(".panel-title-status").addClass("margined-right-2").text("+")})})}$.trim($(".info-list-data").text()).length&&setTimeout(function(){$("#right-side-tabs .is-sysinfo_data").removeClass("hidden"),$("#right-side-tabs .no-sysinfo_data").addClass("hidden")},100)},101)}),setTimeout(function(){slider_check_notifications()},3e3),t&&$(t).find('h3 > a[data-refresh="system-status"]').removeClass("disabled").find("i").removeClass("fa-spin"))}})}}function information_check(){if(setTimeout(function(){information_update()},1e4),settings_side_slider_enabled&&!$("body .modal.in").length)return setInterval(function(){information_update()},6e4*settings_side_slider_background_refresh_time)}function slider_display_notification_badges(){if(settings_side_slider_enabled&&settings_side_slider_notifications_enabled){var e="right-side-tab-notification-asterix",t="faa-ring faa-slow animated-hover",i=$(".right-side-tabs .list-group-item:not(.no-notifications, .opacity-0_3)").length;favicon.badge(i),i>0?($(".right-side-tabs-toggler button i.fa-bell").addClass(t),$(".right-side-tabs-toggler button span.badge").removeClass("hidden").text(i),$("#right-side-tabs ."+e).removeClass("hidden").text(i)):($(".right-side-tabs-toggler button i.fa-bell").removeClass(t),$(".right-side-tabs-toggler button span.badge").addClass("hidden").text(0),$("#right-side-tabs ."+e).addClass("hidden").text(0))}}function slider_check_notifications(){var $current_localData_notifications={};$.each(localStorage,function(e,t){if("string"==typeof e&&e.indexOf("notifications_")>-1&&e.indexOf(v___server_hostname)>-1){var i=e.split("_")[1],a=JSON.parse(t),n=a.title,s=a.time,_=a.timestamp,r=a.message,o=a.readStatus,l=a.type,c=a.link;$current_localData_notifications[s+"_"+n]=i+"~~~~"+n+"~~~~"+s+"~~~~"+_+"~~~~"+r+"~~~~"+o+"~~~~"+l+"~~~~"+c,$('.list-group-item[id="'+i+'"][data-type="'+l+'"]').length&&$('.list-group-item[id="'+i+'"][data-type="'+l+'"] .list-group-item-heading small').text(moment.unix(s).fromNow())}});var package_message_num=Object.values($current_localData_notifications).filter(function(e){return e.indexOf("package_message")>-1}).length,csf_remote_version_num=Object.values($current_localData_notifications).filter(function(e){return e.indexOf("csf_remote_version")>-1}).length,authentic_remote_version_num=Object.values($current_localData_notifications).filter(function(e){return e.indexOf("authentic_remote_version")>-1}).length,csf_title_num=Object.values($current_localData_notifications).filter(function(e){return e.indexOf("csf_title")>-1}).length,keys=[];for(var key in $current_localData_notifications)$current_localData_notifications.hasOwnProperty(key)&&keys.push(key);$current_localData_notifications_sorted_keys=keys.sort(),$.each($current_localData_notifications_sorted_keys,function(i,v){var vx=$current_localData_notifications[v],$__id__=vx.split("~~~~")[0],$__data__title=vx.split("~~~~")[1],$__data__time=vx.split("~~~~")[2],$__data__timestamp=vx.split("~~~~")[3],$__data__message=vx.split("~~~~")[4],$__data__readStatus=vx.split("~~~~")[5],$__data__type=vx.split("~~~~")[6],$__data__link=vx.split("~~~~")[7];if("package_message"==$__data__type||"csf_remote_version"==$__data__type||"authentic_remote_version"==$__data__type||"csf_title"==$__data__type){var $__num=eval($__data__type+"_num");i+1<$__num&&($__data__readStatus=1)}$('.list-group-item[id="'+$__id__+'"][data-type="'+$__data__type+'"]').length||slider_add_notification($__id__,$__data__title,$__data__time,$__data__timestamp,$__data__message,$__data__readStatus,$__data__type,$__data__link)})}function slider_remove_all_notifications(){$.each(localStorage,function(e,t){"string"==typeof e&&e.indexOf("notifications_")>-1&&e.indexOf(v___server_hostname)>-1&&delete localStorage[e]})}function slider_mark_notification_read(e,t,i,a){var n=JSON.parse(localStorage.getItem(v___server_hostname+"-notifications_"+e+"_"+t));n&&localStorage.setItem(v___server_hostname+"-notifications_"+e+"_"+t,JSON.stringify({title:n.title,time:n.time,timestamp:n.timestamp,message:n.message,readStatus:i,type:n.type,link:n.link})),a&&slider_display_notification_badges()}function slider_mark_group_notifications_read(e){var t="";e&&(t='[data-type="'+e+'"]'),$(".right-side-tabs .list-group-item"+t+":not(.no-notifications)").each(function(){$(this).addClass("opacity-0_3"),slider_mark_notification_read($(this).attr("id"),$(this).data("type"),1,0)}).promise().done(function(){slider_display_notification_badges()})}function slider_add_notification(e,t,i,a,n,s,_,r){$(".right-side-tabs .list-group").prepend(' \t\t\t
\t\t\t
\t\t\t \t\t\t \t\t\t
'+t+" "+moment.unix(i).fromNow()+"
\t\t\t "+n+" \t\t\t
\t\t\t
\t\t\t"),$(".right-side-tabs-no-notifications").remove(),slider_display_notification_badges(),v___initial_load||slider_add_no_notifications()}function slider_add_no_notifications(){if(0===$(".right-side-tabs .list-group-item").length){var e=theme_language("theme_xhred_notification_none");$(".right-side-tabs .list-group").prepend('
'+(e?e.toUpperCase():"")+"
"),$(".right-side-tabs-no-notifications").animate({opacity:"1"},$settings_animation_left_slide_time,function(){})}setTimeout(function(){slider_display_notification_badges()},$settings_animation_left_slide_time)}function fetch_right_pane_favorites(){if("function"==typeof favorites_get){var e=favorites_get(),t=$("#right-side-tabs .no-favorites_data");$("#right-side-tabs .favorites-dcontainer .right_pane_favorites_link, #right-side-tabs .favorites-dcontainer .right_pane_favorites_num").remove(),e.length?($.each(e,function(e,t){$("#right-side-tabs .favorites-dcontainer").append(''+(e+1)+'  '+t.title+"")}),t.addClass("hidden")):t.removeClass("hidden")}}function get_right_panel_sysinfo_data(){$_____________got_rp__sys_dat=1;var e=Core.moduleAvailable("package-updates"),t=Core.moduleAvailable("proc")?"":" pointer-events-none",i=Core.moduleAvailable("disk-usage")||Core.moduleAvailable("quota")?"":" pointer-events-none",a=e?"":' class="hidden"',n=localStorage.getItem(v___server_hostname+"-sysinfo_package_message");return'
'+theme_language("theme_xhred_notification_no_data").toUpperCase()+"
"}function editor_html_init(e){CKEDITOR_BASEPATH=v___location_prefix+"/unauthenticated/js/ckeditor/",$.getScript(v___location_prefix+"/unauthenticated/js/ckeditor/ckeditor.js",function(t,i,a){/** * Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ -CKEDITOR.env.ie&&CKEDITOR.env.version<9&&CKEDITOR.tools.enableHtml5Elements(document),CKEDITOR.config.height=$(window).height()/e[1],CKEDITOR.config.width="auto",CKEDITOR.config.removePlugins="save, about",(v___theme_night_mode_enabled||v___theme_night_mode?1:0)&&(CKEDITOR.config.contentsCss=v___location_prefix+"/unauthenticated/css/palettes/nightrider_ckeditor_content."+v___source_type+".css?"+v___theme_version_plain,$('html head link[href*="css/nightrider_ckeditor."]').length||$("html head").append(''));var n="%REV%"==CKEDITOR.revision||!!CKEDITOR.plugins.get("wysiwygarea"),s=CKEDITOR.document.getById(e[0]);if(n){var _=get_server_data("language");CKEDITOR.replace(e[0],{language:"zh"==_?"zh-cn":_})}else s.setAttribute("contenteditable","true"),CKEDITOR.inline(e[0]);if(!0===e[2])for(var r in CKEDITOR.instances)CKEDITOR.instances[r].on("change",function(e){e.removeListener(),set_onbeforeunload_status(1,0)});"edit_web"===e[3]&&setTimeout(function(){$("hr + b").removeClass("hidden"),$(".__tmp__spinner").remove()},100)})}function table_data_init(e,t,i,a){function n(e){e.DataTable({order:[],aaSorting:[],bDestroy:!0,bPaginate:!1,columnDefs:[a],bInfo:!1,bStateSave:t,destroy:!0,dom:i?"Rlfrtip":"f",oLanguage:{sEmptyTable:theme_language("theme_xhred_datatable_semptytable"),sInfo:theme_language("theme_xhred_datatable_sinfo"),sInfoEmpty:theme_language("theme_xhred_datatable_sinfoempty"),sLengthMenu:theme_language("theme_xhred_datatable_slengthmenu"),sLoadingRecords:theme_language("theme_xhred_datatable_sloadingrecords"),sProcessing:theme_language("theme_xhred_datatable_sprocessing"),sSearch:" ",sZeroRecords:theme_language("theme_xhred_datatable_szerorecords")},initComplete:function(e){$(".dataTables_filter").find('input[type="search"]').attr("placeholder",theme_language("theme_xhred_datatable_filter"))}})}if(void 0===t&&(t=!1),void 0===i&&(i=!1),void 0===a&&(a=!1),Core.curModuleFile("virtual-server","index.cgi")&&(t=!0),$.fn.dataTableExt.sErrMode="throw",Core.curModuleFile("virtual-server","list_users.cgi")){var s=$(".table thead tr th").filter(function(){return $(this).text().match(/Last login|Dernière Connexion|Siste innlogging|Letzer Login|Laatste login/)}).index();s>-1?$.each(e.find("tbody tr td:nth-child("+(s+1)+")"),function(e,t){var i=$(this).text();/Never|Jamais|Aldri|Niemals|Nigdy|Nooit/i.test(i)&&(i=0),$(this).attr("data-sort",i)}).promise().done(function(){n(e)}):n(e)}else n(e)}function favorites_check(){return $("#favorites-menu .favorites-menu-content li:not(.exclude)").length}function favorites_get(){var e=[];return $.each($("#favorites-menu .favorites-menu-content li:not(.exclude) a"),function(){var t=$(this).text(),i=$(this).attr("href"),a=$(this).find(".wbm-sm").attr("data-product");favorite={},favorite.link=navigation_trigger(i,1),favorite.title=t.trim(),favorite.icon="virtualmin"==a?a+"":a,e.push(favorite)}),e}function favorites_init(){"function"==typeof sortable&&$("#favorites-menu > div > nav > ul").length&&sortable("#favorites-menu > div > nav > ul",{items:":not(.favorites-title)",forcePlaceholderSize:!1}).on("sortupdate",function(){favorites_save()})}function favorites_save(){$.ajax({type:"POST",url:v___location_prefix+"/settings-favorites_save.cgi",data:{favorites:'{"favorites":'+JSON.stringify(favorites_get(),null,4).replace(/\\n/g,"\\n").replace(/\\'/g,"\\'").replace(/\\"/g,'\\"').replace(/\\&/g,"\\&").replace(/\\r/g,"\\r").replace(/\\t/g,"\\t").replace(/\\b/g,"\\b").replace(/\\f/g,"\\f")+"}"},success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:fetch_right_pane_favorites()},error:function(e){}}),sortable("#favorites-menu > div > nav > ul")}function favorites_add(e,t,i){var a="favorites-menu .favorites-menu-content";0===favorites_check()&&($("#"+a+" li.favorites-no-message").addClass("hidden"),$("#"+a+" .favorites-title sup a").removeClass("hidden")),$("#"+a+" li.favorites-title").after('')}function favorites_empty(){var e="favorites-menu .favorites-menu-content";0===favorites_check()&&($("#"+e+" li.favorites-no-message").removeClass("hidden"),$("#"+e+" .favorites-title sup a").addClass("hidden"))}function favorites_remove(e){$("#favorites-menu .favorites-menu-content").find('a[href="'+navigation_trigger(e,1)+'"]').parent("li").remove(),$("#headln2c > .favorites, .xcustom-favorites").addClass("fa-star-o").removeClass("fa-star text-warning"),favorites_empty(),favorites_save()}function favorites_detect(){var e=$("#favorites-menu .favorites-menu-content li:not(.exclude) a").map(function(e,t){return navigation_trigger($(t).attr("href"),1)}).toArray(),t=$("#headln2c > .favorites, .xcustom-favorites"),i=navigation_trigger(URI(v___location).resource(),1),a=i+"index.cgi";$.inArray(i,e)>-1||$.inArray(a,e)>-1?t.addClass("fa-star").removeClass("fa-star-o"):t.removeClass("fa-star").addClass("fa-star-o")}function page_sysinfo_sensor_update_label(){var e=$("#system-status .badge-drivestatus");e.length&&$.each(e,function(e,t){var i,a=$(this).text(),n=parseInt(a.split(":")[1]),s=n,_=a.indexOf("°C")>-1;i=a.indexOf("RPM")>-1?HTML.label.rpm(s):HTML.label.temperature(n,_),Test.string(i)&&$(this).removeClass(function(e,t){return(t.match(/(^|\s)bg-\S+/g)||[]).join(" ")}).addClass(i)})}function page_table_rows_control(){$("body").attr("class")&&$("body").attr("class").indexOf(v___module_file_manager)>-1||$.each($(".ui_checked_columns"),function(e,t){!$(t).find("a[href]")||$("body").hasClass("servers")||$(this).hasClass("selectable")||$(t).addClass("cursor-pointer").find("td").addClass("cursor-pointer").find("label").addClass("cursor-pointer").find("tt").addClass("cursor-pointer"),$(t).find("td:not(.selectable)").click(function(e){if(!$(e.target).is(".awobject, .iawobject, .lawobject, .awcheckbox, .awradio")&&$(t).find("a[href]")&&!$("body").hasClass("servers")){var i=$(t).find("a[href]")[0],a=($(this).parents("tr.ui_checked_columns"),$(e.target).find('input[type="checkbox"]:not(":disabled")').length);!i||$(this).find("a").attr("href")!==$(i).attr("href")&&void 0!==$(this).find("a").attr("href")||$(e.target).is("select, input, .awobject, .iawobject, .lawobject, .awcheckbox, .awradio")||0!==$(this).parent("tr").find('a[href*="download.cgi"]').length||($(i).attr("target")?(e.preventDefault(),!a&&window.open($(i).attr("href"),$(i).attr("target"))):e.originalEvent&&(e.preventDefault(),get_pjax_content($(i).attr("href")))),a&&get_pjax_content($(i).attr("href"))}}),$(t).find("td").contextmenu(function(e){var t=$(this).parents("tr.ui_checked_columns");e.preventDefault(),($(this).parents("tr").find('input[type="checkbox"]:first').length&&0===$(this).parents("tr").find('input[type="checkbox"][disabled]').length||$(this).parents("tr").find('input[type="checkbox"][disabled]').length&&$(this).parents("tr").find("input").length>1)&&(t.find('input[type="checkbox"]:first').is(":checked")?t.removeClass("hl-aw"):t.addClass("hl-aw"),"function"==typeof __r____changed&&__r____changed(),t.find('input[type="checkbox"]:first').trigger("click"))})})}function page_radios_evolve(){"conf"!=get_server_data("post")&&$.each($('.container-fluid input[type="radio"]:not(.iawobject), .container-fluid input[type="checkbox"]:not(.iawobject)'),function(e,t){if(1!==$(this).data("xdn")){$(this)[0]&&($___text=$(this)[0].nextSibling);var i=$(this).next('input:not([type="radio"], [type="checkbox"], [type="hidden"]), select, textarea'),a=$___text&&$___text.nodeValue&&$.trim($___text.nodeValue).length>1,n=(n=$.trim((a?$___text.nodeValue:" ").replace(/
/g,"<hr>").replace(/
/g,"<header>"))).length&&" "!=n?n+"  ":n,s=$(this).attr("type").toLowerCase(),_=(_=$(this).parents(".tab-pane").attr("id"))&&_.length?_.replace(/[^a-zA-Z0-9_-]+/g,""):0,r=Math.floor(9e4*Math.random())+1e4,o=("eid_"+$(this).attr("name")+"_"+r+"_"+e+"_"+_).replace(/[^a-zA-Z0-9_-]+/g,"_"),l=$(this).attr("id"),o=l&&1===$("body").find("#"+l.replace(/[^a-zA-Z0-9_-]+/g,"_")).length?l.replace(/[^a-zA-Z0-9_-]+/g,"_"):o;if(0===$(this).next("label").length&&0===i.length&&a){$(this).addClass("iawobject");var c='for="'+o+'"';$(this).attr("id",o),$($___text).wrap('"),$($___text).remove(),$(this).next("label").addBack().wrapAll(''),$(this).data("xdn",1)}else if(0!==i.length||0!==$(this).next("label").length||1!==$(this).prev("label").length||a)0!==i.length||0!==$(this).next("label").length||a||($(this).addClass("iawobject"),$(this).attr("id",o),$(this).after(''),$(this).next("label").addBack().wrapAll(''),$(this).data("xdn",1));else{var d=$(this).prev("label"),h=d.text();$(this).addClass("iawobject"),$(this).attr("id",o),$(this).after('"),$(this).next("label").addBack().wrapAll(''),$(this).removeClass("form-control").css("width","initial"),d.remove(),$(this).data("xdn",1)}1===i.length&&0===$(this).next("label").length&&($(this).addClass("iawobject"),$(this).attr("id",o),$(this).after('"),$(this).next("label").addBack().wrapAll(''),a&&$($___text).remove(),$(this).data("xdn",1))}})}function chooser_get(e){$(".mppopup .cspinner.hidden").removeClass("hidden"),$.ajax({type:"POST",url:e,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var t=e.replace(/<(!doctype|script|link|meta)\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/<\/body>|<\/html>/gi,""),i=$(t).filter(".table").html(),a=$(t).filter(".table").prev("b").html();a=chooser_breadcrumbs(a),$(".mppopup .modal-body").html(a+''+i+"
"),$v__mpp__g_gp=0,$(".mppopup_filter_input").focus(),$(".mppopup_filter_input").val("")}}})}function chooser_get_link(e){return e.replace(/&file.*&chroot/,"&file="+Convert.uriEncodeComponent(($v__mpp__g_ol+"/").replace(/\/\/+/g,"/").replace(/:\//g,"://"))+"&chroot")}function chooser_get_target(e,t){var i=e.prev('input[type="text"], input[name]');return i.is("input")||e.prev("textarea").length||e.prev("br").prev("textarea").length?i.length||i.is("input")||!t||(i=e.prev("textarea")).length||(i=e.prev("br").prev("textarea")):i=e.prev("span:not(.awradio)").find('input[type="text"]'),i}function chooser_control(e,t,i){if(i){if($(".refInputData").is("textarea")){var a=$(".refInputData");a.val()?a.val(a.val()+"\n"+e.replace(/\/\/+/g,"/").replace(/:\//g,"://")):a.val(e.replace(/\/\/+/g,"/").replace(/:\//g,"://"))}else $(".refInputData").val(e.replace(/\/\/+/g,"/").replace(/:\//g,"://"));var n=$(".refInputData").parent("td").prev("td").find('input[type="radio"]'),s=$(".refInputData").parent("span").prev("span").find('input[type="radio"]'),_=$(".refInputData").prev("span").find('input[type="radio"]'),r=$(".refInputData").prev("select").find('option[value="*"]');s.length?s.trigger("click"):_.length?_.trigger("click"):r.length?r.parent("select").val("*").trigger("change"):n.trigger("click")}t&&$("body .mppopup").modal("hide")}function chooser_breadcrumbs(e){e=$.url(e).attr("path").replace(/\/$/g,"").split("/");var t="";return $.each(e,function(e,i){t+=""===i?''+(0==get_access_level()?'':'')+"\n":''+i+"\n"}),'"+''}function popover_visibility_position(e){$.each($(".module-help"),function(t,i){e.is($(this))?$(this).css({"z-index":214748364+t,opacity:1}):$(this).css({"z-index":214748364-t,opacity:.85})})}function page_render(e){if(update_navigation_module_name(),e&&"undefined"!=typeof __cm_editor_static&&(__cm_editor_static.toTextArea(),$('button[data-form="submitter"]').unwrap(),$('.CodeMirror, button[data-form="submitter"] + button, .-helper.__helper').remove()),function(){var e=$("body");e.off("mousedown.cm1 keydown.cm1"),e.undelegate('button[type="submit"]:not(.disabled)',"click.cm"),e.undelegate('button[data-form="submitter"]:not(.disabled)',"click.cm")}(),$("body").find('a[href*="virtual-server/switch_user.cgi"]').attr("target","_parent"),$("body").attr("style",get_server_data("style")),$.each($('select[onchange="form.submit()"]'),function(){$(this).removeAttr("onchange").addClass("onchange_form_submit_triggger")}),editor_init_check()){var t=$('select[name="file"]');t.addClass("onchange_form_submit_triggger"),t.next("button.ui_form_end_submit").addClass("hidden")}v___available_navigation&&(Core.curModule("tunnel")||Core.curModule("updown")||Core.curModuleFile("mysql","backup_form.cgi")||Core.curModuleFile("postgresql","backup_form.cgi"))&&$("form").on("submit",function(e){var t=$(quirks.active_element());Core.curModule("updown")&&!$('a[href="#att_fetch"]').parent().is(".active")||(Core.curModuleFile("mysql","backup_form.cgi")||Core.curModuleFile("postgresql","backup_form.cgi"))&&!$('input[name="dest"][value="1"]').is(":checked")&&t.is('[name="backup"]')||t.is('[name="save"]')||(e.preventDefault(),e.stopPropagation(),$.ajax({type:$(this).attr("method")?"GET":"POST",url:v___location_prefix+"/"+v___module+"/"+$(this).attr("action"),data:get_form_data($(this)),dataType:"text",complete:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:(theme_open_new_tab(this.url),t.removeClass("disabled").find("i").removeClass("invisible").next(".cspinner_container").remove())}}))}),check_location_resource("/config.cgi?tunnel")&&$('table table[width="100%"] tr:first-child').addClass("hidden"),$.each($('tr td:last-child a:contains("..")'),function(){v___location_path==v___location_prefix+"/virtual-server/list_databases.cgi"&&$(this).html($(this).text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-info btn-xxs").removeClass("ui_link")}),0==get_access_level()&&v___available_navigation&&!e&&$("#headln2c").prepend(' '),favorites_empty(),favorites_detect(),$(".switch-toggle").find('label[for="open_thirdlane"]').length&&$('.switch-toggle input:not([id="open_webmin"])').each(function(){$(this).removeAttr("checked")}).promise().done(function(){$("#open_webmin").prop("checked",!0)}),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"init/"&&$("table.table tbody tr").addClass("ui_checked_columns"),page_table_rows_control(),!e&&page_radios_evolve();$('.ui_checked_columns td.ui_checked_checkbox input[type="checkbox"]:checked:not(disabled)').parents("tr.ui_checked_columns").addClass("hl-aw");if($("body").hasClass("servers")&&$('form[action="delete_servs.cgi"] a.icon_link, form[action="delete_servs.cgi"] a.ui_link, form[action="delete_servs.cgi"] .col-xs-1').on("click",function(e){if($(e.target).is(".gl-icon-select"))v___available_navigation?$(this).trigger("contextmenu"):$(this).parents(".gl-icon-container").trigger("contextmenu");else{var t=v___location_href+$(this).attr("href"),i=$(this).attr("href");$(this);i&&i.indexOf("edit_serv.cgi")>-1||i&&i.indexOf("logout.cgi")>-1?void 0!==e.originalEvent&&$.pjax.click(e,{timeout:0,push:get_pjax_push(),type:get_pjax_type(),container:"[data-dcontainer]",fragment:"[data-dcontainer]"}):i&&-1===i.indexOf("://")?open(t):open(i),e.preventDefault(),e.stopPropagation()}}),v___location_path!=v___location_prefix+"/apache/edit_global.cgi"&&v___location_path!=v___location_prefix+"/apache/edit_virt.cgi"&&v___location_path!=v___location_prefix+"/apache/edit_dir.cgi"||$.each($(".ui_opt_textbox.form-control"),function(){$(this).parent("span").next("button.btn.btn-default.file_chooser_button").length>0&&$(this).css("margin-right","4px")}),e||($(".opener_container").length&&$.each($(".opener_container"),function(){$(this).find(".opener_shown").is(":visible")&&$(this).parent("tr").prev("tr").find("td a:nth-child(1)").addClass("opener_container_opened").removeClass("opener_container_closed")}),$(".opener_shown").length>0&&$(".opener_trigger").length>0&&($(".panel-body .ui_form .table tbody tr").removeClass("thead"),$(".opener_trigger").parents("table.table").addClass("opener_table_style"),$(".opener_trigger").parents("tr").addClass("_c__op_r").attr("style","border: 0 !important"),$(".opener_trigger").parent("td").addClass("_c__op_d"),$(".opener_trigger").parent("td").find("a").addClass("link_hover_effect link_hover_effect_style_extra")),$('a[href^="javascript:hidden_opener"]:not(".opener_trigger")').length>0&&($('a[href^="javascript:hidden_opener"]:not(".opener_trigger")').each(function(e,t){var i=!!(v___location_path==v___location_prefix+"/virtual-server/backup_form.cgi"&&v___location_href&&v___location_href.indexOf("?sched=")>-1);if($(this).find("img").length>0&&$(this).remove(),$(this).css("border-bottom","0"),$(this).parents("table.table").addClass("opener_table_style_small"),$(this).parent("td").addClass("opener_table_cell_style_small"),i||$(this).parent("td").addClass("opener_table_cell_style_small opener_table_cell_style_small_exclusion_border_top"),$(this).parent("td").find("a").addClass("link_hover_effect link_hover_effect_style"),$(this).parent().is(".panel-body")||$(this).parent().is(".ui_form")){var a=$(this),n=a.parent().is(".panel-body")?".panel-body":".ui_form";a.parent(n).find('a[href^="javascript:hidden_opener"]:eq(1)').wrapAll('
'),Core.curModuleFile("bind8","edit_zonekey.cgi")&&a.parent(n).find('a[href^="javascript:hidden_opener"]:eq('+(e+1)+")").wrapAll('
'),a.parent('.panel-body > a[href^="javascript:hidden_opener"]:first-child').remove();var s=a.parent(n).find(".opener_extra_container");$(s).next("br").remove(),$(s).addClass("opener_extra_container_style"),$(s).find("a").addClass("opener_extra_container_a_style link_hover_effect"),$(s).next(".opener_hidden").attr("style","padding:8px")}}),$.each($(".opener_hidden"),function(){$(this).css("display","none")})),$("a.opener_trigger").each(function(){$(this).parent("td").css("text-align","left")}),$('form[action*="seen_newfeatures.cgi"]').each(function(){$(this).parents("table.table-striped").next(".ui_form_end_buttons").css("margin-top","14px")}),$("#tall_0").before("
"),$(".opener_container").each(function(e,t){$(this).find("div").hasClass("opener_hidden")?$(this).hide():$(this).show()}),$.each($("div.barchart"),function(){var e=$(this).find('img[src*="red.gif"]'),t=$(this).parent("td").contents().filter(function(){return 3==this.nodeType}).text();e&&e.attr("width")&&$(this).parent("td").html('
'+t+'
'+e.attr("width")+"
")}),$('.panel-body > form > table > tbody > tr > td:has(input[type="submit"])').parents("table.table-hardcoded > tbody > tr").css("border","none").parents("table").css("margin-top","20px"),$('.panel-body > form > table > tbody > tr > td:has(input[type="submit"])').parents("table.table-hardcoded > tbody").css("border","none"),$('.ui_grid_table > tbody > tr.ui_grid_row > td:has(button[type="submit"])').parents("table.ui_grid_table").css("border","none"),$("form.ui_form > table label.radio, form.ui_form > table label.checkbox").each(function(){var e=$(this),t=e.find("i.fa"),i=e.find("i.fa").text().trim(),a=e.text().trim();0===i.length&&0===a.length&&t.parent("label").remove()})),v___location_path&&(v___location_path.indexOf("/webmin/edit_themes.cgi")>-1||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-user.cgi")){v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-user.cgi"&&navigation_clear();var i='form[action*="settings.cgi"] select, form[action*="save_config.cgi"] select, form[action*="settings.cgi"] input, form[action*="save_config.cgi"] input';$("body").undelegate(i,"change"),$("body").on("change",i,function(e){var t=$(this).val();if("true"==t||"false"==t){if("true"==t)i=!0;else if("false"==t)i=!1}else var i=t;window[$(this).attr("name")]=i,void 0!==e.originalEvent&&(v___initial_load&&"settings-user.cgi"!==v___location_file?v___initial_load=0:theme_settings_controls(1))});var a='form[action*="settings.cgi"] input, form[action*="save_config.cgi"] input';$("body").undelegate(a,"keydown"),$("body").on("keydown",a,function(e){void 0!==e.originalEvent&&theme_settings_controls(1)}),v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-user.cgi"&&$('button[type="button"][name="save_user"]').on("click",function(e){e.preventDefault(),e.stopPropagation(),theme_config("save"),navigation_render_start(),spinnerfy_buttons($(this),[-.5,-25,"small",750]),setTimeout(function(){navigation_update()},1400)}),$(function(){function t(){$("body").undelegate("#atrestore:not(.disabled)","click"),$("body").on("click","#atrestore:not(.disabled)",function(){set_onbeforeunload_status(0,0),$(this).off();var e=$(this);e.hasClass("btn-inverse")||setTimeout(function(){spinnerfy_buttons(e,[1.5,-33,"small",!1]);var t=$(".ui_form").serialize();$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-settings=1&restore=1",data:t,success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:theme_reload()},error:function(t){e.addClass("btn-danger").removeClass("btn-default btn-inverse opacity-0_5")}})},0)})}Core.moduleAvailable("webmin")&&!e&&($(".container-fluid .nav.nav-tabs").prepend('
  • '),$(".container-fluid .tab-pane").first().before('
    '),$('.container-fluid .nav-tabs a[href="#atsettings"]').tab("show")),e||$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-settings=1",data:!1,dataType:"text",success:function(e){function i(e){void 0===e&&(e=$('input[name="settings_right_hide_table_icons"]:checked'));var t=["settings_right_small_table_icons","settings_right_animate_table_icons","settings_right_grayscaled_table_icons"];"true"==e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!0),$('input[name="'+t+'"]').parent(".aradio").addClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!1),$('input[name="'+t+'"]').parent(".aradio").removeClass("disabled")})}function a(e){void 0===e&&(e=$('input[name="settings_hotkeys_active"]:checked'));var t=["settings_hotkey_custom_1","settings_hotkey_custom_2","settings_hotkey_custom_3","settings_hotkey_custom_4","settings_hotkey_custom_5","settings_hotkey_custom_6","settings_hotkey_custom_7","settings_hotkey_custom_8","settings_hotkey_custom_9","settings_hotkey_toggle_modifier","settings_hotkey_toggle_key_webmin","settings_hotkey_toggle_key_virtualmin","settings_hotkey_toggle_key_cloudmin","settings_hotkey_toggle_key_usermin","settings_hotkey_toggle_key_webmail","settings_hotkey_focus_search","settings_hotkey_toggle_slider","settings_hotkey_reload","settings_hotkey_reload","settings_hotkey_toggle_key_night_mode","settings_hotkey_sysinfo","settings_hotkey_favorites"];"false"==e.val()?$.each(t,function(e,t){$('input[name="'+t+'"], select[name="'+t+'"]').prop("disabled",!0)}):$.each(t,function(e,t){$('input[name="'+t+'"], select[name="'+t+'"]').prop("disabled",!1)})}function n(e){void 0===e&&(e=$('input[name="settings_side_slider_enabled"]:checked'));var t=["settings_side_slider_palette","settings_side_slider_fixed","settings_side_slider_background_refresh_time","settings_side_slider_sysinfo_enabled","settings_side_slider_notifications_enabled","settings_side_slider_favorites_enabled"];"false"==e.val()?$.each(t,function(e,t){"settings_side_slider_fixed"==t&&$('input[name="settings_side_slider_fixed"][value="false"]').trigger("click"),$('input[name="'+t+'"], select[name="'+t+'"]').prop("disabled",!0).parent(".aradio").addClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"], select[name="'+t+'"]').prop("disabled",!1).parent(".aradio").removeClass("disabled")})}function s(e){void 0===e&&(e=$('input[name="settings_sysinfo_easypie_charts"]:checked'));var t=["settings_sysinfo_easypie_charts_size","settings_sysinfo_easypie_charts_width","settings_sysinfo_easypie_charts_scale"];"true"==e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!1).removeClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!0).addClass("disabled")})}function _(e){void 0===e&&(e=$('input[name="settings_sysinfo_theme_updates"]:checked'));var t=["settings_sysinfo_theme_patched_updates"];"true"==e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!1).removeClass("disabled")}):($('input[name="settings_sysinfo_theme_patched_updates"][value="false"]').trigger("click"),$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!0).addClass("disabled")}))}if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{$("#atsettings").html(e),page.render.module_config([0,1,0,0,0,0,0,1]);var r=$("div#atsettings").find(".ui_form");$__theme_text_right_save=r.data("text-save"),$__theme_text_right_saved=r.data("text-settings_right_saved"),$__theme_text_right_saving=r.data("text-settings_right_saving"),$__theme_text_right_restore_defaults=r.data("text-settings_right_restore_defaults"),$__theme_text_right_restored=r.data("text-settings_right_restored"),$__theme_text_right_restoring=r.data("text-settings_right_restoring"),$__theme_text_right_error=r.data("text-error"),$('.container-fluid .nav-tabs a[href="#atsettings"]').text(r.data("text-current_theme")),$("div#atsettings").removeClass("text-center"),t(),theme_settings_update();var o=$("body").find(".fa.fa-sub-title").parent("span");$(o).next("br").remove(),$(o).next("div.smaller").attr("style","margin-top: -15px !important"),o.remove(),i(),$('input[name="settings_right_hide_table_icons"]').on("change",function(){i($(this))}),a(),$('input[name="settings_hotkeys_active"]').on("change",function(){a($(this))}),n(),$('input[name="settings_side_slider_enabled"]').on("change",function(){n($(this))}),s(),$('input[name="settings_sysinfo_easypie_charts"]').on("change",function(){s($(this))}),_(),$('input[name="settings_sysinfo_theme_updates"]').on("change",function(){_($(this))}),$('select[name="settings_navigation_color"]').on("click keyup change",function(e){var t=$(this).val();get_server_data("data-theme",t),$("link[data-palette]").remove(),"blue"!=t&&$("head").append(''),get_server_data("data-default-theme",t),$("body .user-link.palette-toggle").find(".fa-sun").trigger("click"),theme_settings_update()}),$('select[name="settings_background_color"]').on("click keyup change",function(e){var t=$(this).val();get_server_data("data-background-style",t),get_server_data("data-background-style",t),$("link[data-palette]").remove(),"gainsboro"!=t&&($("head").append(''),$('select[name="settings_navigation_color"]').val("gunmetal").trigger("change")),theme_settings_update()}),$('select[name="settings_side_slider_palette"]').change(function(e){$("body .right-side-tabs, body .right-side-tabs-toggler").attr("data-background-style",$(this).val())}),$('input[name="settings_side_slider_enabled"]').change(function(e){"true"==$(this).val()?($("body .right-side-tabs-toggler").removeClass("hidden"),$("body .right-side-tabs").removeClass("hidden"),$('input[name="settings_side_slider_sysinfo_enabled"][value="true"], input[name="settings_side_slider_notifications_enabled"][value="true"], input[name="settings_side_slider_favorites_enabled"][value="true"]').trigger("click")):($("body .right-side-tabs-toggler").addClass("hidden"),$("body .right-side-tabs").addClass("hidden")),theme_settings_update()}),$('input[name="settings_side_slider_fixed"]').change(function(e){set_side_slider_visibility("true"==$(this).val()?1:0),theme_settings_update()}),$('input[name="settings_side_slider_sysinfo_enabled"], input[name="settings_side_slider_notifications_enabled"], input[name="settings_side_slider_favorites_enabled"]').change(function(e){var t="right-side-tabs-"+$(this).attr("name").split("_")[3],i=$(this).attr("name"),a=$("body").find("#"+t).hasClass("active"),n=$('input[name="settings_side_slider_sysinfo_enabled"][value="true"]:checked, input[name="settings_side_slider_notifications_enabled"][value="true"]:checked, input[name="settings_side_slider_favorites_enabled"][value="true"]:checked').length;"true"==$(this).val()?($("body").find('a[href="#'+t+'"], #'+t).removeClass("hidden").parent().removeClass("hidden"),"settings_side_slider_notifications_enabled"===i&&($(".right-side-tab-notification-asterix").removeClass("invisible hidden hidden-forged"),$(".right-side-tabs-toggler .badge.badge-danger").removeClass("invisible hidden hidden-forged"),setTimeout(function(){"function"==typeof slider_display_notification_badges&&slider_display_notification_badges()},300))):($("body").find('a[href="#'+t+'"], #'+t).addClass("hidden"),a&&n?$("body #right-side-tabs").find("li:not(.active) a:not(.hidden)").first().trigger("click"):0===n&&$('input[name="settings_side_slider_enabled"][value="false"]').trigger("click"),"settings_side_slider_notifications_enabled"===i&&($(".right-side-tab-notification-asterix").addClass("invisible hidden hidden-forged"),$(".right-side-tabs-toggler .badge.badge-danger").addClass("invisible hidden hidden-forged"),favicon.badge(0),titlenotifier.set(0))),theme_settings_update()}),$('input[name="settings_side_slider_sysinfo_enabled"], input[name="settings_side_slider_notifications_enabled"], input[name="settings_side_slider_favorites_enabled"]').each(function(){$('input[name="'+$(this).attr("name")+'"][value="'+window[$(this).attr("name")]+'"]').trigger("change")}),$('select[name="settings_navigation_color"]').after('\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t '),$(".settings_navigation_color_toggle, .settings_background_color_toggle").on("click",function(){void 0===window[$(this).attr("data-name")+"controller"]||"hidden"==window[$(this).attr("data-name")+"controller"]?($("."+$(this).attr("data-name")+"_reset, ."+$(this).attr("data-name")+"_rows").removeClass("hidden"),window[$(this).attr("data-name")+"controller"]="shown"):($("."+$(this).attr("data-name")+"_reset, ."+$(this).attr("data-name")+"_rows").addClass("hidden"),window[$(this).attr("data-name")+"controller"]="hidden")}),$(".settings_navigation_color_reset").on("click",function(){"settings_navigation_color"==$(this).attr("data-name")&&navigation_filter_reset()});var l=$('input[name="settings_grayscale_level_navigation"], input[name="settings_sepia_level_navigation"], input[name="settings_saturate_level_navigation"], input[name="settings_hue_level_navigation"], input[name="settings_invert_level_navigation"], input[name="settings_brightness_level_navigation"], input[name="settings_contrast_level_navigation"]');l.on("click keyup change",function(e){var t="-webkit-filter: grayscale("+$('input[name="settings_grayscale_level_navigation"]').val()+") sepia("+$('input[name="settings_sepia_level_navigation"]').val()+") saturate("+$('input[name="settings_saturate_level_navigation"]').val()+") hue-rotate("+$('input[name="settings_hue_level_navigation"]').val()+"deg) invert("+$('input[name="settings_invert_level_navigation"]').val()+") brightness("+$('input[name="settings_brightness_level_navigation"]').val()+") contrast("+$('input[name="settings_contrast_level_navigation"]').val()+"); filter: grayscale("+$('input[name="settings_grayscale_level_navigation"]').val()+") sepia("+$('input[name="settings_sepia_level_navigation"]').val()+") saturate("+$('input[name="settings_saturate_level_navigation"]').val()+") hue-rotate("+$('input[name="settings_hue_level_navigation"]').val()+"deg) invert("+$('input[name="settings_invert_level_navigation"]').val()+") brightness("+$('input[name="settings_brightness_level_navigation"]').val()+") contrast("+$('input[name="settings_contrast_level_navigation"]').val()+");";$(".visible-xs.mobile-menu-toggler").attr("style","position: fixed;"+t),$("aside, .visible-xs.mobile-menu-toggler").attr("style","z-index: 10; overflow: visible; transform: translate("+settings_leftmenu_width+"px, 0px);"+t),$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),theme_settings_update()}),l.each(function(e,t){$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),$(this).parent().parent("td").parent("tr.atshover").addClass("hidden settings_navigation_color_rows hidden-skip"),0===e&&$(this).parent().parent("td").parent("tr.atshover").prev("tr").addClass("hidden-dependent-skip")});var c=$('input[name="settings_grayscale_level_content"], input[name="settings_saturate_level_content"], input[name="settings_hue_level_content"]');c.on("click keyup change",function(e){var t="-webkit-filter: grayscale("+$('input[name="settings_grayscale_level_content"]').val()+") saturate("+$('input[name="settings_saturate_level_content"]').val()+") hue-rotate("+$('input[name="settings_hue_level_content"]').val()+"deg); filter: grayscale("+$('input[name="settings_grayscale_level_content"]').val()+") saturate("+$('input[name="settings_saturate_level_content"]').val()+") hue-rotate("+$('input[name="settings_hue_level_content"]').val()+"deg);";$("body").attr("style",t),$("#content .loading-container").attr("style",t),$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),theme_settings_update()}),c.each(function(){$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),$(this).parent().parent("td").parent("tr.atshover").addClass("hidden settings_background_color_rows")});var d=$('input[name="settings_leftmenu_width"]');d.on("click keyup change",function(e){page_adjust($(this).val(),$(this).val()),$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),theme_settings_update(),settings_leftmenu_width_initial=$(this).val()}),d.each(function(){$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),settings_leftmenu_width_initial=$(this).val()}),"restored"==v___location_query&&(l.trigger("click"),c.trigger("click"),d.trigger("click"),$('select[name="settings_navigation_color"], select[name="settings_background_color"]').trigger("change")),$("aside ul.user-html li.user-html-string").html($('input[name="settings_leftmenu_user_html"]').val()),$('input[name="settings_leftmenu_user_html"]').keyup(function(e){$("aside ul.user-html li.user-html-string").html($(this).val())}),navigation_dashboard_switch_available()&&$('input[name="settings_sysinfo_link_mini"]').parent().parent().parent().parent("tr").remove(),$('input[name^="settings_leftmenu_netdata_link"], input[name^="settings_leftmenu_user_html_only_for_administrator"], input[name="settings_sysinfo_easypie_charts_size"], input[name="settings_sysinfo_easypie_charts_width"], input[name="settings_sysinfo_easypie_charts_scale"], input[name="settings_sysinfo_theme_patched_updates"]').parents("td.col_value.atscontent").parent("tr.atshover").addClass("settings_option_padded"),$('input[data-role="tagsinput"]').tagsinput(),$("body").css("overflow","auto"),$.getScript(v___location_prefix+"/unauthenticated/js/detector."+v___source_type+".js?"+v___theme_version_plain,function(e,t,i){var a=new Detector;$.each($('select[name="settings_font_family"] option'),function(){var e=$(this).text();a.detect(e)||"system-default"==$(this).val()||$(this).attr("disabled","disabled").text(e+" ("+theme_language("theme_xhred_global_not_available")+")")}),$('select[name="settings_font_family"]').on("click keyup change",function(e){var t=$(this).val(),i=($.merge($("head"),$("head")),$("head").find('link[href*="font-"]').add($("head").find('link[href*="font-"]')).add($("head").find('link[href*="fonts-roboto"]')).add($("head").find('link[href*="fonts-roboto"]'))),a=(a=$.merge($("head").find('link[href*="/authentic."]'),$("head").find('link[href*="/authentic."]'))).length?a:$.merge($("head").find('link[href*="/bundle."]'),$("head").find('link[href*="/bundle."]'));i.remove(),"0"==t||"1"==t?"0"==t&&a.after(''):a.after('')})}),$('input[name="settings_leftmenu_netdata"]').on("change",function(){var e=$('input[name="settings_leftmenu_netdata_link"]');"true"==$(this).val()?e.removeAttr("disabled"):e.attr("disabled","disabled")}),$('input[name="settings_leftmenu_netdata"]:checked').trigger("change"),0!=Core.moduleAvailable("status")&&$(".right-side-tabs-toggler").length||($('input[name="settings_side_slider_enabled"][value="false"]').trigger("click"),$('input[name="settings_side_slider_enabled"]').attr("disabled","disabled"))}}})});n="#atsave:not(.btn-inverse):not(.disabled)";$("body").undelegate(n,"click"),$("body").on("click",n,function(e){e.preventDefault();var t=$(this);spinnerfy_buttons(t,[1.5,-33,"small",1e3]),set_onbeforeunload_status(0,0),theme_settings_update(),theme_config("save"),$.ajax({type:"POST",url:v___location_prefix+"/webmin/edit_startpage.cgi",data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var t=$(e).find("form.ui_form");t.find('select[name="gotomodule"]').val($.trim($('select[name="goto_webmin_default_module"]').val())),$.ajax({type:"POST",url:v___location_prefix+"/webmin/change_startpage.cgi",data:$(t).serialize(),dataType:"text",success:function(e){Test.strContains(e,v___page_signin_form)&&(v___available_session=0)},error:function(){}})}},error:function(){}}),setTimeout(function(){$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-settings=1&save=1",data:t.parents("form").serialize(),dataType:"text",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:(navigation_update(),theme_settings_controls(0))},error:function(){t.addClass("btn-danger").removeClass("btn-success btn-inverse opacity-0_5")}})},1e3)});var n=".page_footer_ajax_submit:not(.disabled)";$("body").undelegate(n,"click"),$("body").on("click",n,function(){spinnerfy_buttons($(this),[1.5,-33,"small",!1])})}if(!e&&(v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-editor_read.cgi"||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-upload.cgi")){$('link[href*="/unauthenticated/css/styles.css"]').length&&$('link[href*="/unauthenticated/css/styles.css"]').attr("href",$('link[href*="/unauthenticated/css/styles.css"]').attr("href").split("?")[0]+"?"+(new Date).getTime()),$('script[src*="/unauthenticated/js/scripts.js"]').length&&$('script[src*="/unauthenticated/js/scripts.js"]').attr("src",$('script[src*="/unauthenticated/js/scripts.js"]').attr("src").split("?")[0]+"?"+(new Date).getTime()),setTimeout(function(){$(".file-editor-saved").remove(),$(".file-editor-save").removeClass("hidden")},2400),check_location_resource("/settings-upload.cgi?saved=1")&&$.each($(".file_chooser_button_preview:first"),function(){$(this).hasClass("disabled")?$("aside + .__logo").remove():matchMedia("(max-width: 767px)").matches||($("aside + .__logo").length?($('.__logo img[src*="/images/logo.png"]').attr("src",$('.__logo img[src*="/images/logo.png"]').attr("src").split("?")[0]+"?"+(new Date).getTime()),$("aside + .__logo").attr("style","transform: translate(0px, 0px);"),setTimeout(function(){$(".__logo").transition({y:"-140px"},1200)},400)):($("aside").after(''),setTimeout(function(){$(".__logo").transition({y:"-140px"},1200)},400)))});var s=".authentic_update:not(.disabled), .page_footer_ajax_submit:not(.disabled)";$("body").undelegate(s,"click"),$("body").on("click",s,function(){spinnerfy_buttons($(this),[1.5,-28,"small",!1])}),setTimeout(function(){v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-editor_read.cgi"&&$(".end_submits").parent("td").after('Theme logos').parents(".ui_form_end_buttons").css("width","100%"),$(".btn-group.end_submits").css("margin-left","2px")},100)}if(e||v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-upload.cgi"||($(function(){function e(e){void 0===e&&(e=$('input[name="authenticated_logo"]:checked'));var t=["authenticated_logo_file"];"1"!=e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').parents(".file-input-wrapper").addClass("disabled").prev(".file_chooser_button_preview").addClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"]').parents(".file-input-wrapper").removeClass("disabled"),"1"==$_authenticated_logo&&$('input[name="'+t+'"]').parents(".file-input-wrapper").prev(".file_chooser_button_preview").removeClass("disabled")})}function t(e){void 0===e&&(e=$('input[name="unauthenticated_logo"]:checked'));var t=["unauthenticated_logo_file"];"1"!=e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').parents(".file-input-wrapper").addClass("disabled").prev(".file_chooser_button_preview").addClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"]').parents(".file-input-wrapper").removeClass("disabled"),"1"==$_unauthenticated_logo&&$('input[name="'+t+'"]').parents(".file-input-wrapper").prev(".file_chooser_button_preview").removeClass("disabled")})}$_authenticated_logo=$('input[name="authenticated_logo"]:checked').val(),$_unauthenticated_logo=$('input[name="unauthenticated_logo"]:checked').val(),e(),$('input[name="authenticated_logo"]').on("change",function(){e($(this))}),t(),$('input[name="unauthenticated_logo"]').on("change",function(){t($(this))})}),$(".file_chooser_button_preview").on("mouseout",function(e){$(this).css("background","white")}).on("mouseover",function(e){$(this).css("background","#eee")}),$.each($(".file_chooser_button_preview"),function(){$(this).data("image")&&$(this).popover({trigger:"hover",html:!0,content:function(){return""}})})),$("#system-status > div.panel-body > table > tbody > tr").on("mouseover",function(){$(this).find(".btn-hidden").removeClass("hidden")}).on("mouseout",function(){$(this).find(".btn-hidden").addClass("hidden")}),$('input[name="but_switch"]').on("click",function(e){$(this).parents("form").attr("target","_top")}),$('form[action*="switch_user.cgi"], a[href*="switch_user.cgi"]').each(function(){$(this).attr("target","_top")}),(Core.curModule("mysql")||Core.curModule("postgresql"))&&($('a > img[src*="images/left.gif"]').each(function(e,t){$(this).replaceWith('')}),$('a > img[src*="images/right.gif"]').each(function(e,t){$(this).replaceWith('')})),Core.curModule("mailboxes")||Core.curModule("mailbox")){var _='form.ui_form[action="index.cgi"]',r="fa fa-fw fa-lg text-semi-light vertical-align-baseline fa-angle-";$(_+' img[src*="images/left"], center img[src*="images/left"]').each(function(){$(this).replaceWith('')}),$(_+' img[src*="images/right"], center img[src*="images/right"]').each(function(){$(this).replaceWith('')}),$(_+' img[src*="images/first"]').each(function(){$(this).replaceWith('')}),$(_+' img[src*="images/last"]').each(function(){$(this).replaceWith('')})}if(Core.curModule("mailbox")&&$.each($('[onclick*="document.forms"]'),function(){var e=$(this),t=e.attr("onclick"),i=$("aside form").length;e.attr("onclick",t.replace("document.forms[0]","document.forms["+i+"]"))}),Core.curModuleFile("virtual-server","list_scripts.cgi")&&($('td > a > img[src*="images/staroff.gif"]').each(function(e,t){$(this);$(t).attr("src",v___location_prefix+"/images/staroff.gif")}),$('td > a > img[src*="images/staron.gif"]').each(function(e,t){$(this);$(t).attr("src",v___location_prefix+"/images/staron.gif")})),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"status/"&&($('td img[src*="images/up.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/check.png"),i.addClass("scale-08")}),$('td img[src*="images/down.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/cross.png"),i.addClass("scale-08")}),$('td img[src*="images/not.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/not.png"),i.addClass("scale-08")})),$('.ui_form[action^="delete_mons"] tr.ui_checked_columns > td > label > img[src="images/up.gif"]:not(".ui_icon_protected"), .ui_form[action^="save_mon"] img[src="images/up.gif"]:not(".ui_icon_protected"), table.ui_buttons_table > tbody > tr.ui_buttons_row > td.ui_buttons_label > img[src="images/up.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/check.png"),i.addClass("scale-08")}),$('.ui_form[action^="delete_mons"] tr.ui_checked_columns > td > label > img[src="images/down.gif"]:not(".ui_icon_protected"), .ui_form[action^="save_mon"] img[src="images/down.gif"]:not(".ui_icon_protected"), table.ui_buttons_table > tbody > tr.ui_buttons_row > td.ui_buttons_label > img[src="images/down.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/cross.png"),i.addClass("scale-08")}),$('.ui_form[action^="delete_mons"] tr.ui_checked_columns > td > label > img[src="images/not.gif"]:not(".ui_icon_protected"), .ui_form[action^="save_mon"] img[src="images/not.gif"]:not(".ui_icon_protected"), table.ui_buttons_table > tbody > tr.ui_buttons_row > td.ui_buttons_label > img[src="images/not.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/not.png"),i.addClass("scale-08")}),(Core.curModule("proc")||Core.curModule("firewall")||Core.curModule("firewall6")||Core.curModule("shorewall")||Core.curModule("shorewall6")||Core.curModuleFile("pam","edit_pam.cgi")||Core.curModule("filter"))&&($("td a img[src], td label a img[src]").parents("td").addClass("text-center"),$('td img[src*="images/gap.gif"]').replaceWith(''),$('td a img[src*="images/down.gif"]').replaceWith(''),$('td a img[src*="images/up.gif"]').replaceWith(''),$('td a img[src*="images/after.gif"]').replaceWith(''),$('td a img[src*="images/before.gif"]').replaceWith('')),(Core.curModule("squid")||Core.curModule("cron"))&&($('td a img[src*="images/movedown.gif"]').replaceWith(''),$('td a img[src*="images/moveup.gif"]').replaceWith('')),Core.curModule("cron")&&($('td a img[src*="images/bottom.gif"]').replaceWith(''),$('td a img[src*="images/top.gif"]').replaceWith('')),$("input").each(function(e,t){"images/ok.gif"==$(this).attr("src")&&($(t).attr("src",v___location_prefix+"/"+$(this).attr("src")),$(this).parents("td").attr("style","white-space: nowrap"))}),!e){if(!$(".ui_table tr td").has(".ui_grid_table.table-hardcoded")||v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"passwd/"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"mailboxes/"&&v___location_path!=v___location_prefix+"/usermin/list_configs.cgi"||($(".ui_table tr td .ui_grid_table.table-hardcoded").parents("table").css("border","1px solid #f0f0f0"),$(".ui_table tr td .ui_grid_table.table-hardcoded").addClass("table").parents("tr").css("border","1px solid #f0f0f0")),($("body").attr("class")&&$('body[class="custom"]').length||$("body").attr("class")&&0===$("body").attr("class").search(/custom\d+$/))&&"view.cgi"==v___location_file){var o=$('form[action="save.cgi"]').find(".table-title").find("tt").text();$('form[action="save.cgi"]').find(".table-title").find("b").empty().append(""+o+"")}if($.each($("form > table"),function(){$(this).next('input[type="submit"]')&&$(this).attr("style")}),$.each($("table tr"),function(){$(this).is(":empty")&&$(this).remove()}),$.each($("span > input"),function(){var e=$(this).parent("span").next(".file_chooser_button"),t=$(this).parent("span").next('input[type="button"][onclick]');$(this).parent("span").next("select");e&&e.attr("style","display: inline; width:40px; height: 28px; margin-right:0 !important; margin-top:4px !important;").find("i.fa-files-o").css("margin-top","0").addClass("vertical-align-middle"),$(this).parents(".tab-content")&&e.css("margin-top","4px"),t&&(t.attr("style","display: inline; width:40px; height: 28px; margin-right:0 !important; vertical-align: middle").next("i.fa-files-o").css("margin-top","11px").addClass("vertical-align-middle"),t.attr("style","display: inline; width:40px; height: 28px; margin-right:0 !important; vertical-align: middle").next("i.fa-calendar").attr("style","margin-top: 8px !important; font-size: 11px; margin-left: -27px; pointer-events: none;"))}),$.each($('input[type="button"][onclick^="ifield"]'),function(e,t){$(this).css("margin-left","0").css("width","40px").css("height","28px")}),$('.ui_form[action="switch.cgi"] > input.form-control.ui_textbox').next('input[type="button"][onclick^="ifield"]').attr("style","margin-top: 2px !important; margin-bottom: 2px !important; margin-left: 0 !important"),setTimeout(function(){$('.ui_form[action="switch.cgi"] .file_chooser_button_attached').attr("style","font-size: 11px; pointer-events: none; margin-top: 14px !important;")},10),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"cshrc/"&&$("textarea").each(function(e,t){$(this).attr("style","height: 20em !important")}),v___location_path!=v___location_prefix+"/acl/"&&v___location_path!=v___location_prefix+"/acl/edit_user.cgi"||$('.ui_grid_table.table-hardcoded .ui_grid_row .ui_grid_cell input[type="checkbox"], .table-hardcoded .col_value input[type="checkbox"]').each(function(e,t){$(this).attr("style","vertical-align: bottom !important")}),($("body").attr("class")&&$('body[class="custom"]').length||$("body").attr("class")&&0===$("body").attr("class").search(/custom\d+$/))&&($(".panel-body > .ui_grid_table.table-hardcoded").each(function(e,t){$(this).attr("style","margin-top: 3px !important")}),$(".panel-body td > .ui_form").each(function(){$(this).attr("style","padding-top: 0 !important")}),$(".panel-body > a.ui_link").each(function(e,t){$(this).addClass("btn btn-inverse btn-tiny ui_link_replaced").removeClass("ui_link"),$(this).text($(this).text().replace(/\.$/,"")),$(this).parent().contents().filter(function(){return 3==this.nodeType}).remove(),0===$(this).attr("href").indexOf("edit_cmd.cgi?new")&&$(this).html(' '+$(this).text()),0===$(this).attr("href").indexOf("edit_file.cgi?new")&&$(this).html(' '+$(this).text()),0===$(this).attr("href").indexOf("edit_sql.cgi?new")&&$(this).html(' '+$(this).text())}),$.each($('td.td_tag:contains("|")'),function(){$(this).find('a[href^="edit_"]').addClass("ui_link_replaced btn btn-success btn-xxs").css("margin-right","3px").removeClass("ui_link").prepend(' '),$(this).find('a:not([href^="edit_"])').remove(),$(this).parents("table").find("thead > tr > th:eq(2)").addClass("pointer-events-none").html("")}),$('td.td_tag:contains("|")').contents().filter(function(){return 3==this.nodeType}).remove()),theme_buttonify(["/virtual-server/cert_form.cgi","/webmin/edit_ssl.cgi","/usermin/edit_ssl.cgi"],".container-fluid #att_current","a","btn btn-link btn-link-bordered btn-xxs margined-left-3 vertical-align-top margined-top-2 --to-new-tab",0,"","","","|"),theme_buttonify(["/sysinfo.cgi","/virtual-server/edit_newchangelog.cgi","/server-manager/edit_newchangelog.cgi"],".container-fluid #newfeatures-virtual-server-1-collapse dt, .container-fluid #newfeatures-server-manager-1-collapse dt, .container-fluid .table td dt","a","btn btn-link btn-link-bordered btn-xxs margined-left-3 vertical-align-top margined-top-2","fa-eye","|",""),theme_buttonify(["/virtual-server/","/virtual-server/index.cgi","/virtual-server/edit_plan.cgi"],".container-fluid form table tbody td",'a[href*="list_users.cgi?"], .container-fluid a[href*="list_aliases.cgi?"]',"btn btn-transparent btn-transparent-link-force btn-borderless btn-xxs vertical-align-top margined-top-2",0,"(~)"," ~ ","(~..)"),theme_buttonify(["/quota/","/quota/index.cgi"],".container-fluid .table tbody td.td_tag",'a[href*="activate.cgi"][href*="&active=3"]',"btn btn-warning btn-xxs vertical-align-top margined-top-2","fa-ban"),theme_buttonify(["/quota/","/quota/index.cgi"],".container-fluid .table tbody td.td_tag",'a[href*="activate.cgi"][href*="&active=0"]',"btn btn-success btn-xxs vertical-align-top margined-top-2","fa-check-circle-o"),theme_buttonify(["/virtualmin-google-analytics/","/virtualmin-google-analytics/index.cgi"],".container-fluid .table tbody td.td_tag",'a[href*="edit.cgi"]',"btn btn-warning btn-xxs vertical-align-top margined-top-2","fa-pencil-square"),theme_buttonify(["/apache/","/apache/index.cgi"],".container-fluid .table tbody tr td:last-child","a.ui_link","btn btn-transparent btn-link-bordered btn-xxs vertical-align-top margined-top-2","fa-external-link"),($('body[class*="status"]').length&&"edit_mon.cgi"==v___location_file||v___location_path==v___location_prefix+"/virtual-server/list_sched.cgi"||v___location_path==v___location_prefix+"/ldap-server/edit_schema.cgi"||v___location_path==v___location_prefix+"/software/list_pack.cgi"||v___location_path==v___location_prefix+"/mailboxes/view_mail.cgi"||v___location_path==v___location_prefix+"/mailbox/view_mail.cgi"||v___location_path==v___location_prefix+"/mailbox/list_folders.cgi"||v___location_path==v___location_prefix+"/phpini/"||v___location_path==v___location_prefix+"/phpini/index.cgi"||v___location_path==v___location_prefix+"/fsdump/"||v___location_path==v___location_prefix+"/fsdump/index.cgi"||v___location_path==v___location_prefix+"/fdisk/"||v___location_path==v___location_prefix+"/fdisk/index.cgi"||v___location_path==v___location_prefix+"/virtualmin-awstats/"||v___location_path==v___location_prefix+"/virtualmin-awstats/index.cgi"||v___location_path==v___location_prefix+"/syslog/"||v___location_path==v___location_prefix+"/syslog/index.cgi")&&($.each($('tr td:last-child:contains("|")'),function(){v___location_path==v___location_prefix+"/virtual-server/list_sched.cgi"&&($(this).find('a[href^="backup_form.cgi"]').html($(this).find('a[href^="backup_form.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("ui_link").prepend('  '),$(this).find('a[href^="restore_form.cgi"]').html($(this).find('a[href^="restore_form.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("ui_link").prepend('  '),$(this).find('a[href^="backuplog.cgi"]').html($(this).find('a[href^="backuplog.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-info btn-xxs").removeClass("ui_link").prepend('  ')),v___location_path==v___location_prefix+"/ldap-server/edit_schema.cgi"&&($(this).find('a[href^="view_sfile.cgi"]').html($(this).find('a[href^="view_sfile.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("ui_link").prepend('  '),$(this).find('a[href^="edit_sfile.cgi"]').html($(this).find('a[href^="edit_sfile.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("ui_link").prepend('  ')),v___location_path!=v___location_prefix+"/phpini/"&&v___location_path!=v___location_prefix+"/phpini/index.cgi"||($(this).find('a[href^="list_ini.cgi"]').html($(this).find('a[href^="list_ini.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("ui_link").prepend('  '),$(this).find('a[href^="edit_manual.cgi"]').html($(this).find('a[href^="edit_manual.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("ui_link").prepend('  ')),v___location_path!=v___location_prefix+"/fdisk/"&&v___location_path!=v___location_prefix+"/fdisk/index.cgi"||($(this).find('a[href^="edit_hdparm.cgi"]').html($(this).find('a[href^="edit_hdparm.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("heighter-34").removeClass("ui_link"),$(this).find('a[href*="smart-status/index.cgi"]').html($(this).find('a[href*="smart-status/index.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-info btn-xxs").removeClass("heighter-34").removeClass("ui_link"),$(this).find('a[href^="blink.cgi"]').html($(this).find('a[href^="blink.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-warning btn-xxs").removeClass("heighter-34").removeClass("ui_link")),v___location_path==v___location_prefix+"/mailbox/list_folders.cgi"&&($(this).find('a[href^="index.cgi"]').html($(this).find('a[href^="index.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("heighter-34").removeClass("ui_link").removeClass("ui_link").prepend('  '),$(this).find('a[href^="edit_auto.cgi"]').html($(this).find('a[href^="edit_auto.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-info btn-xxs").removeClass("heighter-34").removeClass("ui_link").removeClass("ui_link").prepend('  '),$(this).find('a[href^="copy_form.cgi"]').html($(this).find('a[href^="copy_form.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-warning btn-xxs").removeClass("heighter-34").removeClass("ui_link").removeClass("ui_link").prepend('  ')),v___location_path!=v___location_prefix+"/mailboxes/view_mail.cgi"&&v___location_path!=v___location_prefix+"/mailbox/view_mail.cgi"||($(this).find('a[href^="detach.cgi"]:not([href*="&save=1"]):not([target="_blank"])').html($(this).find('a[href^="detach.cgi"]:not([href*="&save=1"]):not([target="_blank"])').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("heighter-34").removeClass("ui_link").removeClass("ui_link").prepend('  '),$(this).find('a[href*="detach.cgi"][target="_blank"]').html($(this).find('a[href*="detach.cgi"][target="_blank"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  '),$(this).find('a[href*="&save=1"]:not([target="_blank"])').html($(this).find('a[href*="&save=1"]:not([target="_blank"])').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-warning btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  ')),v___location_path!=v___location_prefix+"/virtualmin-awstats/"&&v___location_path!=v___location_prefix+"/virtualmin-awstats/index.cgi"||($(this).find('a[href^="view.cgi"]').html($(this).find('a[href^="view.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  '),$(this).find('a[href^="config.cgi"]').html($(this).find('a[href^="config.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  '))}),$('body[class*="status"]').length&&"edit_mon.cgi"==v___location_file?($('a[href*="edit_mon.cgi?id"]').addClass("ui_link_replaced btn btn-default btn-xxs").removeClass("heighter-34").removeClass("ui_link"),$('a[href*="edit_mon.cgi?id"]').last().css("margin-left","-1px"),$('tr td:last-child:contains("|")').replaceText(/\|/gi,"")):$('tr td:last-child:contains("|")').contents().filter(function(){return 3==this.nodeType}).remove(),v___location_path!=v___location_prefix+"/fdisk/"&&v___location_path!=v___location_prefix+"/fdisk/index.cgi"||$("body").find('a[href^="blink.cgi"]:not(.ui_link_replaced)').html($("body").find('a[href^="blink.cgi"]:not(.ui_link_replaced)').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-warning btn-xxs").removeClass("heighter-34").removeClass("ui_link"),v___location_path!=v___location_prefix+"/fsdump/"&&v___location_path!=v___location_prefix+"/fsdump/index.cgi"||$.each($("tr td:last-child"),function(){$(this).find('a[href^="backup.cgi"]').html($(this).find('a[href^="backup.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  '),$(this).find('a[href^="kill.cgi"]').html($(this).find('a[href^="kill.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-danger btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  ')}),v___location_path!=v___location_prefix+"/syslog/"&&v___location_path!=v___location_prefix+"/syslog/index.cgi"||$.each($("tr td:last-child"),function(){$(this).find('a[href*="save_log.cgi"][href*="view=1"]').html($(this).find('a[href*="save_log.cgi"][href*="view=1"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('')}),v___location_path==v___location_prefix+"/software/list_pack.cgi")){$('td a.ui_link[href*="view.cgi"]').html('').addClass("ui_link_replaced btn btn-default btn-xxs").removeClass("heighter-34").attr("style","margin-top: 2px !important; margin-bottom: 0 !important; margin-right: 15px").removeClass("ui_link").prepend('')}if(v___location_path==v___location_prefix+"/fdisk/edit_disk.cgi"){var l=[];$.each($(".panel-body > table.table.table-striped tbody tr"),function(e,t){($(this).find("td:nth-child(3)").find('img[src*="images/use"]').length||$(this).find("td:nth-child(3)").find('img[src*="images/gap"]').length)&&($(this).find("td:nth-child(3)").remove(),l.push(e))}),$.isEmptyObject(l)||($(".panel-body > table.table.table-striped thead").find("th:nth-child(3)").remove(),delete l)}v___location_path==v___location_prefix+"/virtual-server/edit_link.cgi"&&$(".table-hardcoded").find('input[name="open"]').parent("td").parent("tr").remove(),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"init/"&&$('.table.table-striped.table-condensed tr.tr_tag td.td_tag input[type="checkbox"]').each(function(e,t){$(this).attr("style","vertical-align: middle !important")}),v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"proc/"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"proc/index.cgi"||((v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"proc/"&&v___location_file&&v___location_file.indexOf("index_")>-1||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"proc/index.cgi"||v___location_path===v___location_prefix+"/proc/")&&($("a.ui_link + b").addClass("btn").css("margin-left","3px"),$("b + a.ui_link").addClass("btn").css("margin-left","3px"),$('.panel-body > b:first-child:contains("Display")').length>0&&$(".panel-body > b:first-child").remove(),$(".panel-body > b").addClass("btn btn-success")),$(".panel-body").contents().filter(function(){return 3==this.nodeType}).remove(),$(".panel-body > a.ui_link").addClass("btn").css("margin-left","3px")),v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"proc/edit_proc.cgi"&&$("#signal").attr("style","margin-bottom: 0 !important;"),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"procmail/"&&($(".panel-body p:first-child").next("p").contents().filter(function(){return 3==this.nodeType}).remove(),$(".panel-body p:last-child").prev("a.ui_link").remove()),v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"cron/"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"cron/index.cgi"||$('.panel-body form.ui_form[action="index.cgi"]').next("script").next("b").next("p").contents().filter(function(){return 3==this.nodeType}).remove(),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"filter/"&&$(".panel-body > b").next("p").contents().filter(function(){return 3==this.nodeType}).remove(),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"dhcpd/"&&$(".panel-body > p").contents().filter(function(){return 3==this.nodeType}).remove(),v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"htaccess-htpasswd/"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"forward/"||$("td table.table-hardcoded.table.table-subtable").removeClass("table-striped"),$(".ui_buttons_hr > td > table.table-hardcoded > tbody > tr > td[nowrap]").each(function(){$(this).parents("table").attr("style","margin-bottom: 15px !important")}),$("textarea.form-control.ui_textarea").next('button[type="button"].btn-default').each(function(){$(this).prev("textarea").attr("style","margin-bottom: 1px !important"),$(this).attr("style","width:100% !important; padding-top: 0; height:28px !important")}),$("textarea.form-control.ui_textarea").next("br").next('button[type="button"].btn-default').each(function(){$(this).prev("textarea").attr("style","margin-bottom: 1px !important"),$(this).attr("style","width:100% !important; padding-top: 0; height:28px !important")}),$(".table-hardcoded > tbody > tr > td > input.form-control.ui_textbox").next('button[type="button"].ui_button').each(function(){$(this).attr("style","margin-top: 2px !important")}),$(".table-hardcoded > tbody > tr > td.col_label b a, .ui_table_row td a").each(function(e,t){$(this).attr("href")||$(this).attr("style","color: #333; text-decoration: none; cursor:default")}),$('input[name="all_weekdays"], .ui_grid_cell > table.table-condensed, table.table-hardcoded table.table-condensed, select[multiple][name="days"]').each(function(){$(this).parent("td").attr("style","vertical-align: top !important; padding-left:2px; padding-right:2px;")}),$('input[type="submit"]').each(function(){$(this).addClass("btn btn-default")}),$("table tr th").each(function(){$(this).text()&&$(this).attr("style","width: auto")}),$("table thead th:not(.table-title)").each(function(){$(this).css("border-top","none"),$(this).css("border-bottom","none")}),$("body").attr("class")&&$("body").attr("class").indexOf(v___module_file_manager)>-1&&(!$("body").hasClass("file-manager")&&$("body").addClass("file-manager"),$("#headln2l").prepend("'));var c=$(".panel-heading > table.header > tbody > tr > td > a");$.each(c,function(){if($(this).attr("href")&&$(this).attr("href").indexOf("config.cgi")>-1||$(this).attr("href").indexOf("man/search.cgi")>-1||$(this).attr("href").indexOf("/index.cgi")>-1||$(this).attr("href")==v___location_directory_trail_slashed||$(this).attr("href").indexOf("index.cgi")>-1&&v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"openvpn/"||$(this).attr("href").indexOf("index.cgi?")>-1&&v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"spam/"||$(this).attr("href").indexOf("restart_zone.cgi")>-1||$(this).attr("href").indexOf("restart.cgi")>-1||$(this).attr("href").indexOf("apply.cgi")>-1||$(this).attr("href").indexOf("start.cgi")>-1||$(this).attr("href").indexOf("stop.cgi")>-1||"//"==$(this).attr("href")&&(v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-editor_read.cgi"||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-upload.cgi")||$(this).attr("href").indexOf("delete_")>-1||$(this).attr("href").indexOf("list_mail.cgi")>-1||$(this).attr("href").indexOf("/virtual-")>-1||$(this).attr("href").indexOf("/virtualmin-")>-1||$(this).attr("href").indexOf("/server-")>-1||$(this).attr("href").indexOf("help.cgi")>-1){if($.each($(this).next("br"),function(){$(this).remove()}),$.each($(this).prev("br"),function(){$(this).remove()}),$(this).attr("href").indexOf("help.cgi")>-1){var e=$(this),t=$(this).parent("td");$(this).remove(),t.append(e)}$(this).attr("href").indexOf("/index.cgi")>-1||$(this).attr("href")==v___location_directory_trail_slashed||$(this).attr("href").indexOf("/virtual-")>-1||$(this).attr("href").indexOf("/virtualmin-")>-1||$(this).attr("href").indexOf("/server-")>-1?($iconized_class="fa-arrow-left",$(this).data("title","").data("back",1)):"//"!=$(this).attr("href")||v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-editor_read.cgi"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-upload.cgi"?$(this).attr("href").indexOf("config.cgi")>-1?($iconized_class="fa-cog",$(this).data("title","")):$(this).attr("href").indexOf("restart.cgi")>-1||$(this).attr("href").indexOf("apply.cgi")>-1?$iconized_class="fa-refresh":$(this).attr("href").indexOf("restart_zone.cgi")>-1?$iconized_class="fa-retweet":$(this).attr("href").indexOf("start.cgi")>-1?$iconized_class="fa-play":$(this).attr("href").indexOf("stop.cgi")>-1?$iconized_class="fa-square":$(this).attr("href").indexOf("man/search.cgi")>-1?$iconized_class="fa-search":$(this).attr("href").indexOf("delete_")>-1?$iconized_class="fa-trash-o":$(this).attr("href").indexOf("list_mail.cgi")>-1?$iconized_class="fa-inbox":$(this).attr("href").indexOf("index.cgi")>-1&&v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"openvpn/"?$iconized_class="fa-cogs":$(this).attr("href").indexOf("index.cgi?")>-1&&v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"spam/"&&($iconized_class="fa-arrow-left",$(this).data("back",1)):($iconized_class="fa-arrow-left",$(this).attr("href",v___location_prefix+"/webmin/edit_themes.cgi").data("title","").data("back",1));var i=$(this).attr("href").indexOf("help.cgi")>-1;i&&($iconized_class="fa-question-circle",$(this).data("title","")),$(this).data("toggle","tooltip").data("title",Convert.strUpInitial(i?theme_language("theme_xhred_global_help"):1===$(this).data("back")?Core.curModule(v___module_file_manager)?"":theme_language("theme_xhred_global_return_to_module_index"):$(this).text())).attr("data-container","body").addClass("btn btn-link text-lighter").removeClass("ui_link").append(''),$(this).contents().filter(function(){return 3==this.nodeType}).remove(),$(this).tooltip({container:"body",placement:"auto top",delay:{show:600,hide:30}}),((v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"apache/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"proftpd/")&&($(this).attr("href").indexOf("restart.cgi")>-1||$(this).attr("href").indexOf("apply.cgi")>-1)||$(this).parent("td").find("a")&&1==$(this).parent("td").find("a").length||$(this).attr("href").indexOf("man/search.cgi")>-1||$(this).attr("href").indexOf("config.cgi")>-1||$(this).attr("href").indexOf("/index.cgi")>-1||$(this).attr("href").indexOf("/index.cgi")>-1||$(this).attr("href").indexOf("/virtual-")>-1||$(this).attr("href").indexOf("/virtualmin-")>-1||$(this).attr("href").indexOf("/server-")>-1)&&(($(this).attr("href").indexOf("/index.cgi")>-1||$(this).attr("href").indexOf("config.cgi")>-1)&&$("body").attr("class")&&$("body").attr("class").indexOf(v___module_file_manager)>-1?$(this).attr("style","margin-right: 0 !important; padding: 6px 12px"):$(this).attr("style","margin-right: 0 !important"))}$("#headln2l").removeClass("invisible")}),$.each($('td.ui_grid_cell:contains("|")'),function(){$(this).contents().filter(function(){return 3==this.nodeType}).remove()}),$('a[href*="help.cgi"][onclick], a[href*="showpass.cgi?"][onclick]').attr("onclick","").unbind("click").addClass("help_popup"),$(".help_popup").each(function(){$(this).attr("style","color: #333; text-decoration: none; cursor:help")})}if($(".help_popup").on("click",function(e){e.stopPropagation(),e.preventDefault();var t=$(this),i=$(this).attr("href"),a=$(this).parents("td");a.append(''),$.ajax({type:"POST",url:t.attr("href").indexOf("showpass.cgi")>-1?v___location_directory_trail_slashed+t.attr("href"):t.attr("href"),data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{a.find("._tmp_help_content").html(e.replace(/<(script|link|meta)\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/(script|link|meta)>/gi,"")),$help_title=a.find("._tmp_help_content .ui_subheading").first().text(),$help_body=a.find("._tmp_help_content title").remove(),$help_body=a.find("._tmp_help_content h3.ui_subheading").remove(),$help_body=a.find("._tmp_help_content h3").addClass("h3_help"),$help_body=a.find("._tmp_help_content hr").remove();var n=a.find("._tmp_help_content a");void 0!==n.attr("href")&&$.each(n,function(){var e=$(this).attr("href");e.startsWith("http")?$help_body=a.find("._tmp_help_content a").attr("target","_blank").css("text-decoration","none").css("font-style","italic"):($("body").undelegate('a[href="'+e+'"]',"click"),$("body").one("click",'a[href="'+e+'"]',function(a){if($(a.target).is($('a[href="'+e+'"]'))){a.preventDefault();var n=Convert.pathnamePopLast(t.attr("href"))+"/"+e;$('a[href="'+i+'"].help_popup').attr("data-initial",i).attr("data-substituted",n),$('a[href="'+i+'"].help_popup').attr("href",n),t.trigger("click")}}))}),$help_body=a.find("._tmp_help_content").html(),a.find("._tmp_help_content").remove();var s='',_=t.attr("href").indexOf("showpass.cgi")>-1;_&&(s=""),t.popover({html:!0,container:".container-fluid",template:'',title:function(){return s+$help_title},content:function(){return $help_body},placement:"auto right"}),t.popover("show"),t.on("shown.bs.popover",function(){$help_body.indexOf("")>-1&&$(".popover").animate({"max-width":"540px"},300),$("body").find(".popover:visible").addClass("module-help"),$('body[class*="'+v___module_file_manager+'"]').find(".popover:visible").addClass("file-manager-help"),setTimeout(function(){$.each($(".module-help"),function(){$(this).is(t.next(".module-help"))?($(this).animate({opacity:1},600),popover_visibility_position($(this))):$(".module-help").length>1?$(this).css("opacity",.85):$(this).css("opacity",1)})},100)}),t.on("hidden.bs.popover",function(){$("body").undelegate(":not(tt)","click"),t.attr("data-initial")&&(t.attr("href",t.attr("data-initial")),t.removeAttr("data-initial").removeAttr("data-substituted"))})}}})}),!e){if(v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"fdisk/"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"postfix/"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"pam/"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"syslog/"||$("p > a[href], table + a[href], div.panel-body > a.ui_link").each(function(e,t){$(this).text($(this).text().replace(/\.$/,""))}),$('.panel-body > form > p > a.ui_link, .panel-body > table.table + a.ui_link, .panel-body > p > a:not([href*="config.cgi?bacula-backup"]), body[data-current-product="usermin"] div.panel-body > p > a, div.panel-body > a[href^="edit_"]:not([href^="edit_user.cgi?user="], [href^="edit_group.cgi?group="]), .ui_form > a, .ui_grid_cell > :not(input):not(.acheckbox):not(.aradio):not(label) + a.ui_link:not([href^="edit_acl.cgi"], [href^="edit_rpc.cgi"], [href^="edit_user.cgi?user="], [href^="edit_group.cgi?group="]), .ui_grid_cell > a.select_all, .ui_grid_cell > a.select_invert, .ui_grid_cell > :not(input):not(.acheckbox):not(.aradio):not(label) + a[href*=".cgi"]:not([href^="edit_acl.cgi"], [href^="edit_rpc.cgi"], [href^="edit_user.cgi?user="], [href^="edit_group.cgi?group="]), .ui_grid_cell > a[href*=".cgi"]:first-child:not([href^="edit_rpc.cgi"],[href^="edit_nuser.cgi"],[href*="edit_user.cgi?idx"]), .tab-pane > p > a, .tab-pane > a.ui_link, .tab-pane > .table-condensed > a.ui_link, .tab-pane > a, .panel-body > p > a.ui_link, a.select_all, a.select_invert, form[action="delete.cgi"] > table table.ui_grid_table + a').each(function(){if(!(Core.curModuleFile("samba","edit_epass.cgi")||Core.curModule("acl")&&($(this).is('[href^="edit_user.cgi?user="]')||$(this).parent("td.ui_grid_cell").length)&&!$(this).parents("b").length)&&!Core.curModuleFile("virtual-server","history.cgi")&&!Core.curModuleFile("server-manager","one_history.cgi")&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"passwd/"&&$(this).text()&&v___location_path!=v___location_prefix+"/mailboxes/"&&v___location_path!=v___location_prefix+"/mailboxes/index.cgi"&&v___location_path!=v___location_prefix+"/usermin/list_configs.cgi"&&!$(this).hasClass("help_popup")){$(this).addClass("btn btn-inverse btn-tiny ui_link_replaced"),$(this).text($(this).text().replace(/\.$/,""));var e=$(this).parent().contents().filter(function(){return 3==this.nodeType});e&&$.each(e,function(){$(this).text()&&$(this).text().length<=3&&$(this).remove()}),$(this).hasClass("select_all")&&$(this).html(' '+$(this).text()),$(this).hasClass("select_invert")&&$(this).html(' '+$(this).text()),$(this).attr("href")&&(0===$(this).attr("href").indexOf("edit")&&0!==$(this).attr("href").indexOf("edit_allow")||0===$(this).attr("href").indexOf("master_form")||0===$(this).attr("href").indexOf("slave_form")||0===$(this).attr("href").indexOf("stub_form")||0===$(this).attr("href").indexOf("forward_form")||0===$(this).attr("href").indexOf("delegation_form")||0===$(this).attr("href").indexOf("mass_form")||0===$(this).attr("href").indexOf("newdb_form"))?$(this).html(' '+$(this).text()):$(this).attr("href")&&0===$(this).attr("href").indexOf("edit_allow")?$(this).html(' '+$(this).text()):$(this).attr("href")&&0===$(this).attr("href").indexOf("mass_ucreate")&&$(this).html(' '+$(this).text()),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"custom/"&&($(this).attr("href")&&0===$(this).attr("href").indexOf("edit_cmd.cgi?new")&&$(this).html(' '+$(this).text()),$(this).attr("href")&&0===$(this).attr("href").indexOf("edit_file.cgi?new")&&$(this).html(' '+$(this).text()),$(this).attr("href")&&0===$(this).attr("href").indexOf("edit_sql.cgi?new")&&$(this).html(' '+$(this).text())),$(this).attr("href")||$(this).remove()}}),$.each($(".btn-tiny.ui_link_replaced"),function(){$(this).prev('[class="table table-striped table-condensed"]').length&&$(this).next(':not(".ui_link_replaced")').length&&$(this).removeClass("btn-tiny ui_link_replaced").addClass("ui_link_re-replaced")}),$("a.ui_link_replaced").each(function(){$(this).prev().is("b")&&$(this).prev("b").addClass("btn btn-success btn-tiny"),$(this).next().is("b")&&$(this).next("b").addClass("btn btn-success btn-tiny")}),$("a.ui_link_replaced").each(function(){return!$(this).next().is("a.ui_link_replaced")||$(this).hasClass("select_all")||$(this).hasClass("select_invert")?!$(this).prev().is("a.ui_link_replaced")||$(this).hasClass("select_all")||$(this).hasClass("select_invert")?void 0:($(this).prev("a.ui_link_replaced").not(".btn-xxs"),!1):($(this).next("a.ui_link_replaced").not(".btn-xxs"),!1)}),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"fetchmail/"&&$("a.ui_link").each(function(){$(this).addClass("btn btn-inverse btn-tiny ui_link_replaced").css("margin-bottom","10px").css("margin-top","4px"),$(this).text($(this).text().replace(/\.$/,"")),$(this).parent().contents().filter(function(){return 3==this.nodeType}).remove()}),$('select.ui_select[name="days"]').each(function(){$(this).parent("td").attr("style","vertical-align: top !important")}),v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"mailboxes/"&&v___location_path!=v___location_prefix+"/mailboxes/index.cgi"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"mailbox/"&&v___location_path!=v___location_prefix+"/postfix/view_mailq.cgi"||(v___location_file?"list_mail.cgi"==v___location_file&&$('.container-fluid input:not([type="checkbox"]), .container-fluid .ui_form_end_submit, .container-fluid select').addClass("heighter-34").removeClass("heighter-28").css("margin-bottom","-1px"):($(".ui_form_end_submit").css("margin-top","0"),$("input#user").addClass("heighter-34 vertical-align-top")),$("body").find("form").removeAttr("onsubmit"),$header_tables=$("body").find('input[name="from"]').parents(".tab-pane").parent("td"),$header_tables.children("table").hide(),$.each($header_tables.find("input, textarea, select"),function(){$(this).hasClass("ui_select")||$(this).attr("onclick")||"checkbox"==$(this).attr("type")||"submit"==$(this).attr("type")||$(this).attr("style","width: 60%").addClass("inline-block"),$(this).attr("onclick")&&$(this).addClass("inline-block")}),onbeforeunload=null,1==$("body").find('input.ui_hidden[name="html_edit"]').val()&&editor_html_init(["body",2,!1,"edit_web"]),$("body").find('input[name="from"]').parents(".tab-pane").prev("table").remove(),$("body").find('input[name="from"]').parents(".tab-pane ").parent("td").find("div, table").each(function(e,t){$(this).find(".col_label").css("width","20%"),$(this).find('input[name="subject"]').parent("td").prev("td").find("b").attr("style","font-size: 13px !important"),$(this).find('input[name="subject"]').parents("table").show(),$(this).find('input[name="subject"]').parent("td").find(".submitter").remove()}),$editor_mode_link_container=$("body").find('textarea[id="body"]').parents("table").find("thead > tr > th:last-child"),$editor_mode_link=$editor_mode_link_container.find("a").addClass("editor_mode_link"),$editor_mode_link_container.parent("tr").find("th:first-child").append($editor_mode_link),$editor_mode_link_container.remove(),$editor_mode_link_button=$("body").find('textarea[id="body"]').parents("table").find(".editor_mode_link"),$editor_mode_link_button_state=!!$editor_mode_link_button.attr("href")&&$editor_mode_link_button.attr("href").indexOf("html=0"),$editor_mode_link_button.attr("title",$editor_mode_link_button.text()).addClass("editor_mode_link_button pull-right btn btn-sm "+(-1==$editor_mode_link_button_state?"btn-success":"btn-primary")).html(' '),$("body").find('textarea[id="body"]').parents("table").find("thead > tr > th").find("b").css("padding-left","45px"),$(".editor_mode_link_button").tooltip(),$fileinput_container=$("body").find('a[onclick="return add_ss_attachment()"]'),$fileinput_container.parent("td").contents().filter(function(){return 3==this.nodeType}).remove(),$fileinput_container.remove(),$fileinput_add_another_attachment=$("body").find('a[onclick="return add_attachment()"]'),$fileinput_add_another_attachment.addClass("btn btn-default"),$fileinput_add_another_attachment.text($fileinput_add_another_attachment.text().replace(/\.$/,"")),(v___location_path.indexOf("view_mail.cgi")>-1||v___location_path.indexOf("view_mailq.cgi")>-1)&&($table_title_header_container=$(".ui_form").find("div.table-responsive").first().find(".table-title"),$table_title_links_container=$table_title_header_container.next(),$table_title_links_container.contents().filter(function(){return 3==this.nodeType}).remove(),$table_title_links_container.find("a").addClass("table_title_links pull-right btn btn-info btn-tiny"),$table_title_links=$table_title_links_container.html(),$table_title_header_container.append($table_title_links),$table_title_links_container.remove(),$table_title_header_container_text_padding=35,$(".table-title > a.table_title_links").each(function(){$table_title_header_container_text_padding=v___location_path==v___location_prefix+"/postfix/view_mailq.cgi"?120:235}),$(".table_title_links_container a").each(function(){$table_title_header_container_text_padding+=$(this).width()}),$table_title_header_container.find("b").css("padding-left",$table_title_header_container_text_padding),$table_title_second_container=$(".ui_form").find("div.table-responsive").first().next("div.table-responsive").find("table:first-child"),$table_title_header_container=$(".ui_form").find("div.table-responsive").first().next("div.table-responsive").find("th:first-child"),$table_title_links_container=$(".ui_form").find("div.table-responsive").first().next("div.table-responsive").find("th:last-child"),2==$(".ui_form").find("div.table-responsive").first().next("div.table-responsive").find("th").length&&$table_title_links_container.remove(),$table_title_links_container.find("a").addClass("table_title_links pull-right btn btn-tiny"),$table_title_links_container.find("a").attr("href")&&$table_title_links_container.find("a").attr("href").indexOf("body=1")>-1?$table_title_links_container.find("a").addClass("btn-info"):$table_title_links_container.find("a").addClass("btn-warning"),$table_title_links=$table_title_links_container.html(),$table_title_header_container.append($table_title_links),$table_title_header_container_text_padding=10,$table_title_header_container.find("a").each(function(){$table_title_header_container_text_padding+=$(this).width()}),setTimeout(function(){if($(".ui_form").find("div.table-responsive").first().find("table:first-child").outerWidth()!=$(".ui_form").find("div.table-responsive").first().next("div.table-responsive").find("table:first-child").outerWidth()){var e=parseInt($(".ui_form").find("div.table-responsive").first().find("table:first-child").width()/2);$table_title_second_container.find(".table-title").addClass("left").find("b").css("padding-left",e-175),$table_title_second_container.find(".pull-right").removeClass("pull-right").addClass("pull-left")}$.each($table_title_second_container.find("table"),function(){$(this).removeClass().addClass("clear-formatting"),$.each($(this).find("td.col_value"),function(){$(this).css("background-color","white")})})},30),$table_title_header_container.find("b").css("padding-left",$table_title_header_container_text_padding),$table_title_header_container.find("b")&&$table_title_header_container.find("b").length>1&&$table_title_header_container.find("b:first-child").text()==$table_title_header_container.find("b:last-child").text()&&$table_title_header_container.find("b:last-child").remove()),$("td > a").on("click",function(){$(this).attr("onclick"),$("input[type=file]").each(function(){$(this).parent("a").hasClass("file-input-wrapper")||$(this).bootstrapFileInput()})}),settings_mailbox_slash_delimiter&&$("select.ui_select[name] > option").each(function(e,t){$(t).text($(t).text().replace(/\./g,"/").replace(/\/\//g,"/"))}),$.each($('table td[align="right"], table td[align="left"]'),function(e,t){$(this).attr("style","border: 0 !important;"),$(this).parents("tbody").attr("style","border: 0 !important;"),$(this).parents("table.table-hardcoded.table.table-striped.table-condensed.table-subtable").removeClass("table-hardcoded table table-striped table-condensed table-subtable")}),$.each($("div.table-responsive > table tbody tr td > table.table-hardcoded"),function(e,t){$(this).find("tr > td.col_label > b").removeAttr("style"),$(this).removeClass("table table-condensed")}),$.each($("div.table-responsive > table tbody tr td > div.tab-pane"),function(e,t){$(this).find("table").removeClass("table"),$(this).parents("div.table-responsive").find("table").removeClass("table-striped table-subtable")}),$.each($('div.table-responsive > table tbody tr td > div.tab-pane .col_value > input[type="button"][onclick^="ifield"]'),function(e,t){$(this).attr("style","margin-left: 0; margin-bottom: 3px !important")})),$.each($(".barchart"),function(){$(this).find("img").attr("height",4)}),$('#extended_sysinfo-1 div[aria-labelledby^="updates-"] div.panel-body div.table-responsive table.table.table-striped.table-condensed').next("table.ui_form_end_buttons").css("margin-top","10px"),$('#extended_sysinfo-1 div[aria-labelledby^="updates-"] div.panel-body div.table-responsive table.table.table-striped.table-condensed').next("table.ui_form_end_buttons").css("margin-top","10px").prev("table.table-condensed").prev("table.table.table-striped").addClass("invisible"),$("a").each(function(){$(this).attr("href")||$(this).addClass("no_effect")}),v___location_path!=v___location_prefix+"/virtual-server/domain_form.cgi"&&v___location_path!=v___location_prefix+"/server-manager/list_images.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/bwgraph.cgi"||($(".panel-body > a").each(function(){$(this).addClass("btn btn-inverse btn-tiny ui_link_replaced").removeClass("ui_link"),$(this).text($(this).text().replace(/\.$/,""))}),$.each($('.panel-body:contains("|")'),function(){$(this).contents().filter(function(){return 3==this.nodeType}).wrap('')}),$.each($(".btn-automated"),function(){$(this).text().replace(/[\t\n]+/g," ").length<4?$(this).remove():($(this).text($(this).text().replace("|","").replace("|","").replace(/(?:\r\n|\r|\n)/g,"")),$(this).prev().is("img")&&$(this).removeClass().addClass("margined-left-3"))}),$(".panel-body > b").css("margin-right","7px"),v___location_path==v___location_prefix+"/virtual-server/domain_form.cgi"&&$.each($(".btn-automated, .ui_link_replaced"),function(e,t){0==e&&$(this).html(' '+$(this).text()),1==e&&$(this).html(' '+$(this).text()),2==e&&$(this).html(' '+$(this).text()),3==e&&$(this).html(' '+$(this).text())})),v___location_path==v___location_prefix+"/server-manager/edit_serv.cgi"&&setTimeout(function(){$('.opener_container .table-hardcoded .col_value a[href^="edit_serv.cgi"]').each(function(){$(this).addClass("btn btn-inverse btn-xxs ui_link_replaced margined-right--2").removeClass("ui_link").attr("style","margin-top: 0 !important"),$(this).text($(this).text().replace(/\.$/,""))}),$.each($('.opener_container .table-hardcoded .col_value:contains("|")'),function(){$(this).find('a[href^="edit_serv.cgi"]').length&&$(this).contents().filter(function(){return 3==this.nodeType}).wrap(''),$.each($(".btn-automated"),function(){$(this).text().length<4?$(this).remove():$(this).text($(this).text().replace("|","").replace("|","").replace(/(?:\r\n|\r|\n)/g,""))})})},20),$.each($("input:not(.ui_upload)"),function(){"28px"==$(this).css("height")&&$(this).prev("input").addClass("heighter-28")}),$.each($(".container-fluid select"),function(){"34px"==$(this).next("input").css("height")&&$(this).addClass("heighter-34")}),$.each($(".container-fluid .ui_buttons_row input, .container-fluid .ui_buttons_row select"),function(){$(this).addClass("heighter-34")}),Core.curModuleFile("gnupg","list_keys.cgi")&&$('.container-fluid input[id="id"]').addClass("heighter-34"),Core.curModuleFile("virtual-server","edit_script.cgi")){var d=$('input[name="version"]');d.length&&d.attr("style",d.attr("style").replace("n: middle","n: bottom !important")).addClass("heighter-34")}if($.each($("tr > .ui_form"),function(){$(this).next().next("td").find("input.submitter")&&$(this).next().next("td").find("input.submitter").addClass("heighter-34")}),$.each($("input.heighter-34").next(".file_chooser_button"),function(){$(this).addClass("heighter-34"),$(this).find(".fa.fa-files-o").css("margin-top","0").addClass("vertical-align-middle")}),setTimeout(function(){$.each($(".container-fluid select"),function(){34==$(this).next("input").outerHeight()||34==$(this).prev("input").outerHeight()?$(this).addClass("heighter-34").removeClass("heighter-28"):28!=$(this).next("input").outerHeight()&&28!=$(this).prev("input").outerHeight()||$(this).addClass("heighter-28").removeClass("heighter-34")})},1),Core.curModule("term")){var h=$("iframe");if(h.length){var p=h;p.on("load",function(){p.contents().find("#term").css("width","99.3%").css("height","576px").css("margin-top","4px")}),$(this).next("br").remove().next('input[type="button"]').remove(),$(this).next('input[type="button"]').remove(),$(this).next("p").remove()}}$.each($(".file_chooser_button"),function(){$(this).prev("input").attr("style")&&$(this).prev("input").attr("style").indexOf("max-width: 100%")>-1&&$(this).prev("input").css("max-width","93%")}),v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"sysinfo.cgi"&&1==settings_sysinfo_link_mini&&$(".navigation > li:not('.has-sub')").removeClass("sub_active").find("span.current-large").remove(),$.each($('input[value="..."], input[value=" ..."], input[value=" ..."], input[value="... "], input[value="... "], input[value=" ... "], input[value=" ... "]'),function(){$(this).after(''),$(this).attr("value","")}),$.each($(".file_chooser_button"),function(){$(this).prev("input").css("margin-top","2px").css("margin-bottom","2px")}),$.each($(".file_chooser_button_attached"),function(){$(this).prev('input[type="button"]').prev("input").css("margin-top","2px").css("margin-bottom","2px"),$(this).parents(".ui_buttons_label").length||$(this).parents(".table-subtable").length||$(this).css("margin-top","11px")}),$.each($(".container-fluid .ui_form > .file_chooser_button_attached"),function(){($(this).prev(".heighter-34")&&$(this).prev(".heighter-34").length||$(this).next(".heighter-34")&&$(this).next(".heighter-34").length)&&($(this).css("margin-top","16px"),$(this).prev("input[onclick]").css("width","40px"))}),$.each($('.container-fluid .ui_form[action="init_cache.cgi"] > .file_chooser_button_attached'),function(){($(this).prev(".heighter-34")&&$(this).prev(".heighter-34").length||$(this).next(".heighter-34")&&$(this).next(".heighter-34").length)&&$(this).css("margin-top","14px")}),$.each($(".col_value > .file_chooser_button_attached"),function(){$(this).prev("input[onclick]").css("width","40px").css("margin-left","0")}),$("a.ui_link, .btn").each(function(){if("."==$(this).text().substr(-1)&&!$(this).parent().is("label")){var e="."==$(this).text().substr(-1)&&".."==$(this).text().substr(-2)?2:1;$(this).text($(this).text().substr(0,$(this).text().length-e))}}),v___location_path!=v___location_prefix+"/virtualmin-mailman/"&&v___location_path!=v___location_prefix+"/virtualmin-mailman/index.cgi"||$("input[name^=reset_]").addClass("heighter-28"),v___location_path!=v___location_prefix+"/software/edit_pack.cgi"&&v___location_path!=v___location_prefix+"/apache/show.cgi"&&v___location_path!=v___location_prefix+"/proc/index_search.cgi"||$.each($(".container-fluid .panel-body .btn:not(.file_chooser_button)"),function(){$(this).removeClass("heighter-28").addClass("heighter-34")}),v___location_path!=v___location_prefix+"/virtualmin-git/"&&v___location_path!=v___location_prefix+"/virtualmin-git/index.cgi"||$.each($(".btn.btn-default.submitter.ui_submit"),function(){$(this).removeClass("heighter-28").addClass("heighter-28")}),v___location_path!=v___location_prefix+"/apache/edit_global.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_newlinks.cgi"&&v___location_path!=v___location_prefix+"/virtualmin-awstats/"&&v___location_path!=v___location_prefix+"/postfix/master.cgi"||$.each($(".container-fluid .panel-body .ui_link_replaced"),function(){$(this).not(".btn-xxs").removeClass("btn-tiny").addClass("heighter-34")}),v___location_path!=v___location_prefix+"/virtualmin-init/"&&v___location_path!=v___location_prefix+"/virtualmin-dav/list_shares.cgi"&&v___location_path!=v___location_prefix+"/squid/edit_acl.cgi"&&v___location_path!=v___location_prefix+"/virtualmin-nginx/"&&v___location_path!=v___location_prefix+"/fdisk/edit_disk.cgi"&&v___location_path!=v___location_prefix+"/server-manager/edit_newlinks.cgi"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"backup-config/"||$.each($(".container-fluid .panel-body .ui_link_re-replaced"),function(){$(this).addClass("btn-tiny").removeClass("heighter-34")}),v___location_path==v___location_prefix+"/pam/"&&$(".panel-body > a.ui_link").addClass("btn-tiny"),v___location_path!=v___location_prefix+"/syslog/"&&v___location_path!=v___location_prefix+"/syslog/index.cgi"||$.each($(".btn"),function(){$(this).removeClass("btn-tiny")}),v___location_path!=v___location_prefix+"/software/"&&v___location_path!=v___location_prefix+"/software/index.cgi"||($(".container-fluid input#search").addClass("heighter-34 vertical-align-top"),$('form[action="file_info.cgi"] > .ui_form_end_submit').addClass("heighter-28 heighter-28-force margined-top-0")),v___location_path==v___location_prefix+"/software/tree.cgi"&&$(".ui_link").addClass("margined-top-10"),v___location_path==v___location_prefix+"/syslog/save_log.cgi"&&($.each($(".container-fluid .heighter-34"),function(){$(this).removeClass("heighter-34").addClass("heighter-28")}),$("form:first").next("script").next("br").remove(),$("form:last").css("margin-top","5px")),v___location_path==v___location_prefix+"/status/edit_mon.cgi"&&($('td.col_value > table[cellspacing="1"] tbody').attr("style","border: 0 !important;"),$(".opener_trigger:last-child").css("font-size","16px"),$.each($("table.sub_table_container td > font"),function(){$(this).parents("tbody"),$(this).contents().unwrap().wrap(' ')})),v___location_path!=v___location_prefix+"/shell/"&&v___location_path!=v___location_prefix+"/shell/index.cgi"&&v___location_path!=v___location_prefix+"/server-manager/shell.cgi"||($.each($(".container-fluid .btn:not(.btn-link), .container-fluid select, .container-fluid input"),function(){$(this).removeClass("heighter-28").addClass("heighter-34"),$(this).is('input[type="button"]')&&$($(this).addClass("submitter")),$(".form-control.sidebar-search").val()&&$(".form-control.sidebar-search").val().trim().startsWith("!")&&$(".form-control.sidebar-search").val(""),$(".ui_form").find("input.btn.btn-default:first").addClass("btn-success")}),$(".container-fluid input#cmd").focus()),$.each($("input"),function(){"28px"==$(this).css("height")&&"28px"!=$(this).next("input").css("height")&&$(this).is(':not([type="hidden"])')&&$(this).next("input").addClass("heighter-28")}),$.each($(".container-fluid select"),function(){"34px"==$(this).css("height")&&"34px"!=$(this).next("select").css("height")&&$(this).next("select").addClass("heighter-34")}),v___location_path==v___location_prefix+"/cluster-passwd/edit_passwd.cgi"&&$.each($("input + button"),function(e,t){"28px"==$(this).css("height")&&$(this).addClass("heighter-28").css("line-height","12px").css("margin-top","2px")}),v___location.pathname!=v___location_prefix+"/virtual-server/pro/history.cgi"&&v___location.pathname!=v___location_prefix+"/server-manager/bwgraph.cgi"&&v___location.pathname!=v___location_prefix+"/server-manager/history.cgi"&&v___location.pathname!=v___location_prefix+"/server-manager/one_history.cgi"||($("body").find("table.ui_form_end_buttons .btn.btn-default.submitter.ui_submit").addClass("btn-success"),$(".panel-body > table tr td b").each(function(e,t){$(this).addClass("btn btn-success btn-tiny ui_link_replaced")}),$(".panel-body > table a").each(function(e,t){$(this).addClass("btn btn-inverse btn-tiny ui_link_replaced").removeClass("ui_link"),$(this).text($(this).text().replace(/\.$/,"")),$(this).text()&&$(this).text().indexOf("<<")>-1&&($(this).text($(this).text().replace(/\<\ '+$(this).text())),$(this).text()&&$(this).text().indexOf(">>")>-1&&($(this).text($(this).text().replace(/\>\>/,"")),$(this).html($(this).text()+' ')),$(this).parent().contents().filter(function(){return 3==this.nodeType}).remove(),0===$(this).attr("href").indexOf("edit_cmd.cgi?new")&&$(this).html(' '+$(this).text()),0===$(this).attr("href").indexOf("edit_file.cgi?new")&&$(this).html(' '+$(this).text()),0===$(this).attr("href").indexOf("edit_sql.cgi?new")&&$(this).html(' '+$(this).text()),$(this).parents("table").css("margin-bottom","3px")}),$("#history").next("table.ui_grid_table").next("a").length?($("#history").next("table").next("a").addClass("btn btn-info btn-tiny ui_link_replaced").attr("style","margin-top: 4px !important").attr("target","_blank"),$("#history").next("table").next("a").text($("#history").next("table").next("a").text().replace(/\.\.$/,"")),$("#history").next("table").next("a").html(' '+$("#history").next("table").next("a").text())):($("#history").next("a").addClass("btn btn-info btn-tiny ui_link_replaced").attr("style","margin-top: 4px !important").attr("target","_blank"),$("#history").next("a").text($("#history").next("a").text().replace(/\.\.$/,"")),$("#history").next("a").html(' '+$("#history").next("a").text())),$(".panel-body > hr + b").attr("style","font-size: 16px; font-weight: normal;"),$(".panel-body > hr + b").text($(".panel-body > hr + b").text().replace(/\:$/,"")),onLoad()),$.each($('tr > td[valign="top"][width="50%"]'),function(){$(this).attr("style","vertical-align: top !important; "+$(this).attr("style"))}),$("body table").each(function(e,t){$(this);$(t).hasClass("table")||$(t).hasClass("header")||$(t).hasClass("ui_form_end_buttons")||$(t).hasClass("ui_table")||($(t).addClass("table-hardcoded"),$t_uri_usermin&&($(t).addClass("table-subtable"),$(t).find("tr.thead").length||$(t).hasClass("sub_table_container table-hardcoded table-subtable")?($(t).find("tr.thead").attr("style","border: 1px solid #efefef"),$(t).attr("style","border: 1px solid #efefef")):$(t).attr("style")&&v___location_path.indexOf("view_mail.cgi")>-1||$(t).attr("style","margin-top: 10px;")))}),v___location_path!=v___location_prefix+"/bind8/"&&v___location_path!=v___location_prefix+"/postfix/virtual.cgi"||table_data_init($(".table.table-striped.table-hover.table-condensed")),v___location_path==v___location_prefix+"/virtual-server/list_scripts.cgi"&&table_data_init($("#att_existing > form > table.table.table-striped.table-condensed")),v___location_path==v___location_prefix+"/virtual-server/edit_newscripts.cgi"&&table_data_init($("#att_summary > table.table.table-striped.table-condensed")),v___location_path!=v___location_prefix+"/server-manager/index.cgi"&&v___location_path!=v___location_prefix+"/virtualmin-htpasswd/index.cgi"||table_data_init($("body > div > div > div.panel-body > form > table.table.table-striped.table-condensed")),($('body[class*="status"]').length&&!$('body[class*="smart-status"]').length&&!v___location_file||v___location_path==v___location_prefix+"/servers/"||v___location_path==v___location_prefix+"/servers/index.cgi"||v___location_path==v___location_prefix+"/webminlog/search.cgi")&&table_data_init($("table.table-striped.table-condensed")),$('body[class*="ldap-useradmin"]').length&&table_data_init($("form > table.table.table-striped.table-condensed")),v___location_path==v___location_prefix+"/virtual-server/list_sched.cgi"&&table_data_init($(".table.table-striped.table-hover.table-condensed"),!1,!1,{orderable:!1,targets:[0,-1]}),v___location_path!=v___location_prefix+"/servers/"&&v___location_path!=v___location_prefix+"/servers/index.cgi"||($(".ui_checked_columns td table tr td").find('a.ui_link[href*="edit_serv.cgi"]').addClass("margined-left-4 label label-sm label-primary hidden").html(''),$(".ui_checked_columns").hover(function(){$(this).find("td table tr a.ui_link.label.hidden").removeClass("hidden")},function(){$(this).find("td table tr a.ui_link.label").addClass("hidden")})),$.each($('table.table.table-striped.table-condensed.dataTable.no-footer > thead > tr[role="row"]:first-child'),function(e,t){$(this).attr("style","border-top: 4px solid #f2f2f2 !important")}),$.each($('button[onclick^="ifield"].btn.btn-default.ui_button'),function(){$(this).addClass("file_chooser_button_emulate")}),$.each($(".file_chooser_button_emulate"),function(){$(this).find(".fa-files-o").length||$(this).append(''),"28px"==$(this).prev("input").css("height")&&$(this).addClass("heighter-28")}),$.each($("label > img"),function(e,t){$(this).attr("style","vertical-align: baseline !important")}),$.each($('select[multiple][name="weekdays"]'),function(){$(this).parents('td[valign="top"], td.td_tag').attr("style","vertical-align: top !important"),$(this).parents('table[width="100%"]').parents(".ui_radio_table.table-hardcoded").css("width","100%")}),$.each($("label").find("br"),function(){$(this).parent("label").prev(".aradio, .acheckbox").attr("style","margin-left: 0 !important;"),$(this).parent("label").next(".aradio, .acheckbox").attr("style","margin-left: 0 !important;")}),$.each($(".table-responsive + .table-responsive + .table-hardcoded td"),function(){$(this).find(".heighter-34").length&&$.each($(".table-responsive + .table-responsive + .table-hardcoded td"),function(){$(this).find(".btn").addClass("heighter-34")})}),v___location_path==v___location_prefix+"/cpan/edit_mod.cgi"&&$('.container-fluid form[action="download.cgi"]').next().next().next().find(".submitter.ui_submit").addClass("heighter-34"),v___location_path!=v___location_prefix+"/cpan/"&&v___location_path!=v___location_prefix+"/cpan/index.cgi"||$('input[name="cpan"]').next("button").append('').attr("style","width: 40px; height: 28px; vertical-align:middle !important; margin-top:2px; margin-bottom:2px;"),$("form").find(".icons-row:not(.inline-row)").length&&($("form").find(".icons-row").addClass("_processed_"),$("form").find(".icons-row").css("border-top","1px solid #efefef").css("border-bottom","1px solid #efefef"),$("form").find(".icons-row").find(".icons-container").addClass("icons-container-stretched"));function f(){$("body").find(".icons-row:not(._processed_):not(.inline-row)").css({"padding-top":"8px","padding-bottom":"8px"}),$("body").find(".icons-row:not(._processed_):not(.inline-row)").css("border-top","1px solid #efefef").css("border-bottom","1px solid #efefef")}function g(){$("body").find(".icons-row:not(._processed_):not(.inline-row)").css({"padding-top":"8px"}),$("body").find(".icons-row:not(._processed_):not(.inline-row)").css("border-top","1px solid #efefef")}function u(){$("body").find(".icons-row:not(._processed_):not(.inline-row)").css({"padding-bottom":"6px"}),$("body").find(".icons-row:not(._processed_):not(.inline-row)").css("border-bottom","1px solid #efefef")}v___location_path!=v___location_prefix+"/lvm/"&&v___location_path!=v___location_prefix+"/virtualmin-support/"&&v___location_path!=v___location_prefix+"/proftpd/virt_index.cgi"&&v___location_path!=v___location_prefix+"/dhcpd/"&&v___location_path!=v___location_prefix+"/dhcpd/index.cgi"&&v___location_path!=v___location_prefix+"/cluster-usermin/"&&v___location_path!=v___location_prefix+"/cluster-usermin/index.cgi"&&v___location_path!=v___location_prefix+"/cluster-useradmin/"&&v___location_path!=v___location_prefix+"/cluster-useradmin/index.cgi"&&v___location_path!=v___location_prefix+"/cluster-webmin/"&&v___location_path!=v___location_prefix+"/cluster-webmin/index.cgi"||f(),v___location_path!=v___location_prefix+"/proftpd/"&&v___location_path!=v___location_prefix+"/proftpd/index.cgi"&&v___location_path!=v___location_prefix+"/bacula-backup/"&&v___location_path!=v___location_prefix+"/bacula-backup/index.cgi"||g(),v___location_path==v___location_prefix+"//"&&u();if($.each($(".row.icons-row.inline-row"),function(e,t){$(this).find("a.icon_link").contents().filter(function(){return 3==this.nodeType}).remove()}),$.each($(".row.icons-row:not(.inline-row) .icons-container"),function(e,t){$(this).removeAttr("data-title").removeAttr("data-toggle").removeAttr("data-placement").removeAttr("data-container")}),($("body").find(".icons-row > div.icons-container").length||$("body").find(".icons-row > div.small-icons-container").length)&&($.each($(".icons-row .hidden-forged-6"),function(){$(this).find("input").is(":checked")&&$(this).parents('div[class*="icons-container"]').addClass("highlighted")}),$.each($(".hidden-forged-7 > a"),function(){$(this).removeClass(),$(this).parents(".hidden-forged-7").hasClass("hidden-forged-7-small")?($(this).html(' '),$(this).parent().parent().prepend('')):($(this).html(' '),$(this).parent().parent().prepend(''))})),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"virtualmin-registrar/"&&$.each($("td > input "),function(){$(this).parents("table.table-hardcoded").find('form[action="edit.cgi"]').length&&($(this).css("margin-left","5px"),$(this).parent("td").prev("td").find("select").css("margin-left","5px"))}),v___location_path==v___location_prefix+"/cluster-webmin/edit_host.cgi"&&$.each($(".panel-body > .table-hardcoded"),function(){$(this).attr("style","margin-top: 10px !important")}),v___location_path!=v___location_prefix+"/virtual-server/list_scripts.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_newscripts.cgi"||$('form[action="disable_scripts.cgi"] thead + thead tr th, form[action="disable_scripts.cgi"] tbody + thead tr th, form[action="script_form.cgi"] thead + thead tr th, form[action="script_form.cgi"] tbody + thead tr th').attr("colspan","5"),$.each($(".file_chooser_button_attached"),function(e,t){$(this).prev('input[onclick*=".cgi"]')&&$(this).prev('input[onclick*=".cgi"]').css("width","40px")}),!$t_uri_cloudmin||v___location_path!=v___location_prefix+"/server-manager/add_form.cgi"&&v___location_path!=v___location_prefix+"/server-manager/scan_form.cgi"||$.each($("label"),function(){$(this).find("br").remove()}),(v___location_path==v___location_prefix+"/mysql/view_table.cgi"||v___location_path==v___location_prefix+"/postgresql/view_table.cgi")&&$("td.td_tag > table.table-hardcoded")){var v=$("td.td_tag > table.table-hardcoded").parents("table").find("thead").find("tr").find("th").length;$("td.td_tag > table.table-hardcoded").parent("td.td_tag").attr("colspan",v).attr("style","padding: 1px !important;")}if(v___location_path==v___location_prefix+"/virtual-server/backup_form.cgi"&&v___location_href&&v___location_href.indexOf("?sched=")>-1&&($("body > div > div > div.panel-body > form > table:nth-child(4) > tbody > tr:nth-child(2) > td").css("display","table-cell"),setTimeout(function(){$("a[href=\"javascript:hidden_opener('hiddendiv_adddest', 'hiddenopener_adddest')\"]").next().attr("style","").addClass("btn btn-tiny btn-default")},10)),"/config.cgi"===v___location_path&&$("thead tr th.table-title").prepend('  '),$.each($('form[action="save_global.cgi"], form[action="save_iptables.cgi"], form[action="save_domain.cgi"],form[action="domain_setup.cgi"],form[action="mass_create.cgi"],form[action="save_roundrobin.cgi"],form[action="save_alert.cgi"], body.time form[action="apply.cgi"]'),function(){$(this).find(".col_header").removeClass("col_header")}),(check_location_resource("/virtual-server/edit_newchangelog.cgi")||check_location_resource("/server-manager/edit_newchangelog.cgi")||check_location_resource("/shell/")||check_location_resource("/shell/index.cgi")||check_location_resource("/server-manager/shell.cgi"))&&$("td.col_value.col_value").removeClass("col_header"),check_location_resource("/ldap-server/edit_ldif.cgi")&&$("span > input.ui_opt_textbox").unwrap(),v___location_path==v___location_prefix+"/server-manager/gvnc.cgi"&&$("body.server-manager p > object").css("height","100%").parent("p").attr("style","display: block; height: "+parseInt($(window).outerHeight()/1.4)+"px"),v___location_path==v___location_prefix+"/spam/edit_simple.cgi"||v___location_path==v___location_prefix+"/spam/edit_header.cgi"){var m=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:first-child"),b=(A=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:last-child")).find("a");m.append(b),A.remove(),m.find("a").addClass("table_title_links pull-right btn btn-xs btn-grey").attr("style","position: absolute; right: 23px; margin-top: 7px !important;")}if(v___location_path==v___location_prefix+"/server-manager/edit_pass.cgi"&&$('form[action="save_pass.cgi"]').find('a[href*="edit_pass.cgi?"]:not(.btn)').length){var m=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:first-child"),b=(A=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:last-child")).find("a");m.append(b),A.remove(),m.find("a").addClass("table_title_links pull-right btn btn-info btn-tiny").attr("style","position: absolute; right: 20px; margin-top: 3px !important;")}if($('.panel-default + a[href="/virtual-server/"]').attr("href","/virtual-server/index.cgi"),$('.panel-default + a[href="/server-manager/"]').attr("href","/server-manager/index.cgi"),v___location_directory_trail_slashed==v___location_prefix+"/virtual-server/"?$("#headln2l > a:first-child .fa-arrow-left").parent("a").attr("href","/virtual-server/index.cgi"):v___location_directory_trail_slashed==v___location_prefix+"/server-manager/"&&$("#headln2l > a:first-child .fa-arrow-left").parent("a").attr("href","/server-manager/index.cgi"),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"acl/"){$("body.acl > div > div > div.panel-body > form > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td > table > tbody").attr("style","border: 0 !important");var x=$("br").next(".ui_grid_table.table-hardcoded").find("tbody").attr("style","border: 1px solid #"+(v___theme_night_mode_enabled||v___theme_night_mode?"393b3f":"eee")+" !important").parent("table").prev("br").prev("b");$("br").next(".ui_grid_table.table-hardcoded").css("margin-bottom","3px"),$.each(x,function(e,t){""==$(this).text()&&($(this).next("br").remove(),$(this).remove())}),x.attr("style","margin-bottom: -3px !important").next("br").remove()}$('body[class*="bandwidth"]').length&&$(".fa.fa-calendar.file_chooser_button_attached").attr("style","font-size: 11px; margin-top: 9px !important; pointer-events: none; margin-left: -27px !important;"),v___location_path!=v___location_prefix+"/mysql/exec_form.cgi"&&v___location_path!=v___location_prefix+"/postgresql/exec_form.cgi"||($('select[name="old"], input[name="clear"], select[name="charset"]').removeClass("heighter-34").addClass("heighter-28"),$('input[name="clear"]').attr("style","margin-bottom: 3px !important;"),$('select[name="old"]').attr("style","margin-bottom: 3px !important; margin-right: 0 !important;")),"config.cgi"!=v___location_file&&"uconfig.cgi"!=v___location_file||"mysql"!=v___location_query&&"postgresql"!=v___location_query||$('input[name="style"]').parents("td.col_value").parent("tr").after('\t\t\t\t\t'+theme_language("theme_xhred_xsql_fit_content_screen_height")+'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"),$(".ui_post_header.hidden").html()&&$(".ui_post_header.hidden").html().length>5&&($("#headln2c").append(""+$(".ui_post_header.hidden").html()+""),$(".ui_post_header.hidden").remove())}if(v___location_path&&v___location_path.indexOf("/sysinfo.cgi")>-1){if(!e){$('#status_services-status-collapse .tr_tag .td_tag > img[src*="images/up.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/check.png").css("margin-right","3px").attr("title",$.trim(i.parent(".td_tag").text()))}),$('#status_services-status-collapse .tr_tag .td_tag > img[src*="images/down.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/cross.png").css("margin-right","3px").attr("title",$.trim(i.parent(".td_tag").text()))}),$('#status_services-status-collapse .tr_tag .td_tag > img[src*="images/not.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/not.png").css("margin-right","3px").attr("title",$.trim(i.parent(".td_tag").text()))}),$.each($(".piechart"),function(){isNaN($(this).data("percent"))&&$(this).parents(".text-center").remove()}).promise().done(function(){var e=$("span[data-charts]"),t='div[class^="col-md-"]',i=e.parents(".row").find(t).length,a=12/i,n=2===i?"3":"1"===i?"6":"",a=n||a;$.each(e.parents(".row"),function(e,n){if($(this).find(t).removeClass().addClass("col-md-"+(2===i?6:a)+" col-md-"+1.5*a+" col-xs-"+1.5*a+" col-xs-"+2*a+" text-center xx"),3===i){$(this).find(t).last().removeClass("col-xs-6 col-xs-8").addClass("col-xs-12")}})});$(".__page .panel-default:not(#system-status)").sort(function(e,t){return $(e).data("sorter")>$(t).data("sorter")?1:-1}).appendTo("#extended_sysinfo-1.panel-group")}time.tictac(1)}if(!e){if(v___location_path==v___location_prefix+"/virtual-server/edit_phpmode.cgi"&&$("#hiddendiv_phpinfo table tbody tr").css("border","1px solid #"+(v___theme_night_mode_enabled?"393b3f":"eee")),$.each($('a[href*="showpass.cgi?"][onclick]'),function(){$(this).html('').css("color","#555")}),v___location_path==v___location_prefix+"/webmin/edit_startpage.cgi"&&($('select[name="deftab"]').parents("td.col_value").parent("tr").hide(),$('select[name="gotomodule"] option').each(function(){("virtual-server"==$(this).val()||"server-manager"==$(this).val())&&$(this).remove()})),v___location_path!=v___location_prefix+"/webmin/edit_ui.cgi"&&v___location_path!=v___location_prefix+"/usermin/edit_ui.cgi"||($('select[name*="sysinfo"], input[name*="sizefile_def"], input[name*="sizeuser_def"], input[name*="sizemodule_def"], input[name*="sizeusers_def"], input[name*="sizemodules_w"], input[name*="cs_link_def"], input[name*="cs_header_def"], input[name*="cs_table_def"], input[name*="cs_text_def"], input[name*="cs_page_def"], input[name*="width_def"], input[name*="height_def"], input[name*="sizedate_def"], input[name*="texttitles"]').parents("td.col_value").parent("tr").addClass("hidden"),$(".sub_table_container tr td.no-border").parent("tr").addClass("hidden")),(check_location_resource("/config.cgi?virtual-server")||check_location_resource("/config.cgi?server-manager"))&&$('input[name="theme_image"], input[name="theme_link"], input[name="theme_alt"]').parents("td.col_value").parent("tr").hide(),v___location_path==v___location_prefix+"/virtual-server/edit_resel.cgi"&&$('input[name="logo"][id="logo"], input[name="link"]').parents("td.col_value").parent("tr").hide(),v___location_path==v___location_prefix+"/virtual-server/edit_newfeatures.cgi"&&($('.container-fluid tr td:last-child label:contains("|")').replaceText(/\|/gi,""),$(".container-fluid td a.ui_link").addClass("ui_link_replaced btn btn-info btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('')),$("#headln2l .btn .fa-arrow-left").length){$("body").attr("class")&&$("body").attr("class").indexOf(v___module_file_manager)>-1||$("#headln2l .btn .fa-arrow-left").parent("a").attr("href",$("#headln2l .btn .fa-arrow-left").parent("a").attr("href").replace("index.cgi",""));var y=URI(v___location);v___location_file=y.filename()}$("#headln2r, #headln2l").prepend('
    ').append("
    "),$("#headln2r a").detach().appendTo("#headln2r .btn-group"),$("#headln2l a").detach().appendTo("#headln2l .btn-group"),$.each($(".ui_form_end_submit"),function(){if(v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"proc/edit_proc.cgi"&&"edit_dbase.cgi"!=v___location_file&&"edit_pam.cgi"!=v___location_file&&"list_records.cgi"!=v___location_file&&!Core.curModule("mailbox")&&!Core.curModule("mailboxes")){var e=$(this).parent().find(".ui_form_end_submit");!e.parents(".btn-group").length&&e.length>1&&$(this).parent().find(".ui_form_end_submit, .ui_form_end_submit + input").wrapAll('
    ')}}).promise().done(function(){$.each($(".end_submits"),function(e,t){($(this).prev(".heighter-28").length||"28px"==$(this).prev("input, select").css("height"))&&$(this).find(".ui_form_end_submit").addClass("heighter-28")})}),$.each($(".btn-group").find("span"),function(){$(this).not("[class]").length&&!$.trim($(this).text()).length&&$(this).remove()}),2===$(".panel-default").nextAll("a.btn.btn-primary").length&&$(".panel-default").next("a.btn.btn-primary").find(".fa.fa-arrow-left").removeClass("fa-arrow-left").addClass("fa-arrow-circle-o-left"),3===$(".panel-default").nextAll("a.btn.btn-primary").length&&($(".panel-default").next("a.btn.btn-primary").next("a.btn.btn-primary").find(".fa.fa-arrow-left").removeClass("fa-arrow-left").addClass("fa-arrow-circle-left"),$(".panel-default").next("a.btn.btn-primary").find(".fa.fa-arrow-left").removeClass("fa-arrow-left").addClass("fa-arrow-circle-o-left")),v___location_path==v___location_prefix+"/init/reboot.cgi"&&$("input.btn-success").removeClass("btn-success").addClass("btn-warning"),v___location_path==v___location_prefix+"/init/shutdown.cgi"&&$("input.btn-success").removeClass("btn-success").addClass("btn-danger"),v___available_navigation||page_display(),$(".dataTable .ui_checked_checkbox").parent("tr").parent("tbody").prev("thead").find("th:first-child").addClass("opacity-0 pointer-events-none"),$("table tr.thead td").addClass("tdhead"),(Core.curModuleFile("virtual-server","edit_newchroot.cgi")||Core.curModuleFile("virtual-server","edit_newglobal.cgi")||Core.curModuleFile("virtual-server","edit_newshells.cgi")||Core.curModuleFile("virtual-server","edit_newfields.cgi")||Core.curModuleFile("server-manager","edit_docker.cgi")||Core.curModuleFile("server-manager","edit_vserver.cgi")||Core.curModuleFile("server-manager","edit_zone.cgi")||Core.curModuleFile("server-manager","edit_openvz.cgi")||Core.curModuleFile("server-manager","list_locations.cgi")||Core.curModuleFile("server-manager","edit_lxc.cgi")||Core.curModuleFile("server-manager","list_ips.cgi")||$('body[class*="bind8"]').length&&v___location_file||$('body[class*="status"]').length&&"edit_mon.cgi"==v___location_file||$('body[class*="custom"]').length&&"edit_sql.cgi"==v___location_file||$('body[class*="custom"]').length&&"edit_cmd.cgi"==v___location_file||$('body[class*="custom"]').length&&"edit_file.cgi"==v___location_file)&&$(".table").removeClass("table-hover");var w=$(".fa-toggle-switch-off").parent("button.btn-default");1===w.length&&"1"==w.parent("td").find('input[type="radio"]:checked').val()&&w.find(".fa-toggle-switch-off").addClass("fa-toggle-switch").removeClass("fa-toggle-switch-off"),w.parents("td").addClass("vertical-align-bottom");var k=$('form[action*="manual"] > select[name="file"], form[action*="manual.cgi"] > select[name="manual"], form[action*="edit_"] > select[name="file"]');k.length&&(k.addClass("heighter-34"),$('form[action*="manual"], form[action*="edit_"]').css("margin-bottom","2px")),Core.curModule("firewalld")&&($("select#zone").addClass("heighter-34"),$('form[action="save_ifaces.cgi"] button').addClass("heighter-28-force")),$('body[class*="proftpd"] .table-hardcoded tr td > input + input.btn.btn-default').removeClass("heighter-28").addClass("heighter-34").prev("input").addClass("heighter-34"),$('body[class*="proftpd"] form[action="find_ftpaccess.cgi"] > input:first-child').removeClass("heighter-34").addClass("heighter-28"),"edit_simple.cgi"==v___location_file&&$('body[class*="spam"]').length&&$("tr td").contents().filter(function(){return 3==this.nodeType}).remove(),"edit_awl.cgi"==v___location_file&&$('body[class*="spam"]').length&&$('input[name="user"]').next("input").addBack().addClass("heighter-34"),Core.curModuleFile("usermin","list_sessions.cgi")&&$('.container-fluid #user, .container-fluid input[type="button"]').addClass("heighter-34"),(Core.curModuleFile("htaccess-htpasswd","")||Core.curModuleFile("htaccess-htpasswd","index.cgi"))&&($("#search, .file_chooser_button").addClass("heighter-34").css("margin-bottom","-1px"),$("#search").css("margin-top","0")),(Core.curModuleFile("mailboxes","")||Core.curModuleFile("mailboxes","index.cgi"))&&$("#user, .file_chooser_button").addClass("heighter-34 vertical-align-middle").css("margin-bottom","-1px"),Core.curModuleFile("mailboxes","list_mail.cgi")&&$("#mfolder1, #mfolder2").addClass("heighter-34").css("margin-bottom","-1px").css("margin-top","-1px"),Core.curModuleFile("quota","list_users.cgi")&&$("#user, #user + input").addClass("heighter-34"),Core.curModuleFile("quota","list_groups.cgi")&&$("#group, #group + input").addClass("heighter-34"),(Core.curModuleFile("apache","htaccess.cgi")||Core.curModuleFile("virtualmin-registrar","index.cgi")||Core.curModuleFile("virtualmin-registrar",""))&&$(".ui_form_end_submit").addClass("heighter-28-force");var C=$('form:not([action="save_log.cgi"]) .table-responsive .table .sub_table_container .table tbody tr td > select,\t\t\t\t\t\t\t form:not([action="save_log.cgi"], [action="save_net.cgi"]) .table-responsive .table .sub_table_container .table tbody tr td > input,\t\t\t\t\t\t\t form:not([action="save_user.cgi"], [action="save_group.cgi"]) .table td.opener_container td.col_value table tbody tr td > select,\t\t\t\t\t\t\t form:not([action="save_user.cgi"], [action="save_group.cgi"]) .table td.opener_container td.col_value table tbody tr td > input,\t\t\t\t\t\t\t form[action="save_newglobal.cgi"] > table tbody tr td input,\t\t\t\t\t\t\t form[action="save_newfields.cgi"] > table tbody tr td input,\t\t\t\t\t\t\t form[action="save_newfields.cgi"] > table tbody tr td select,\t\t\t\t\t\t\t form[action="save_newshells.cgi"] > table tbody tr td select,\t\t\t\t\t\t\t form[action="save_newshells.cgi"] > table tbody tr td input,\t\t\t\t\t\t\t form[action="save_linkcats.cgi"] > table tbody tr td input,\t\t\t\t\t\t\t form[action="save_gen.cgi"] > table tbody tr td input\t\t\t\t\t\t\t ');if($.each(C,function(e,t){$(this).parent().find("input[data-mmclick]").length||$(this).parent().find("button[data-mmclick]").length||$(this).parent().find('input[onclick*="window.open"]').length||$(this).parent().find('button[onclick*="window.open"]').length||($(this).prev(".awobject").length?$(this).css("width","auto"):1==$(this).parent().find('input:not([type="checkbox"], [type="radio"]), select').length?$(this).css("width","100%").css("min-width","100%"):2==$(this).parent().find('input:not([type="checkbox"], [type="radio"]), select').length&&($(this).parent().find("input, select").first().css("width","39%"),$(this).parent().find("input, select").last().css("width","60%").css("float","right")))}),Core.curModuleFile("virtual-server","edit_newstyles.cgi")?$('a[onclick^="window.open(\\"thumb_style.cgi?"]').html('').addClass("btn btn-default btn-xxs margined-top--3"):Core.curModule("virtual-server")&&$('a[onclick^="window.open(\\"thumb_style.cgi?"]').html('').addClass("btn btn-default heighter-28-force"),Core.curModuleFile("virtual-server","edit_html.cgi")){$('script:contains("xinha")').remove(),$('.ui_form_end_submit:not([name="create"], [name="cancel"], [name="save"], [name="delete"])').addClass("heighter-28-force");var O=-1!==v___location_query.indexOf("editok")||-1!==v___location_query.indexOf("createok"),T=-1!==v___location_query.indexOf("textok");O&&$("#body").length?($("#editok").removeClass("btn-default").addClass("btn-grey"),$("#body").css("display","none"),$("hr + b").addClass("hidden"),$("#body").after('
    '),editor_html_init(["body",2,!0,"edit_web"])):T&&($("#textok").removeClass("btn-default").addClass("btn-grey"),editor_init_check()&&editor_init($("textarea"),!1,!1,"static",!1,!0,!1,e)),$(".ui_form_end_submit").click(function(){set_onbeforeunload_status(0,0)}),$("input:file").change(function(){var e=$(this);setTimeout(function(){$('form[action*="upload_html.cgi"]').append(e)},500)})}var S=' body button[onclick*="window.open"][onclick*="choose"][onclick*="chooser.cgi"]:not([onclick*="_chooser.cgi"]), body input[onclick*="window.open"][onclick*="choose"][onclick*="chooser.cgi"]:not([onclick*="_chooser.cgi"]), body button[onclick*="window.open"][onclick*="choose"][onclick*="standard_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="standard_chooser.cgi"], body button[onclick*="window.open"][onclick*="choose"][onclick*="third_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="third_chooser.cgi"], body button[onclick*="window.open"][onclick*="choose"][onclick*="user_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="user_chooser.cgi"], body button[onclick*="window.open"][onclick*="choose"][onclick*="group_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="group_chooser.cgi"], body button[onclick*="window.open"][onclick*="choose"][onclick*="my_group_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="my_group_chooser.cgi"], body button[onclick*="window.open"][onclick*="choose"][onclick*="module_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="module_chooser.cgi"] ';if($(S).length&&$(S).each(function(){$(this).attr("data-mmclick",$(this).attr("onclick")).removeAttr("onclick"),chooser_get_target($(this),0).length&&$(this).css("margin-left","-8px")}),(Core.curModuleFile("virtualmin-nginx","")||Core.curModuleFile("virtualmin-awstats","")||Core.curModuleFile("fdisk","edit_disk.cgi")||Core.curModuleFile("virtual-server","edit_newlinks.cgi")||Core.curModuleFile("virtualmin-dav","list_shares.cgi")||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"pam/"&&!v___location_file||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"syslog/"&&!v___location_file||v___location_path==v___location_prefix+"/postfix/master.cgi")&&setTimeout(function(){var e=$('.panel-body > .ui_link, .panel-body > .ui_link_replaced,\t\t\t\t\t body[data-uri*="virtualmin-awstats"] .panel-body > form > .ui_link_replaced,\t\t\t\t\t body[data-uri*="edit_disk.cgi"] .panel-body p > a.ui_link_replaced,\t\t\t\t\t body[data-uri*="edit_newlinks.cgi"] .panel-body > form > .ui_link_replaced,\t\t\t\t\t body[data-uri*="edit_newlinks.cgi"] .panel-body > .ui_emptymsg + p > .ui_link_replaced'),t=$.trim(e.first().text()),i=e.first().attr("href");$("#headln2r .btn-group a").addClass("pull-left").attr("style",""),$("#headln2r .btn-group").prepend('\t\t\t\t\t\t\t\t'),e.next("br").remove(),e.remove()},0),v___theme_night_mode_enabled||v___theme_night_mode){if($(".opener_shown").length>0){var M=$(".opener_container, .opener_container:hidden").find(".ui_grid_table, .ui_grid_table:hidden");M.length&&$.each(M,function(e,t){$(this).parent("td").attr("style","padding: 0 !important")})}if($(".opener_table_style_small").length>0){var I=$(".opener_table_style_small, .opener_table_style_small:hidden").find(".sub_table_container.table-hardcoded, .sub_table_container.table-hardcoded:hidden");I.length&&$.each(I,function(e,t){$(this).parent("td").attr("style","padding: 0 !important"),$(this).find("tbody tr td").attr("style","padding-left: 3px !important; padding-right: 3px !important")})}}if($('html[data-script-name*="webmin/edit_assignment.cgi"] table table tbody tr td, html[data-script-name*="usermin/edit_assignment.cgi"] table table tbody tr td').hover(function(){$(this).is("td:nth-child(1)")||$(this).is("td:nth-child(3)")?$(this).addClass("hl-ow").next("td").addClass("hl-ow"):($(this).is("td:nth-child(2)")||$(this).is("td:nth-child(4)"))&&$(this).addClass("hl-ow").prev("td").addClass("hl-ow")},function(){$(this).removeClass("hl-ow").next("td").removeClass("hl-ow"),$(this).removeClass("hl-ow").prev("td").removeClass("hl-ow")}),Core.curModuleFile("sysstats","display_all.cgi")&&setTimeout(function(){$(".__page").removeClass("progressing"),progress.end(),page_display(),set_onbeforeunload_status(0,1)},600),(Core.curModule("changepass")||Core.curModuleFile("server-manager","edit_pass.cgi")||Core.curModuleFile("virtual-server","list_databases.cgi")||Core.curModuleFile("acl","edit_user.cgi")||Core.curModuleFile("virtual-server","clone_form.cgi")||Core.curModuleFile("virtual-server","edit_user.cgi")||Core.curModuleFile("virtual-server","edit_domain.cgi")||Core.curModuleFile("virtual-server","domain_form.cgi")||Core.curModuleFile("samba","edit_euser.cgi")||Core.curModuleFile("samba","ask_epass.cgi")||Core.curModuleFileQuery("virtualmin-registrar","edit.cgi","registrar=")||Core.curModuleFileQuery("htaccess-htpasswd","edit_user.cgi","new=")||Core.curModuleFileQuery("postgresql","edit_user.cgi","new=")||Core.curModuleFileQuery("mysql","edit_user.cgi","new=")||Core.curModuleFile("useradmin","edit_group.cgi")||Core.curModuleFile("useradmin","edit_user.cgi")||Core.curModuleFileQuery("passwd","edit_passwd.cgi","user="))&&setTimeout(function(){$("#headln2r .btn-group a").addClass("pull-left").attr("style",""),$("#headln2r .btn-group").prepend('\t\t\t\t\t\t\t\t')},0),0==v___user_level&&1==Core.moduleAvailable("status")||(settings_side_slider_enabled=!1,settings_side_slider_enabled=!1,get_server_data("data-slider-fixed","0"),$("#right-side-tabs, .right-side-tabs-toggler").addClass("hidden")),Core.curModuleFile("bind8","edit_zonekey.cgi")&&g__text_breaker($("textarea#ds"),$("#headln2c").find("span[data-sub_title]").text()),Core.curModuleFile("virtual-server","edit_script.cgi")&&$('select[name="version"]').addClass("heighter-34 margined-top-4"),Core.curModuleFile("virtual-server","transfer_form.cgi")&&$('input[name="newttl"]').addClass("heighter-34"),g__line_breaker(Core.curModuleFile("firewall","")||Core.curModuleFile("firewall","index.cgi"),$(".ui_checked_columns td label b"),","),$.each($(".gl-icon-container"),function(e,t){$(this).find("a:first").find("i.fa-edit").length||($(this).find("a:first").prepend(''),$(this).find("a:first").prepend(''))}),Core.curModuleFile("virtual-server","index.cgi")&&$('a[href*="edit_domain.cgi"], a[href*="list_users.cgi"], a[href*="list_aliases.cgi"]').on("click",function(e){var t=URI.parseQuery(URI($(this).attr("href")).query()).dom;t!=$('select[name="dom"]').val()&&get_navigation_menu_virtualmin(t)}),Core.curModuleFile("server-manager","index.cgi")&&$('a[href*="edit_serv.cgi"], a[href*="mass_update_form.cgi"]').on("click",function(e){var t=URI.parseQuery(URI($(this).attr("href")).query()).id;t!=$('select[name="sid"]').val()&&get_navigation_menu_cloudmin(t)}),(Core.curModuleFile("webmin","refresh_modules.cgi")||Test.strContains(v___location_query,"refresh=1"))&&navigation_update(-1),v___location_path==v___location_prefix+"/proc/index_search.cgi"&&$(".col_header").removeClass("col_header"),1==get_server_data("notice")&&(v___theme_updated=1),$('input[type="file"]').bootstrapFileInput(),setTimeout(function(){$.each($(".file-input-wrapper > span"),function(){$(this).html('')})},1),v___module!=v___module_file_manager&&("config.cgi"===v___location_file||"uconfig.cgi"===v___location_file||"settings-user.cgi"===v___location_file)){var j=[];"settings-user.cgi"===v___location_file&&(j=[1,1,0]),page.render.module_config(j)}}if(editor_init_check()&&editor_init($("textarea"),!1,!1,"static",!1,!0,!1,e),viewer_init_check()&&viewer_init(),settings_sysinfo_easypie_charts&&v___location_path==v___location_prefix+"/sysinfo.cgi"){var q=v___theme_night_mode_enabled||v___theme_night_mode?1:0;$("body").find("#system-status").find(".piechart").easyPieChart({barColor:function(e){return e<50?q?"#269373":"#5cb85c":e<85?q?"#c38d40":"#f0ad4e":"#cb3935"},trackColor:q?"#3b424b":"#f8f8f8",scaleColor:q?"#3b424b":"#dfe0e0",size:parseInt(settings_sysinfo_easypie_charts_size),scaleLength:parseInt(settings_sysinfo_easypie_charts_scale),trackWidth:parseInt(settings_sysinfo_easypie_charts_width),lineWidth:0,lineCap:"square",onStep:function(e,t,i){$(this.el).find(".percent").text(Math.round(i))}})}if(((-1===v___location_path.indexOf(".cgi")||-1!==v___location_path.indexOf("link.cgi")||v___location_path==v___location_prefix+"/proc/open_files.cgi"||v___location_path==v___location_prefix+"/webmin/edit_webmincron.cgi"||v___location_path==v___location_prefix+"/postfix/mailq.cgi"||v___location_path==v___location_prefix+"/webmin_search.cgi"||v___location_path==v___location_prefix+"/useradmin/index.cgi"||v___location_path==v___location_prefix+"/quota/list_users.cgi"||v___location_path==v___location_prefix+"/quota/list_groups.cgi"||v___location_path==v___location_prefix+"/init/index.cgi")&&(v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"webmin/"&&-1===v___location_prefix.indexOf("servers/link.cgi")||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"proc/"||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"webmin_search.cgi"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"postfix/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"virtual-server/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"init/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"mount/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"custom/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"quota/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"php-pear/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"fsdump/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"inittab/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"logrotate/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"mailcap/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"cron/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"software/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"syslog/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"useradmin/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"apache/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"webalizer/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"cpan/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"htaccess-htpasswd/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"fdisk/")||Core.curModuleFile("cron","index.cgi")||Core.curModuleFile("ruby-gems","index.cgi")||Core.curModuleFile("postfix","master.cgi")||Core.curModuleFile("fail2ban","list_filters.cgi")||Core.curModuleFile("fail2ban","list_actions.cgi")||Core.curModuleFile("fail2ban","list_jails.cgi")||Core.curModuleFile("virtual-server","list_databases.cgi")||Core.curModuleFile("virtual-server","connectivity.cgi")||Core.curModuleFile("virtualmin-git","index.cgi")||Core.curModuleFile("net","list_ifcs.cgi")||Core.curModuleFile("net","list_hosts.cgi")||Core.curModuleFile("bind8","edit_recs.cgi")||Core.curModule("firewall")||Core.curModule("firewall6")||v___location_path==v___location_prefix+"/useradmin/list_logins.cgi"||v___location_path==v___location_prefix+"/man/search.cgi"||v___location_path==v___location_prefix+"/proc/index_tree.cgi"||v___location_path==v___location_prefix+"/proc/index_user.cgi"||v___location_path==v___location_prefix+"/proc/index_size.cgi"||v___location_path==v___location_prefix+"/proc/index_cpu.cgi"||v___location_path==v___location_prefix+"/proc/index_search.cgi"||v___location_path==v___location_prefix+"/software/search.cgi"||v___location_path==v___location_prefix+"/software/file_info.cgi"||v___location_path==v___location_prefix+"/software/list_pack.cgi"||v___location_path==v___location_prefix+"/virtual-server/index.cgi"||v___location_path==v___location_prefix+"/virtual-server/list_users.cgi"||v___location_path==v___location_prefix+"/virtual-server/edit_newplan.cgi"||v___location_path==v___location_prefix+"/virtual-server/edit_newfeatures.cgi"||v___location_path==v___location_prefix+"/virtual-server/edit_newtmpl.cgi"||v___location_path==v___location_prefix+"/virtual-server/backuplog.cgi"||v___location_path==v___location_prefix+"/package-updates/"||v___location_path==v___location_prefix+"/package-updates/index.cgi"||v___location_path==v___location_prefix+"/virtual-server/usage.cgi"||v___location_path==v___location_prefix+"/virtual-server/search.cgi"||(v___location_path==v___location_prefix+"/fetchmail/"||v___location_path==v___location_prefix+"/filter/")&&$t_uri_usermin)&&$(".__page table.table").each(function(){if($(this).find("thead")&&$(this).find("thead").length&&$(this).find("thead tr th")&&$(this).find("thead tr th").length>2){if($(this).find("thead")&&$(this).find("thead").length>1){var e=$(this).find("thead:first-child");e.remove(),!$t_uri_webmin||v___location_path!=v___location_prefix+"/quota/list_users.cgi"&&v___location_path!=v___location_prefix+"/quota/list_groups.cgi"||($(this).before(e),$(this).prev("thead").replaceTagName("table"))}table_data_init($(this)),$(this).find("th").each(function(){$(this).text()||$(this).css("opacity","0").css("cursor","default")});var t=-1/0;if($(this).find("tr").each(function(e,i){t=Math.max(t,parseFloat(e))}),t<10&&$(this).parents(".dataTables_wrapper").find(".dataTables_filter").remove(),($(this).parents(".dataTables_wrapper").find(".dataTables_filter").length?1:0)&&($('body[class="init"]').length||$('body[class^="init"]').length&&null!=$('body[class^="init"]').attr("class").match(/\d+$/)||$('body[class="quota"]').length||$('body[class^="quota"]').length&&null!=$('body[class^="quota"]').attr("class").match(/\d+$/)||$('body[class="cron"]').length||$('body[class^="cron"]').length&&null!=$('body[class^="cron"]').attr("class").match(/\d+$/))){var i=-15,a=$(this).parents(".dataTables_wrapper").attr("style");$('body[class^="quota"]').length&&(i=-27),$(this).parents(".dataTables_wrapper").attr("style","margin-top: "+i+"px !important; "+(a||""))}}}).promise().done(function(){page.render.content.filter.init()}),$(".select_all").on("click",function(){$(this).parents("form").find('.icons-row div[class*="icons-container"]').length&&$.each($(".icons-row .hidden-forged-6"),function(){$(this).parents('div[class*="icons-container"]').addClass("highlighted"),$(this).parents('div[class*="icons-container"]').find(".fa-select").removeClass("fa-select").addClass("fa-selected")})}),$(".select_invert").on("click",function(){$.each($(".icons-row .hidden-forged-6"),function(){$(this).find("input").is(":checked")?($(this).parents('div[class*="icons-container"]').addClass("highlighted"),$(this).parents('div[class*="icons-container"]').find(".fa-select, .fa-selected").removeClass("fa-select").addClass("fa-selected")):($(this).parents('div[class*="icons-container"]').removeClass("highlighted"),$(this).parents('div[class*="icons-container"]').find(".fa-select, .fa-selected").removeClass("fa-selected").addClass("fa-select"))})}),$('.icons-row div[class*="icons-container"]').on("mouseover",function(e){$(this).find(".hidden-forged-7").removeClass("hidden-forged")}).on("mouseout",function(e){$(this).find(".hidden-forged-7").addClass("hidden-forged")}),"?dashboard"!=v___location.search&&1==navigation_dashboard_switch_available()&&("sysinfo.cgi"==v___location_file?(set_switch_position("dashboard"),navigation_clear()):$("#open_webmin").length>0&&"open_webmin"!=$(".switch-toggle input:checked").attr("id")?set_switch_position("webmin"):$("#open_virtualmin").length>0&&"open_virtualmin"!=$(".switch-toggle input:checked").attr("id")?set_switch_position("virtualmin"):$("#open_cloudmin").length>0&&"open_cloudmin"!=$(".switch-toggle input:checked").attr("id")?set_switch_position("cloudmin"):$("#open_usermin").length>0&&"open_usermin"!=$(".switch-toggle input:checked").attr("id")&&set_switch_position("usermin")),$('form[action="bootup.cgi"]').on("submit",function(e){$("#starting").length>0?($("#starting").remove(),$(this).append('')):$("#table").length>0?$(this).append(''):$('input[name="boot"][type="hidden"]').length>0&&($('input[name="boot"][type="hidden"]').remove(),$(this).append(''))}),$('input[name="config_portable_module_xsql_fit_content_screen_height"]').on("change",function(){var e=$(this).attr("name"),t=$(this).val();localStorage.setItem(v___server_hostname+"-"+e,t),window[e]=t,theme_config("save")}),v___location_path!=v___location_prefix+"/virtual-server/domain_form.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_domain.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_user.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_alias.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_limits.cgi"||$("input, select").on("blur",function(){!__is_tabbed||$(this).next("input:visible").length||$(this).prev("input:visible").length||$(this).next("select:visible").length||$(this).prev("select:visible").length||(__is_shifted?$(this).parent("td").parent("tr").prev("tr").find("select:visible").length||$(this).parent("td").parent("tr").prev("script").prev("tr").find("select:visible").length||$(this).parent("td").parent("tr").prev("script").prev("script").prev("tr").find("select:visible").length?($(this).parent("td").parent("tr").prev("tr").find("select:first:visible").focus(),$(this).parent("td").parent("tr").prev("script").prev("tr").find("select:first:visible").focus(),$(this).parent("td").parent("tr").prev("script").prev("script").prev("tr").find("select:first:visible").focus()):($(this).parent("td").parent("tr").prev("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus(),$(this).parent("td").parent("tr").prev("script").prev("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus(),$(this).parent("td").parent("tr").prev("script").prev("script").prev("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus()):$(this).parent("td").parent("tr").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').length||$(this).parent("td").parent("tr").next("script").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').length||$(this).parent("td").parent("tr").next("script").next("script").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').length?($(this).parent("td").parent("tr").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus(),$(this).parent("td").parent("tr").next("script").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus(),$(this).parent("td").parent("tr").next("script").next("script").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus()):($(this).parent("td").parent("tr").next("tr").find("select:first:visible").focus(),$(this).parent("td").parent("tr").next("script").next("tr").find("select:first:visible").focus(),$(this).parent("td").parent("tr").next("script").next("script").next("tr").find("select:first:visible").focus()))}),$('.ui_form_end_submit[onclick^="window.open"]').click(function(){var e=$(this);setTimeout(function(){e.removeClass("disabled"),navigation_render_end()},100)}),v___location_path&&v___location_path.indexOf("/sysinfo.cgi")>-1&&($("body").undelegate(".piechart canvas","mouseover mouseleave"),$("body").on("mouseover",".piechart canvas",function(){var e=$(this).parent("span").attr("data-charts").split("_")[1];("cpu"!=e&&"mem"!=e&&"virt"!=e||Core.moduleAvailable("proc"))&&("disk"!=e||Core.moduleAvailable("disk-usage")||Core.moduleAvailable("quota"))&&($(this).addClass("cursor-alias"),$(this).prev("span").prepend(' '))}).on("mouseleave",".piechart canvas",function(){$(this).prev("span").find("i").remove()}),$("body").undelegate("canvas","click"),$("body").on("click","canvas",function(e){e.preventDefault();var t,i=$(this).parent("span").attr("data-charts").split("_")[1];"cpu"==i&&Core.moduleAvailable("proc")?t=v___location_prefix+"/proc/index_cpu.cgi":"mem"!=i&&"virt"!=i||!Core.moduleAvailable("proc")?"disk"==i&&Core.moduleAvailable("disk-usage")?t=v___location_prefix+"/disk-usage":"disk"==i&&Core.moduleAvailable("quota")&&(t=v___location_prefix+"/quota/list_users.cgi?dir=%2F"):t=v___location_prefix+"/proc/index_size.cgi",t&&t.length&&get_pjax_content(t)}),!v___available_navigation&&$('a[href="/?updated"], a[data-href="#theme-info"]').remove(),page_sysinfo_sensor_update_label()),$t_uri_virtualmin&&Core.curModuleFileQuery("syslog","save_log.cgi","view=1")&&($('select[name="idx"] option').filter(function(){return this.text==$.trim($("span[data-sub_title] tt").text())}).attr("selected",!0),$('select[name="idx"]').addClass("hidden")),Core.curModuleFileQuery("syslog","save_log.cgi","view=1")){var m=".panel-body .fa-refresh-fi",F=localStorage.getItem(v___server_hostname+"-option_"+v___module+"_refresh"),z=m+", .panel-body .refresh-timer-timeout",D=''+(F||"0")+" ";$.each($(m+":not([data-processed])").parent("button"),function(e,t){if($(this).find("i").attr("data-processed",1),$(this).wrap('
    '),$(this).after('"),F&&"0"!=F){var i=$(z);$(this).find("i").before(D),$(this).find("i").remove();var a=F;"number"==typeof refreshTimer&&clearInterval(refreshTimer),refreshTimer=setInterval(function(){--a,$(".refresh-timer-timeout").text(a),a<=0&&($(i[0]).parent().trigger("click"),clearInterval(refreshTimer))},1e3)}}).promise().done(function(){$(".refresh-timer-select li").click(function(){"number"==typeof refreshTimer&&clearInterval(refreshTimer);var e=''+(F||"0")+" ";localStorage.setItem(v___server_hostname+"-option_"+v___module+"_refresh",$(this).find("a").data("timeout")),F=localStorage.getItem(v___server_hostname+"-option_"+v___module+"_refresh");var t=$(z).parent();if(F&&"0"!=F){t.find(".refresh-timer-timeout").length||t.prepend(e),t.find(".refresh-timer-timeout").html(F+" "),$(".fa-refresh-fi").remove();var i=F;refreshTimer=setInterval(function(){if(--i,$(".refresh-timer-timeout").text(i),i<=0){var e=$(z);$(e[0]).parent().trigger("click"),clearInterval(refreshTimer)}},1e3)}else $(".refresh-timer-timeout").remove(),!t.find(".fa-refresh-fi").length&&t.prepend('')})})}if(Core.curModuleFile("virtual-server","summary_domain.cgi")&&$(".__page #headln2l .btn-group, .__page .page_footer_submit").remove(),settings_side_slider_enabled&&(Core.curModule("package-updates")&&slider_mark_group_notifications_read("package_message"),Core.curModule("csf")&&(slider_mark_group_notifications_read("csf_remote_version"),slider_mark_group_notifications_read("csf_title"))),settings_button_tooltip&&($('#content [data-dcontainer="1"]').tooltip("destroy"), +CKEDITOR.env.ie&&CKEDITOR.env.version<9&&CKEDITOR.tools.enableHtml5Elements(document),CKEDITOR.config.height=$(window).height()/e[1],CKEDITOR.config.width="auto",CKEDITOR.config.removePlugins="save, about",(v___theme_night_mode_enabled||v___theme_night_mode?1:0)&&(CKEDITOR.config.contentsCss=v___location_prefix+"/unauthenticated/css/palettes/nightrider_ckeditor_content."+v___source_type+".css?"+v___theme_version_plain,$('html head link[href*="css/nightrider_ckeditor."]').length||$("html head").append(''));var n="%REV%"==CKEDITOR.revision||!!CKEDITOR.plugins.get("wysiwygarea"),s=CKEDITOR.document.getById(e[0]);if(n){var _=get_server_data("language");CKEDITOR.replace(e[0],{language:"zh"==_?"zh-cn":_})}else s.setAttribute("contenteditable","true"),CKEDITOR.inline(e[0]);if(!0===e[2])for(var r in CKEDITOR.instances)CKEDITOR.instances[r].on("change",function(e){e.removeListener(),set_onbeforeunload_status(1,0)});"edit_web"===e[3]&&setTimeout(function(){$("hr + b").removeClass("hidden"),$(".__tmp__spinner").remove()},100)})}function table_data_init(e,t,i,a){function n(e){e.DataTable({order:[],aaSorting:[],bDestroy:!0,bPaginate:!1,columnDefs:[a],bInfo:!1,bStateSave:t,destroy:!0,dom:i?"Rlfrtip":"f",oLanguage:{sEmptyTable:theme_language("theme_xhred_datatable_semptytable"),sInfo:theme_language("theme_xhred_datatable_sinfo"),sInfoEmpty:theme_language("theme_xhred_datatable_sinfoempty"),sLengthMenu:theme_language("theme_xhred_datatable_slengthmenu"),sLoadingRecords:theme_language("theme_xhred_datatable_sloadingrecords"),sProcessing:theme_language("theme_xhred_datatable_sprocessing"),sSearch:" ",sZeroRecords:theme_language("theme_xhred_datatable_szerorecords")},initComplete:function(e){$(".dataTables_filter").find('input[type="search"]').attr("placeholder",theme_language("theme_xhred_datatable_filter"))}})}if(void 0===t&&(t=!1),void 0===i&&(i=!1),void 0===a&&(a=!1),Core.curModuleFile("virtual-server","index.cgi")&&(t=!0),$.fn.dataTableExt.sErrMode="throw",Core.curModuleFile("virtual-server","list_users.cgi")){var s=$(".table thead tr th").filter(function(){return $(this).text().match(/Last login|Dernière Connexion|Siste innlogging|Letzer Login|Laatste login/)}).index();s>-1?$.each(e.find("tbody tr td:nth-child("+(s+1)+")"),function(e,t){var i=$(this).text();/Never|Jamais|Aldri|Niemals|Nigdy|Nooit/i.test(i)&&(i=0),$(this).attr("data-sort",i)}).promise().done(function(){n(e)}):n(e)}else n(e)}function favorites_check(){return $("#favorites-menu .favorites-menu-content li:not(.exclude)").length}function favorites_get(){var e=[];return $.each($("#favorites-menu .favorites-menu-content li:not(.exclude) a"),function(){var t=$(this).text(),i=$(this).attr("href"),a=$(this).find(".wbm-sm").attr("data-product");favorite={},favorite.link=navigation_trigger(i,1),favorite.title=t.trim(),favorite.icon="virtualmin"==a?a+"":a,e.push(favorite)}),e}function favorites_init(){"function"==typeof sortable&&$("#favorites-menu > div > nav > ul").length&&sortable("#favorites-menu > div > nav > ul",{items:":not(.favorites-title)",forcePlaceholderSize:!1}).on("sortupdate",function(){favorites_save()})}function favorites_save(){$.ajax({type:"POST",url:v___location_prefix+"/settings-favorites_save.cgi",data:{favorites:'{"favorites":'+JSON.stringify(favorites_get(),null,4).replace(/\\n/g,"\\n").replace(/\\'/g,"\\'").replace(/\\"/g,'\\"').replace(/\\&/g,"\\&").replace(/\\r/g,"\\r").replace(/\\t/g,"\\t").replace(/\\b/g,"\\b").replace(/\\f/g,"\\f")+"}"},success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:fetch_right_pane_favorites()},error:function(e){}}),sortable("#favorites-menu > div > nav > ul")}function favorites_add(e,t,i){var a="favorites-menu .favorites-menu-content";0===favorites_check()&&($("#"+a+" li.favorites-no-message").addClass("hidden"),$("#"+a+" .favorites-title sup a").removeClass("hidden")),$("#"+a+" li.favorites-title").after('')}function favorites_empty(){var e="favorites-menu .favorites-menu-content";0===favorites_check()&&($("#"+e+" li.favorites-no-message").removeClass("hidden"),$("#"+e+" .favorites-title sup a").addClass("hidden"))}function favorites_remove(e){$("#favorites-menu .favorites-menu-content").find('a[href="'+navigation_trigger(e,1)+'"]').parent("li").remove(),$("#headln2c > .favorites, .xcustom-favorites").addClass("fa-star-o").removeClass("fa-star text-warning"),favorites_empty(),favorites_save()}function favorites_detect(){var e=$("#favorites-menu .favorites-menu-content li:not(.exclude) a").map(function(e,t){return navigation_trigger($(t).attr("href"),1)}).toArray(),t=$("#headln2c > .favorites, .xcustom-favorites"),i=navigation_trigger(URI(v___location).resource(),1),a=i+"index.cgi";$.inArray(i,e)>-1||$.inArray(a,e)>-1?t.addClass("fa-star").removeClass("fa-star-o"):t.removeClass("fa-star").addClass("fa-star-o")}function page_sysinfo_sensor_update_label(){var e=$("#system-status .badge-drivestatus");e.length&&$.each(e,function(e,t){var i,a=$(this).text(),n=parseInt(a.split(":")[1]),s=n,_=a.indexOf("°C")>-1;i=a.indexOf("RPM")>-1?HTML.label.rpm(s):HTML.label.temperature(n,_),Test.string(i)&&$(this).removeClass(function(e,t){return(t.match(/(^|\s)bg-\S+/g)||[]).join(" ")}).addClass(i)})}function page_table_rows_control(){$("body").attr("class")&&$("body").attr("class").indexOf(v___module_file_manager)>-1||$.each($(".ui_checked_columns"),function(e,t){!$(t).find("a[href]")||$("body").hasClass("servers")||$(this).hasClass("selectable")||$(t).addClass("cursor-pointer").find("td").addClass("cursor-pointer").find("label").addClass("cursor-pointer").find("tt").addClass("cursor-pointer"),$(t).find("td:not(.selectable)").click(function(e){if(!$(e.target).is(".awobject, .iawobject, .lawobject, .awcheckbox, .awradio")&&$(t).find("a[href]")&&!$("body").hasClass("servers")){var i=$(t).find("a[href]")[0],a=($(this).parents("tr.ui_checked_columns"),$(e.target).find('input[type="checkbox"]:not(":disabled")').length);!i||$(this).find("a").attr("href")!==$(i).attr("href")&&void 0!==$(this).find("a").attr("href")||$(e.target).is("select, input, .awobject, .iawobject, .lawobject, .awcheckbox, .awradio")||0!==$(this).parent("tr").find('a[href*="download.cgi"]').length||($(i).attr("target")?(e.preventDefault(),!a&&window.open($(i).attr("href"),$(i).attr("target"))):e.originalEvent&&(e.preventDefault(),get_pjax_content($(i).attr("href")))),a&&get_pjax_content($(i).attr("href"))}}),$(t).find("td").contextmenu(function(e){var t=$(this).parents("tr.ui_checked_columns");e.preventDefault(),($(this).parents("tr").find('input[type="checkbox"]:first').length&&0===$(this).parents("tr").find('input[type="checkbox"][disabled]').length||$(this).parents("tr").find('input[type="checkbox"][disabled]').length&&$(this).parents("tr").find("input").length>1)&&(t.find('input[type="checkbox"]:first').is(":checked")?t.removeClass("hl-aw"):t.addClass("hl-aw"),"function"==typeof __r____changed&&__r____changed(),t.find('input[type="checkbox"]:first').trigger("click"))})})}function page_radios_evolve(){"conf"!=get_server_data("post")&&$.each($('.container-fluid input[type="radio"]:not(.iawobject), .container-fluid input[type="checkbox"]:not(.iawobject)'),function(e,t){if(1!==$(this).data("xdn")){$(this)[0]&&($___text=$(this)[0].nextSibling);var i=$(this).next('input:not([type="radio"], [type="checkbox"], [type="hidden"]), select, textarea'),a=$___text&&$___text.nodeValue&&$.trim($___text.nodeValue).length>1,n=(n=$.trim((a?$___text.nodeValue:" ").replace(/
    /g,"<hr>").replace(/
    /g,"<header>"))).length&&" "!=n?n+"  ":n,s=$(this).attr("type").toLowerCase(),_=(_=$(this).parents(".tab-pane").attr("id"))&&_.length?_.replace(/[^a-zA-Z0-9_-]+/g,""):0,r=Math.floor(9e4*Math.random())+1e4,o=("eid_"+$(this).attr("name")+"_"+r+"_"+e+"_"+_).replace(/[^a-zA-Z0-9_-]+/g,"_"),l=$(this).attr("id"),o=l&&1===$("body").find("#"+l.replace(/[^a-zA-Z0-9_-]+/g,"_")).length?l.replace(/[^a-zA-Z0-9_-]+/g,"_"):o;if(0===$(this).next("label").length&&0===i.length&&a){$(this).addClass("iawobject");var c='for="'+o+'"';$(this).attr("id",o),$($___text).wrap('"),$($___text).remove(),$(this).next("label").addBack().wrapAll(''),$(this).data("xdn",1)}else if(0!==i.length||0!==$(this).next("label").length||1!==$(this).prev("label").length||a)0!==i.length||0!==$(this).next("label").length||a||($(this).addClass("iawobject"),$(this).attr("id",o),$(this).after(''),$(this).next("label").addBack().wrapAll(''),$(this).data("xdn",1));else{var d=$(this).prev("label"),h=d.text();$(this).addClass("iawobject"),$(this).attr("id",o),$(this).after('"),$(this).next("label").addBack().wrapAll(''),$(this).removeClass("form-control").css("width","initial"),d.remove(),$(this).data("xdn",1)}1===i.length&&0===$(this).next("label").length&&($(this).addClass("iawobject"),$(this).attr("id",o),$(this).after('"),$(this).next("label").addBack().wrapAll(''),a&&$($___text).remove(),$(this).data("xdn",1))}})}function chooser_get(e){$(".mppopup .cspinner.hidden").removeClass("hidden"),$.ajax({type:"POST",url:e,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var t=e.replace(/<(!doctype|script|link|meta)\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/<\/body>|<\/html>/gi,""),i=$(t).filter(".table").html(),a=$(t).filter(".table").prev("b").html();a=chooser_breadcrumbs(a),$(".mppopup .modal-body").html(a+''+i+"
    "),$v__mpp__g_gp=0,$(".mppopup_filter_input").focus(),$(".mppopup_filter_input").val("")}}})}function chooser_get_link(e){return e.replace(/&file.*&chroot/,"&file="+Convert.uriEncodeComponent(($v__mpp__g_ol+"/").replace(/\/\/+/g,"/").replace(/:\//g,"://"))+"&chroot")}function chooser_get_target(e,t){var i=e.prev('input[type="text"], input[name]');return i.is("input")||e.prev("textarea").length||e.prev("br").prev("textarea").length?i.length||i.is("input")||!t||(i=e.prev("textarea")).length||(i=e.prev("br").prev("textarea")):i=e.prev("span:not(.awradio)").find('input[type="text"]'),i}function chooser_control(e,t,i){if(i){if($(".refInputData").is("textarea")){var a=$(".refInputData");a.val()?a.val(a.val()+"\n"+e.replace(/\/\/+/g,"/").replace(/:\//g,"://")):a.val(e.replace(/\/\/+/g,"/").replace(/:\//g,"://"))}else $(".refInputData").val(e.replace(/\/\/+/g,"/").replace(/:\//g,"://"));var n=$(".refInputData").parent("td").prev("td").find('input[type="radio"]'),s=$(".refInputData").parent("span").prev("span").find('input[type="radio"]'),_=$(".refInputData").prev("span").find('input[type="radio"]'),r=$(".refInputData").prev("select").find('option[value="*"]');s.length?s.trigger("click"):_.length?_.trigger("click"):r.length?r.parent("select").val("*").trigger("change"):n.trigger("click")}t&&$("body .mppopup").modal("hide")}function chooser_breadcrumbs(e){e=$.url(e).attr("path").replace(/\/$/g,"").split("/");var t="";return $.each(e,function(e,i){t+=""===i?''+(0==get_access_level()?'':'')+"\n":''+i+"\n"}),'"+''}function popover_visibility_position(e){$.each($(".module-help"),function(t,i){e.is($(this))?$(this).css({"z-index":214748364+t,opacity:1}):$(this).css({"z-index":214748364-t,opacity:.85})})}function page_render(e){if(update_navigation_module_name(),e&&"undefined"!=typeof __cm_editor_static&&(__cm_editor_static.toTextArea(),$('button[data-form="submitter"]').unwrap(),$('.CodeMirror, button[data-form="submitter"] + button, .-helper.__helper').remove()),function(){var e=$("body");e.off("mousedown.cm1 keydown.cm1"),e.undelegate('button[type="submit"]:not(.disabled)',"click.cm"),e.undelegate('button[data-form="submitter"]:not(.disabled)',"click.cm")}(),$("body").find('a[href*="virtual-server/switch_user.cgi"]').attr("target","_parent"),$("body").attr("style",get_server_data("style")),$.each($('select[onchange="form.submit()"]'),function(){$(this).removeAttr("onchange").addClass("onchange_form_submit_triggger")}),editor_init_check()){var t=$('select[name="file"]');t.addClass("onchange_form_submit_triggger"),t.next("button.ui_form_end_submit").addClass("hidden")}v___available_navigation&&(Core.curModule("tunnel")||Core.curModule("updown")||Core.curModuleFile("mysql","backup_form.cgi")||Core.curModuleFile("postgresql","backup_form.cgi"))&&$("form").on("submit",function(e){var t=$(quirks.active_element());Core.curModule("updown")&&!$('a[href="#att_fetch"]').parent().is(".active")||(Core.curModuleFile("mysql","backup_form.cgi")||Core.curModuleFile("postgresql","backup_form.cgi"))&&!$('input[name="dest"][value="1"]').is(":checked")&&t.is('[name="backup"]')||t.is('[name="save"]')||(e.preventDefault(),e.stopPropagation(),$.ajax({type:$(this).attr("method")?"GET":"POST",url:v___location_prefix+"/"+v___module+"/"+$(this).attr("action"),data:get_form_data($(this)),dataType:"text",complete:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:(theme_open_new_tab(this.url),t.removeClass("disabled").find("i").removeClass("invisible").next(".cspinner_container").remove())}}))}),check_location_resource("/config.cgi?tunnel")&&$('table table[width="100%"] tr:first-child').addClass("hidden"),$.each($('tr td:last-child a:contains("..")'),function(){v___location_path==v___location_prefix+"/virtual-server/list_databases.cgi"&&$(this).html($(this).text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-info btn-xxs").removeClass("ui_link")}),0==get_access_level()&&v___available_navigation&&!e&&$("#headln2c").prepend(' '),favorites_empty(),favorites_detect(),$(".switch-toggle").find('label[for="open_thirdlane"]').length&&$('.switch-toggle input:not([id="open_webmin"])').each(function(){$(this).removeAttr("checked")}).promise().done(function(){$("#open_webmin").prop("checked",!0)}),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"init/"&&$("table.table tbody tr").addClass("ui_checked_columns"),page_table_rows_control(),!e&&page_radios_evolve();$('.ui_checked_columns td.ui_checked_checkbox input[type="checkbox"]:checked:not(disabled)').parents("tr.ui_checked_columns").addClass("hl-aw");if($("body").hasClass("servers")&&$('form[action="delete_servs.cgi"] a.icon_link, form[action="delete_servs.cgi"] a.ui_link, form[action="delete_servs.cgi"] .col-xs-1').on("click",function(e){if($(e.target).is(".gl-icon-select"))v___available_navigation?$(this).trigger("contextmenu"):$(this).parents(".gl-icon-container").trigger("contextmenu");else{var t=v___location_href+$(this).attr("href"),i=$(this).attr("href");$(this);i&&i.indexOf("edit_serv.cgi")>-1||i&&i.indexOf("logout.cgi")>-1?void 0!==e.originalEvent&&$.pjax.click(e,{timeout:0,push:get_pjax_push(),type:get_pjax_type(),container:"[data-dcontainer]",fragment:"[data-dcontainer]"}):i&&-1===i.indexOf("://")?open(t):open(i),e.preventDefault(),e.stopPropagation()}}),v___location_path!=v___location_prefix+"/apache/edit_global.cgi"&&v___location_path!=v___location_prefix+"/apache/edit_virt.cgi"&&v___location_path!=v___location_prefix+"/apache/edit_dir.cgi"||$.each($(".ui_opt_textbox.form-control"),function(){$(this).parent("span").next("button.btn.btn-default.file_chooser_button").length>0&&$(this).css("margin-right","4px")}),e||($(".opener_container").length&&$.each($(".opener_container"),function(){$(this).find(".opener_shown").is(":visible")&&$(this).parent("tr").prev("tr").find("td a:nth-child(1)").addClass("opener_container_opened").removeClass("opener_container_closed")}),$(".opener_shown").length>0&&$(".opener_trigger").length>0&&($(".panel-body .ui_form .table tbody tr").removeClass("thead"),$(".opener_trigger").parents("table.table").addClass("opener_table_style"),$(".opener_trigger").parents("tr").addClass("_c__op_r").attr("style","border: 0 !important"),$(".opener_trigger").parent("td").addClass("_c__op_d"),$(".opener_trigger").parent("td").find("a").addClass("link_hover_effect link_hover_effect_style_extra")),$('a[href^="javascript:hidden_opener"]:not(".opener_trigger")').length>0&&($('a[href^="javascript:hidden_opener"]:not(".opener_trigger")').each(function(e,t){var i=!!(v___location_path==v___location_prefix+"/virtual-server/backup_form.cgi"&&v___location_href&&v___location_href.indexOf("?sched=")>-1);if($(this).find("img").length>0&&$(this).remove(),$(this).css("border-bottom","0"),$(this).parents("table.table").addClass("opener_table_style_small"),$(this).parent("td").addClass("opener_table_cell_style_small"),i||$(this).parent("td").addClass("opener_table_cell_style_small opener_table_cell_style_small_exclusion_border_top"),$(this).parent("td").find("a").addClass("link_hover_effect link_hover_effect_style"),$(this).parent().is(".panel-body")||$(this).parent().is(".ui_form")){var a=$(this),n=a.parent().is(".panel-body")?".panel-body":".ui_form";a.parent(n).find('a[href^="javascript:hidden_opener"]:eq(1)').wrapAll('
    '),Core.curModuleFile("bind8","edit_zonekey.cgi")&&a.parent(n).find('a[href^="javascript:hidden_opener"]:eq('+(e+1)+")").wrapAll('
    '),a.parent('.panel-body > a[href^="javascript:hidden_opener"]:first-child').remove();var s=a.parent(n).find(".opener_extra_container");$(s).next("br").remove(),$(s).addClass("opener_extra_container_style"),$(s).find("a").addClass("opener_extra_container_a_style link_hover_effect"),$(s).next(".opener_hidden").attr("style","padding:8px")}}),$.each($(".opener_hidden"),function(){$(this).css("display","none")})),$("a.opener_trigger").each(function(){$(this).parent("td").css("text-align","left")}),$('form[action*="seen_newfeatures.cgi"]').each(function(){$(this).parents("table.table-striped").next(".ui_form_end_buttons").css("margin-top","14px")}),$("#tall_0").before("
    "),$(".opener_container").each(function(e,t){$(this).find("div").hasClass("opener_hidden")?$(this).hide():$(this).show()}),$.each($("div.barchart"),function(){var e=$(this).find('img[src*="red.gif"]'),t=$(this).parent("td").contents().filter(function(){return 3==this.nodeType}).text();e&&e.attr("width")&&$(this).parent("td").html('
    '+t+'
    '+e.attr("width")+"
    ")}),$('.panel-body > form > table > tbody > tr > td:has(input[type="submit"])').parents("table.table-hardcoded > tbody > tr").css("border","none").parents("table").css("margin-top","20px"),$('.panel-body > form > table > tbody > tr > td:has(input[type="submit"])').parents("table.table-hardcoded > tbody").css("border","none"),$('.ui_grid_table > tbody > tr.ui_grid_row > td:has(button[type="submit"])').parents("table.ui_grid_table").css("border","none"),$("form.ui_form > table label.radio, form.ui_form > table label.checkbox").each(function(){var e=$(this),t=e.find("i.fa"),i=e.find("i.fa").text().trim(),a=e.text().trim();0===i.length&&0===a.length&&t.parent("label").remove()})),v___location_path&&(v___location_path.indexOf("/webmin/edit_themes.cgi")>-1||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-user.cgi")){v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-user.cgi"&&navigation_clear();var i='form[action*="settings.cgi"] select, form[action*="save_config.cgi"] select, form[action*="settings.cgi"] input, form[action*="save_config.cgi"] input';$("body").undelegate(i,"change"),$("body").on("change",i,function(e){var t=$(this).val();if("true"==t||"false"==t){if("true"==t)i=!0;else if("false"==t)i=!1}else var i=t;window[$(this).attr("name")]=Test.numeric(i)?parseFloat(i):i,void 0!==e.originalEvent&&(v___initial_load&&"settings-user.cgi"!==v___location_file?v___initial_load=0:theme_settings_controls(1))});var a='form[action*="settings.cgi"] input, form[action*="save_config.cgi"] input';$("body").undelegate(a,"keydown"),$("body").on("keydown",a,function(e){void 0!==e.originalEvent&&theme_settings_controls(1)}),v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-user.cgi"&&$('button[type="button"][name="save_user"]').on("click",function(e){e.preventDefault(),e.stopPropagation(),theme_config("save"),navigation_render_start(),spinnerfy_buttons($(this),[-.5,-25,"small",750]),setTimeout(function(){navigation_update()},1400)}),$(function(){function t(){$("body").undelegate("#atrestore:not(.disabled)","click"),$("body").on("click","#atrestore:not(.disabled)",function(){set_onbeforeunload_status(0,0),$(this).off();var e=$(this);e.hasClass("btn-inverse")||setTimeout(function(){spinnerfy_buttons(e,[1.5,-33,"small",!1]);var t=$(".ui_form").serialize();$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-settings=1&restore=1",data:t,success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:theme_reload()},error:function(t){e.addClass("btn-danger").removeClass("btn-default btn-inverse opacity-0_5")}})},0)})}Core.moduleAvailable("webmin")&&!e&&($(".container-fluid .nav.nav-tabs").prepend('
  • '),$(".container-fluid .tab-pane").first().before('
    '),$('.container-fluid .nav-tabs a[href="#atsettings"]').tab("show")),e||$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-settings=1",data:!1,dataType:"text",success:function(e){function i(e){void 0===e&&(e=$('input[name="settings_right_hide_table_icons"]:checked'));var t=["settings_right_small_table_icons","settings_right_animate_table_icons","settings_right_grayscaled_table_icons"];"true"==e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!0),$('input[name="'+t+'"]').parent(".aradio").addClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!1),$('input[name="'+t+'"]').parent(".aradio").removeClass("disabled")})}function a(e){void 0===e&&(e=$('input[name="settings_hotkeys_active"]:checked'));var t=["settings_hotkey_custom_1","settings_hotkey_custom_2","settings_hotkey_custom_3","settings_hotkey_custom_4","settings_hotkey_custom_5","settings_hotkey_custom_6","settings_hotkey_custom_7","settings_hotkey_custom_8","settings_hotkey_custom_9","settings_hotkey_toggle_modifier","settings_hotkey_toggle_key_webmin","settings_hotkey_toggle_key_virtualmin","settings_hotkey_toggle_key_cloudmin","settings_hotkey_toggle_key_usermin","settings_hotkey_toggle_key_webmail","settings_hotkey_focus_search","settings_hotkey_toggle_slider","settings_hotkey_reload","settings_hotkey_reload","settings_hotkey_toggle_key_night_mode","settings_hotkey_sysinfo","settings_hotkey_favorites"];"false"==e.val()?$.each(t,function(e,t){$('input[name="'+t+'"], select[name="'+t+'"]').prop("disabled",!0)}):$.each(t,function(e,t){$('input[name="'+t+'"], select[name="'+t+'"]').prop("disabled",!1)})}function n(e){void 0===e&&(e=$('input[name="settings_side_slider_enabled"]:checked'));var t=["settings_side_slider_palette","settings_side_slider_fixed","settings_side_slider_background_refresh_time","settings_side_slider_sysinfo_enabled","settings_side_slider_notifications_enabled","settings_side_slider_favorites_enabled"];"false"==e.val()?$.each(t,function(e,t){"settings_side_slider_fixed"==t&&$('input[name="settings_side_slider_fixed"][value="false"]').trigger("click"),$('input[name="'+t+'"], select[name="'+t+'"]').prop("disabled",!0).parent(".aradio").addClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"], select[name="'+t+'"]').prop("disabled",!1).parent(".aradio").removeClass("disabled")})}function s(e){void 0===e&&(e=$('input[name="settings_sysinfo_real_time_status"]:checked'));var t=["settings_sysinfo_real_time_timeout"];"true"==e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!1).removeClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!0).addClass("disabled")})}function _(e){void 0===e&&(e=$('input[name="settings_sysinfo_easypie_charts"]:checked'));var t=["settings_sysinfo_easypie_charts_size","settings_sysinfo_easypie_charts_width","settings_sysinfo_easypie_charts_scale"];"true"==e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!1).removeClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!0).addClass("disabled")})}function r(e){void 0===e&&(e=$('input[name="settings_sysinfo_theme_updates"]:checked'));var t=["settings_sysinfo_theme_patched_updates"];"true"==e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!1).removeClass("disabled")}):($('input[name="settings_sysinfo_theme_patched_updates"][value="false"]').trigger("click"),$.each(t,function(e,t){$('input[name="'+t+'"]').prop("disabled",!0).addClass("disabled")}))}if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{$("#atsettings").html(e),page.render.module_config([0,1,0,0,0,0,0,1]);var o=$("div#atsettings").find(".ui_form");$__theme_text_right_save=o.data("text-save"),$__theme_text_right_saved=o.data("text-settings_right_saved"),$__theme_text_right_saving=o.data("text-settings_right_saving"),$__theme_text_right_restore_defaults=o.data("text-settings_right_restore_defaults"),$__theme_text_right_restored=o.data("text-settings_right_restored"),$__theme_text_right_restoring=o.data("text-settings_right_restoring"),$__theme_text_right_error=o.data("text-error"),$('.container-fluid .nav-tabs a[href="#atsettings"]').text(o.data("text-current_theme")),$("div#atsettings").removeClass("text-center"),t(),theme_settings_update();var l=$("body").find(".fa.fa-sub-title").parent("span");$(l).next("br").remove(),$(l).next("div.smaller").attr("style","margin-top: -15px !important"),l.remove(),i(),$('input[name="settings_right_hide_table_icons"]').on("change",function(){i($(this))}),a(),$('input[name="settings_hotkeys_active"]').on("change",function(){a($(this))}),n(),$('input[name="settings_side_slider_enabled"]').on("change",function(){n($(this))}),s(),$('input[name="settings_sysinfo_real_time_status"]').on("change",function(){s($(this))}),_(),$('input[name="settings_sysinfo_easypie_charts"]').on("change",function(){_($(this))}),r(),$('input[name="settings_sysinfo_theme_updates"]').on("change",function(){r($(this))}),$('select[name="settings_navigation_color"]').on("click keyup change",function(e){var t=$(this).val();get_server_data("data-theme",t),$("link[data-palette]").remove(),"blue"!=t&&$("head").append(''),get_server_data("data-default-theme",t),$("body .user-link.palette-toggle").find(".fa-sun").trigger("click"),theme_settings_update()}),$('select[name="settings_background_color"]').on("click keyup change",function(e){var t=$(this).val();get_server_data("data-background-style",t),get_server_data("data-background-style",t),$("link[data-palette]").remove(),"gainsboro"!=t&&($("head").append(''),$('select[name="settings_navigation_color"]').val("gunmetal").trigger("change")),theme_settings_update()}),$('select[name="settings_side_slider_palette"]').change(function(e){$("body .right-side-tabs, body .right-side-tabs-toggler").attr("data-background-style",$(this).val())}),$('input[name="settings_side_slider_enabled"]').change(function(e){"true"==$(this).val()?($("body .right-side-tabs-toggler").removeClass("hidden"),$("body .right-side-tabs").removeClass("hidden"),$('input[name="settings_side_slider_sysinfo_enabled"][value="true"], input[name="settings_side_slider_notifications_enabled"][value="true"], input[name="settings_side_slider_favorites_enabled"][value="true"]').trigger("click")):($("body .right-side-tabs-toggler").addClass("hidden"),$("body .right-side-tabs").addClass("hidden")),theme_settings_update()}),$('input[name="settings_side_slider_fixed"]').change(function(e){set_side_slider_visibility("true"==$(this).val()?1:0),theme_settings_update()}),$('input[name="settings_side_slider_sysinfo_enabled"], input[name="settings_side_slider_notifications_enabled"], input[name="settings_side_slider_favorites_enabled"]').change(function(e){var t="right-side-tabs-"+$(this).attr("name").split("_")[3],i=$(this).attr("name"),a=$("body").find("#"+t).hasClass("active"),n=$('input[name="settings_side_slider_sysinfo_enabled"][value="true"]:checked, input[name="settings_side_slider_notifications_enabled"][value="true"]:checked, input[name="settings_side_slider_favorites_enabled"][value="true"]:checked').length;"true"==$(this).val()?($("body").find('a[href="#'+t+'"], #'+t).removeClass("hidden").parent().removeClass("hidden"),"settings_side_slider_notifications_enabled"===i&&($(".right-side-tab-notification-asterix").removeClass("invisible hidden hidden-forged"),$(".right-side-tabs-toggler .badge.badge-danger").removeClass("invisible hidden hidden-forged"),setTimeout(function(){"function"==typeof slider_display_notification_badges&&slider_display_notification_badges()},300))):($("body").find('a[href="#'+t+'"], #'+t).addClass("hidden"),a&&n?$("body #right-side-tabs").find("li:not(.active) a:not(.hidden)").first().trigger("click"):0===n&&$('input[name="settings_side_slider_enabled"][value="false"]').trigger("click"),"settings_side_slider_notifications_enabled"===i&&($(".right-side-tab-notification-asterix").addClass("invisible hidden hidden-forged"),$(".right-side-tabs-toggler .badge.badge-danger").addClass("invisible hidden hidden-forged"),favicon.badge(0),titlenotifier.set(0))),theme_settings_update()}),$('input[name="settings_side_slider_sysinfo_enabled"], input[name="settings_side_slider_notifications_enabled"], input[name="settings_side_slider_favorites_enabled"]').each(function(){$('input[name="'+$(this).attr("name")+'"][value="'+window[$(this).attr("name")]+'"]').trigger("change")}),$('select[name="settings_navigation_color"]').after('\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t '),$(".settings_navigation_color_toggle, .settings_background_color_toggle").on("click",function(){void 0===window[$(this).attr("data-name")+"controller"]||"hidden"==window[$(this).attr("data-name")+"controller"]?($("."+$(this).attr("data-name")+"_reset, ."+$(this).attr("data-name")+"_rows").removeClass("hidden"),window[$(this).attr("data-name")+"controller"]="shown"):($("."+$(this).attr("data-name")+"_reset, ."+$(this).attr("data-name")+"_rows").addClass("hidden"),window[$(this).attr("data-name")+"controller"]="hidden")}),$(".settings_navigation_color_reset").on("click",function(){"settings_navigation_color"==$(this).attr("data-name")&&navigation_filter_reset()});var c=$('input[name="settings_grayscale_level_navigation"], input[name="settings_sepia_level_navigation"], input[name="settings_saturate_level_navigation"], input[name="settings_hue_level_navigation"], input[name="settings_invert_level_navigation"], input[name="settings_brightness_level_navigation"], input[name="settings_contrast_level_navigation"]');c.on("click keyup change",function(e){var t="-webkit-filter: grayscale("+$('input[name="settings_grayscale_level_navigation"]').val()+") sepia("+$('input[name="settings_sepia_level_navigation"]').val()+") saturate("+$('input[name="settings_saturate_level_navigation"]').val()+") hue-rotate("+$('input[name="settings_hue_level_navigation"]').val()+"deg) invert("+$('input[name="settings_invert_level_navigation"]').val()+") brightness("+$('input[name="settings_brightness_level_navigation"]').val()+") contrast("+$('input[name="settings_contrast_level_navigation"]').val()+"); filter: grayscale("+$('input[name="settings_grayscale_level_navigation"]').val()+") sepia("+$('input[name="settings_sepia_level_navigation"]').val()+") saturate("+$('input[name="settings_saturate_level_navigation"]').val()+") hue-rotate("+$('input[name="settings_hue_level_navigation"]').val()+"deg) invert("+$('input[name="settings_invert_level_navigation"]').val()+") brightness("+$('input[name="settings_brightness_level_navigation"]').val()+") contrast("+$('input[name="settings_contrast_level_navigation"]').val()+");";$(".visible-xs.mobile-menu-toggler").attr("style","position: fixed;"+t),$("aside, .visible-xs.mobile-menu-toggler").attr("style","z-index: 10; overflow: visible; transform: translate("+settings_leftmenu_width+"px, 0px);"+t),$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),theme_settings_update()}),c.each(function(e,t){$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),$(this).parent().parent("td").parent("tr.atshover").addClass("hidden settings_navigation_color_rows hidden-skip"),0===e&&$(this).parent().parent("td").parent("tr.atshover").prev("tr").addClass("hidden-dependent-skip")});var d=$('input[name="settings_grayscale_level_content"], input[name="settings_saturate_level_content"], input[name="settings_hue_level_content"]');d.on("click keyup change",function(e){var t="-webkit-filter: grayscale("+$('input[name="settings_grayscale_level_content"]').val()+") saturate("+$('input[name="settings_saturate_level_content"]').val()+") hue-rotate("+$('input[name="settings_hue_level_content"]').val()+"deg); filter: grayscale("+$('input[name="settings_grayscale_level_content"]').val()+") saturate("+$('input[name="settings_saturate_level_content"]').val()+") hue-rotate("+$('input[name="settings_hue_level_content"]').val()+"deg);";$("body").attr("style",t),$("#content .loading-container").attr("style",t),$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),theme_settings_update()}),d.each(function(){$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),$(this).parent().parent("td").parent("tr.atshover").addClass("hidden settings_background_color_rows")});var h=$('input[name="settings_leftmenu_width"]');h.on("click keyup change",function(e){page_adjust($(this).val(),$(this).val()),$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),theme_settings_update(),settings_leftmenu_width_initial=$(this).val()}),h.each(function(){$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),settings_leftmenu_width_initial=$(this).val()}),"restored"==v___location_query&&(c.trigger("click"),d.trigger("click"),h.trigger("click"),$('select[name="settings_navigation_color"], select[name="settings_background_color"]').trigger("change")),$("aside ul.user-html li.user-html-string").html($('input[name="settings_leftmenu_user_html"]').val()),$('input[name="settings_leftmenu_user_html"]').keyup(function(e){$("aside ul.user-html li.user-html-string").html($(this).val())}),navigation_dashboard_switch_available()&&$('input[name="settings_sysinfo_link_mini"]').parent().parent().parent().parent("tr").remove(),$('input[name^="settings_leftmenu_netdata_link"], input[name^="settings_leftmenu_user_html_only_for_administrator"], input[name="settings_sysinfo_real_time_timeout"], input[name="settings_sysinfo_easypie_charts_size"], input[name="settings_sysinfo_easypie_charts_width"], input[name="settings_sysinfo_easypie_charts_scale"], input[name="settings_sysinfo_theme_patched_updates"]').parents("td.col_value.atscontent").parent("tr.atshover").addClass("settings_option_padded"),$('input[data-role="tagsinput"]').tagsinput(),$("body").css("overflow","auto"),$.getScript(v___location_prefix+"/unauthenticated/js/detector."+v___source_type+".js?"+v___theme_version_plain,function(e,t,i){var a=new Detector;$.each($('select[name="settings_font_family"] option'),function(){var e=$(this).text();a.detect(e)||"system-default"==$(this).val()||$(this).attr("disabled","disabled").text(e+" ("+theme_language("theme_xhred_global_not_available")+")")}),$('select[name="settings_font_family"]').on("click keyup change",function(e){var t=$(this).val(),i=($.merge($("head"),$("head")),$("head").find('link[href*="font-"]').add($("head").find('link[href*="font-"]')).add($("head").find('link[href*="fonts-roboto"]')).add($("head").find('link[href*="fonts-roboto"]'))),a=(a=$.merge($("head").find('link[href*="/authentic."]'),$("head").find('link[href*="/authentic."]'))).length?a:$.merge($("head").find('link[href*="/bundle."]'),$("head").find('link[href*="/bundle."]'));i.remove(),"0"==t||"1"==t?"0"==t&&a.after(''):a.after('')})}),$('input[name="settings_leftmenu_netdata"]').on("change",function(){var e=$('input[name="settings_leftmenu_netdata_link"]');"true"==$(this).val()?e.removeAttr("disabled"):e.attr("disabled","disabled")}),$('input[name="settings_leftmenu_netdata"]:checked').trigger("change"),0!=Core.moduleAvailable("status")&&$(".right-side-tabs-toggler").length||($('input[name="settings_side_slider_enabled"][value="false"]').trigger("click"),$('input[name="settings_side_slider_enabled"]').attr("disabled","disabled"))}}})});n="#atsave:not(.btn-inverse):not(.disabled)";$("body").undelegate(n,"click"),$("body").on("click",n,function(e){e.preventDefault();var t=$(this);spinnerfy_buttons(t,[1.5,-33,"small",1e3]),set_onbeforeunload_status(0,0),theme_settings_update(),theme_config("save"),$.ajax({type:"POST",url:v___location_prefix+"/webmin/edit_startpage.cgi",data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var t=$(e).find("form.ui_form");t.find('select[name="gotomodule"]').val($.trim($('select[name="goto_webmin_default_module"]').val())),$.ajax({type:"POST",url:v___location_prefix+"/webmin/change_startpage.cgi",data:$(t).serialize(),dataType:"text",success:function(e){Test.strContains(e,v___page_signin_form)&&(v___available_session=0)},error:function(){}})}},error:function(){}}),setTimeout(function(){$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-settings=1&save=1",data:t.parents("form").serialize(),dataType:"text",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:(navigation_update(),theme_settings_controls(0),settings_sysinfo_real_time_status?"object"==typeof stats?(console.log("Enabling stats .."),stats.general.timeout=settings_sysinfo_real_time_timeout,stats.general.query()):(console.log("Loading and enabling stats .."),load.script(v___server_extensions_path+"/stats/stats",0,["stats.general.timeout = settings_sysinfo_real_time_timeout","stats.general.query()"])):"object"==typeof stats&&(console.log("Disabling stats .."),stats.general.kill()))},error:function(){t.addClass("btn-danger").removeClass("btn-success btn-inverse opacity-0_5")}})},1e3)});var n=".page_footer_ajax_submit:not(.disabled)";$("body").undelegate(n,"click"),$("body").on("click",n,function(){spinnerfy_buttons($(this),[1.5,-33,"small",!1])})}if(!e&&(v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-editor_read.cgi"||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-upload.cgi")){$('link[href*="/unauthenticated/css/styles.css"]').length&&$('link[href*="/unauthenticated/css/styles.css"]').attr("href",$('link[href*="/unauthenticated/css/styles.css"]').attr("href").split("?")[0]+"?"+(new Date).getTime()),$('script[src*="/unauthenticated/js/scripts.js"]').length&&$('script[src*="/unauthenticated/js/scripts.js"]').attr("src",$('script[src*="/unauthenticated/js/scripts.js"]').attr("src").split("?")[0]+"?"+(new Date).getTime()),setTimeout(function(){$(".file-editor-saved").remove(),$(".file-editor-save").removeClass("hidden")},2400),check_location_resource("/settings-upload.cgi?saved=1")&&$.each($(".file_chooser_button_preview:first"),function(){$(this).hasClass("disabled")?$("aside + .__logo").remove():matchMedia("(max-width: 767px)").matches||($("aside + .__logo").length?($('.__logo img[src*="/images/logo.png"]').attr("src",$('.__logo img[src*="/images/logo.png"]').attr("src").split("?")[0]+"?"+(new Date).getTime()),$("aside + .__logo").attr("style","transform: translate(0px, 0px);"),setTimeout(function(){$(".__logo").transition({y:"-140px"},1200)},400)):($("aside").after(''),setTimeout(function(){$(".__logo").transition({y:"-140px"},1200)},400)))});var s=".authentic_update:not(.disabled), .page_footer_ajax_submit:not(.disabled)";$("body").undelegate(s,"click"),$("body").on("click",s,function(){spinnerfy_buttons($(this),[1.5,-28,"small",!1])}),setTimeout(function(){v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-editor_read.cgi"&&$(".end_submits").parent("td").after('Theme logos').parents(".ui_form_end_buttons").css("width","100%"),$(".btn-group.end_submits").css("margin-left","2px")},100)}if(e||v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-upload.cgi"||($(function(){function e(e){void 0===e&&(e=$('input[name="authenticated_logo"]:checked'));var t=["authenticated_logo_file"];"1"!=e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').parents(".file-input-wrapper").addClass("disabled").prev(".file_chooser_button_preview").addClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"]').parents(".file-input-wrapper").removeClass("disabled"),"1"==$_authenticated_logo&&$('input[name="'+t+'"]').parents(".file-input-wrapper").prev(".file_chooser_button_preview").removeClass("disabled")})}function t(e){void 0===e&&(e=$('input[name="unauthenticated_logo"]:checked'));var t=["unauthenticated_logo_file"];"1"!=e.val()?$.each(t,function(e,t){$('input[name="'+t+'"]').parents(".file-input-wrapper").addClass("disabled").prev(".file_chooser_button_preview").addClass("disabled")}):$.each(t,function(e,t){$('input[name="'+t+'"]').parents(".file-input-wrapper").removeClass("disabled"),"1"==$_unauthenticated_logo&&$('input[name="'+t+'"]').parents(".file-input-wrapper").prev(".file_chooser_button_preview").removeClass("disabled")})}$_authenticated_logo=$('input[name="authenticated_logo"]:checked').val(),$_unauthenticated_logo=$('input[name="unauthenticated_logo"]:checked').val(),e(),$('input[name="authenticated_logo"]').on("change",function(){e($(this))}),t(),$('input[name="unauthenticated_logo"]').on("change",function(){t($(this))})}),$(".file_chooser_button_preview").on("mouseout",function(e){$(this).css("background","white")}).on("mouseover",function(e){$(this).css("background","#eee")}),$.each($(".file_chooser_button_preview"),function(){$(this).data("image")&&$(this).popover({trigger:"hover",html:!0,content:function(){return""}})})),$("#system-status > div.panel-body > table > tbody > tr").on("mouseover",function(){$(this).find(".btn-hidden").removeClass("hidden")}).on("mouseout",function(){$(this).find(".btn-hidden").addClass("hidden")}),$('input[name="but_switch"]').on("click",function(e){$(this).parents("form").attr("target","_top")}),$('form[action*="switch_user.cgi"], a[href*="switch_user.cgi"]').each(function(){$(this).attr("target","_top")}),(Core.curModule("mysql")||Core.curModule("postgresql"))&&($('a > img[src*="images/left.gif"]').each(function(e,t){$(this).replaceWith('')}),$('a > img[src*="images/right.gif"]').each(function(e,t){$(this).replaceWith('')})),Core.curModule("mailboxes")||Core.curModule("mailbox")){var _='form.ui_form[action="index.cgi"]',r="fa fa-fw fa-lg text-semi-light vertical-align-baseline fa-angle-";$(_+' img[src*="images/left"], center img[src*="images/left"]').each(function(){$(this).replaceWith('')}),$(_+' img[src*="images/right"], center img[src*="images/right"]').each(function(){$(this).replaceWith('')}),$(_+' img[src*="images/first"]').each(function(){$(this).replaceWith('')}),$(_+' img[src*="images/last"]').each(function(){$(this).replaceWith('')})}if(Core.curModule("mailbox")&&$.each($('[onclick*="document.forms"]'),function(){var e=$(this),t=e.attr("onclick"),i=$("aside form").length;e.attr("onclick",t.replace("document.forms[0]","document.forms["+i+"]"))}),Core.curModuleFile("virtual-server","list_scripts.cgi")&&($('td > a > img[src*="images/staroff.gif"]').each(function(e,t){$(this);$(t).attr("src",v___location_prefix+"/images/staroff.gif")}),$('td > a > img[src*="images/staron.gif"]').each(function(e,t){$(this);$(t).attr("src",v___location_prefix+"/images/staron.gif")})),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"status/"&&($('td img[src*="images/up.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/check.png"),i.addClass("scale-08")}),$('td img[src*="images/down.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/cross.png"),i.addClass("scale-08")}),$('td img[src*="images/not.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/not.png"),i.addClass("scale-08")})),$('.ui_form[action^="delete_mons"] tr.ui_checked_columns > td > label > img[src="images/up.gif"]:not(".ui_icon_protected"), .ui_form[action^="save_mon"] img[src="images/up.gif"]:not(".ui_icon_protected"), table.ui_buttons_table > tbody > tr.ui_buttons_row > td.ui_buttons_label > img[src="images/up.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/check.png"),i.addClass("scale-08")}),$('.ui_form[action^="delete_mons"] tr.ui_checked_columns > td > label > img[src="images/down.gif"]:not(".ui_icon_protected"), .ui_form[action^="save_mon"] img[src="images/down.gif"]:not(".ui_icon_protected"), table.ui_buttons_table > tbody > tr.ui_buttons_row > td.ui_buttons_label > img[src="images/down.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/cross.png"),i.addClass("scale-08")}),$('.ui_form[action^="delete_mons"] tr.ui_checked_columns > td > label > img[src="images/not.gif"]:not(".ui_icon_protected"), .ui_form[action^="save_mon"] img[src="images/not.gif"]:not(".ui_icon_protected"), table.ui_buttons_table > tbody > tr.ui_buttons_row > td.ui_buttons_label > img[src="images/not.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/not.png"),i.addClass("scale-08")}),(Core.curModule("proc")||Core.curModule("firewall")||Core.curModule("firewall6")||Core.curModule("shorewall")||Core.curModule("shorewall6")||Core.curModuleFile("pam","edit_pam.cgi")||Core.curModule("filter"))&&($("td a img[src], td label a img[src]").parents("td").addClass("text-center"),$('td img[src*="images/gap.gif"]').replaceWith(''),$('td a img[src*="images/down.gif"]').replaceWith(''),$('td a img[src*="images/up.gif"]').replaceWith(''),$('td a img[src*="images/after.gif"]').replaceWith(''),$('td a img[src*="images/before.gif"]').replaceWith('')),(Core.curModule("squid")||Core.curModule("cron"))&&($('td a img[src*="images/movedown.gif"]').replaceWith(''),$('td a img[src*="images/moveup.gif"]').replaceWith('')),Core.curModule("cron")&&($('td a img[src*="images/bottom.gif"]').replaceWith(''),$('td a img[src*="images/top.gif"]').replaceWith('')),$("input").each(function(e,t){"images/ok.gif"==$(this).attr("src")&&($(t).attr("src",v___location_prefix+"/"+$(this).attr("src")),$(this).parents("td").attr("style","white-space: nowrap"))}),!e){if(!$(".ui_table tr td").has(".ui_grid_table.table-hardcoded")||v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"passwd/"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"mailboxes/"&&v___location_path!=v___location_prefix+"/usermin/list_configs.cgi"||($(".ui_table tr td .ui_grid_table.table-hardcoded").parents("table").css("border","1px solid #f0f0f0"),$(".ui_table tr td .ui_grid_table.table-hardcoded").addClass("table").parents("tr").css("border","1px solid #f0f0f0")),($("body").attr("class")&&$('body[class="custom"]').length||$("body").attr("class")&&0===$("body").attr("class").search(/custom\d+$/))&&"view.cgi"==v___location_file){var o=$('form[action="save.cgi"]').find(".table-title").find("tt").text();$('form[action="save.cgi"]').find(".table-title").find("b").empty().append(""+o+"")}if($.each($("form > table"),function(){$(this).next('input[type="submit"]')&&$(this).attr("style")}),$.each($("table tr"),function(){$(this).is(":empty")&&$(this).remove()}),$.each($("span > input"),function(){var e=$(this).parent("span").next(".file_chooser_button"),t=$(this).parent("span").next('input[type="button"][onclick]');$(this).parent("span").next("select");e&&e.attr("style","display: inline; width:40px; height: 28px; margin-right:0 !important; margin-top:4px !important;").find("i.fa-files-o").css("margin-top","0").addClass("vertical-align-middle"),$(this).parents(".tab-content")&&e.css("margin-top","4px"),t&&(t.attr("style","display: inline; width:40px; height: 28px; margin-right:0 !important; vertical-align: middle").next("i.fa-files-o").css("margin-top","11px").addClass("vertical-align-middle"),t.attr("style","display: inline; width:40px; height: 28px; margin-right:0 !important; vertical-align: middle").next("i.fa-calendar").attr("style","margin-top: 8px !important; font-size: 11px; margin-left: -27px; pointer-events: none;"))}),$.each($('input[type="button"][onclick^="ifield"]'),function(e,t){$(this).css("margin-left","0").css("width","40px").css("height","28px")}),$('.ui_form[action="switch.cgi"] > input.form-control.ui_textbox').next('input[type="button"][onclick^="ifield"]').attr("style","margin-top: 2px !important; margin-bottom: 2px !important; margin-left: 0 !important"),setTimeout(function(){$('.ui_form[action="switch.cgi"] .file_chooser_button_attached').attr("style","font-size: 11px; pointer-events: none; margin-top: 14px !important;")},10),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"cshrc/"&&$("textarea").each(function(e,t){$(this).attr("style","height: 20em !important")}),v___location_path!=v___location_prefix+"/acl/"&&v___location_path!=v___location_prefix+"/acl/edit_user.cgi"||$('.ui_grid_table.table-hardcoded .ui_grid_row .ui_grid_cell input[type="checkbox"], .table-hardcoded .col_value input[type="checkbox"]').each(function(e,t){$(this).attr("style","vertical-align: bottom !important")}),($("body").attr("class")&&$('body[class="custom"]').length||$("body").attr("class")&&0===$("body").attr("class").search(/custom\d+$/))&&($(".panel-body > .ui_grid_table.table-hardcoded").each(function(e,t){$(this).attr("style","margin-top: 3px !important")}),$(".panel-body td > .ui_form").each(function(){$(this).attr("style","padding-top: 0 !important")}),$(".panel-body > a.ui_link").each(function(e,t){$(this).addClass("btn btn-inverse btn-tiny ui_link_replaced").removeClass("ui_link"),$(this).text($(this).text().replace(/\.$/,"")),$(this).parent().contents().filter(function(){return 3==this.nodeType}).remove(),0===$(this).attr("href").indexOf("edit_cmd.cgi?new")&&$(this).html(' '+$(this).text()),0===$(this).attr("href").indexOf("edit_file.cgi?new")&&$(this).html(' '+$(this).text()),0===$(this).attr("href").indexOf("edit_sql.cgi?new")&&$(this).html(' '+$(this).text())}),$.each($('td.td_tag:contains("|")'),function(){$(this).find('a[href^="edit_"]').addClass("ui_link_replaced btn btn-success btn-xxs").css("margin-right","3px").removeClass("ui_link").prepend(' '),$(this).find('a:not([href^="edit_"])').remove(),$(this).parents("table").find("thead > tr > th:eq(2)").addClass("pointer-events-none").html("")}),$('td.td_tag:contains("|")').contents().filter(function(){return 3==this.nodeType}).remove()),theme_buttonify(["/virtual-server/cert_form.cgi","/webmin/edit_ssl.cgi","/usermin/edit_ssl.cgi"],".container-fluid #att_current","a","btn btn-link btn-link-bordered btn-xxs margined-left-3 vertical-align-top margined-top-2 --to-new-tab",0,"","","","|"),theme_buttonify(["/sysinfo.cgi","/virtual-server/edit_newchangelog.cgi","/server-manager/edit_newchangelog.cgi"],".container-fluid #newfeatures-virtual-server-1-collapse dt, .container-fluid #newfeatures-server-manager-1-collapse dt, .container-fluid .table td dt","a","btn btn-link btn-link-bordered btn-xxs margined-left-3 vertical-align-top margined-top-2","fa-eye","|",""),theme_buttonify(["/virtual-server/","/virtual-server/index.cgi","/virtual-server/edit_plan.cgi"],".container-fluid form table tbody td",'a[href*="list_users.cgi?"], .container-fluid a[href*="list_aliases.cgi?"]',"btn btn-transparent btn-transparent-link-force btn-borderless btn-xxs vertical-align-top margined-top-2",0,"(~)"," ~ ","(~..)"),theme_buttonify(["/quota/","/quota/index.cgi"],".container-fluid .table tbody td.td_tag",'a[href*="activate.cgi"][href*="&active=3"]',"btn btn-warning btn-xxs vertical-align-top margined-top-2","fa-ban"),theme_buttonify(["/quota/","/quota/index.cgi"],".container-fluid .table tbody td.td_tag",'a[href*="activate.cgi"][href*="&active=0"]',"btn btn-success btn-xxs vertical-align-top margined-top-2","fa-check-circle-o"),theme_buttonify(["/virtualmin-google-analytics/","/virtualmin-google-analytics/index.cgi"],".container-fluid .table tbody td.td_tag",'a[href*="edit.cgi"]',"btn btn-warning btn-xxs vertical-align-top margined-top-2","fa-pencil-square"),theme_buttonify(["/apache/","/apache/index.cgi"],".container-fluid .table tbody tr td:last-child","a.ui_link","btn btn-transparent btn-link-bordered btn-xxs vertical-align-top margined-top-2","fa-external-link"),($('body[class*="status"]').length&&"edit_mon.cgi"==v___location_file||v___location_path==v___location_prefix+"/virtual-server/list_sched.cgi"||v___location_path==v___location_prefix+"/ldap-server/edit_schema.cgi"||v___location_path==v___location_prefix+"/software/list_pack.cgi"||v___location_path==v___location_prefix+"/mailboxes/view_mail.cgi"||v___location_path==v___location_prefix+"/mailbox/view_mail.cgi"||v___location_path==v___location_prefix+"/mailbox/list_folders.cgi"||v___location_path==v___location_prefix+"/phpini/"||v___location_path==v___location_prefix+"/phpini/index.cgi"||v___location_path==v___location_prefix+"/fsdump/"||v___location_path==v___location_prefix+"/fsdump/index.cgi"||v___location_path==v___location_prefix+"/fdisk/"||v___location_path==v___location_prefix+"/fdisk/index.cgi"||v___location_path==v___location_prefix+"/virtualmin-awstats/"||v___location_path==v___location_prefix+"/virtualmin-awstats/index.cgi"||v___location_path==v___location_prefix+"/syslog/"||v___location_path==v___location_prefix+"/syslog/index.cgi")&&($.each($('tr td:last-child:contains("|")'),function(){v___location_path==v___location_prefix+"/virtual-server/list_sched.cgi"&&($(this).find('a[href^="backup_form.cgi"]').html($(this).find('a[href^="backup_form.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("ui_link").prepend('  '),$(this).find('a[href^="restore_form.cgi"]').html($(this).find('a[href^="restore_form.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("ui_link").prepend('  '),$(this).find('a[href^="backuplog.cgi"]').html($(this).find('a[href^="backuplog.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-info btn-xxs").removeClass("ui_link").prepend('  ')),v___location_path==v___location_prefix+"/ldap-server/edit_schema.cgi"&&($(this).find('a[href^="view_sfile.cgi"]').html($(this).find('a[href^="view_sfile.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("ui_link").prepend('  '),$(this).find('a[href^="edit_sfile.cgi"]').html($(this).find('a[href^="edit_sfile.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("ui_link").prepend('  ')),v___location_path!=v___location_prefix+"/phpini/"&&v___location_path!=v___location_prefix+"/phpini/index.cgi"||($(this).find('a[href^="list_ini.cgi"]').html($(this).find('a[href^="list_ini.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("ui_link").prepend('  '),$(this).find('a[href^="edit_manual.cgi"]').html($(this).find('a[href^="edit_manual.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("ui_link").prepend('  ')),v___location_path!=v___location_prefix+"/fdisk/"&&v___location_path!=v___location_prefix+"/fdisk/index.cgi"||($(this).find('a[href^="edit_hdparm.cgi"]').html($(this).find('a[href^="edit_hdparm.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("heighter-34").removeClass("ui_link"),$(this).find('a[href*="smart-status/index.cgi"]').html($(this).find('a[href*="smart-status/index.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-info btn-xxs").removeClass("heighter-34").removeClass("ui_link"),$(this).find('a[href^="blink.cgi"]').html($(this).find('a[href^="blink.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-warning btn-xxs").removeClass("heighter-34").removeClass("ui_link")),v___location_path==v___location_prefix+"/mailbox/list_folders.cgi"&&($(this).find('a[href^="index.cgi"]').html($(this).find('a[href^="index.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("heighter-34").removeClass("ui_link").removeClass("ui_link").prepend('  '),$(this).find('a[href^="edit_auto.cgi"]').html($(this).find('a[href^="edit_auto.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-info btn-xxs").removeClass("heighter-34").removeClass("ui_link").removeClass("ui_link").prepend('  '),$(this).find('a[href^="copy_form.cgi"]').html($(this).find('a[href^="copy_form.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-warning btn-xxs").removeClass("heighter-34").removeClass("ui_link").removeClass("ui_link").prepend('  ')),v___location_path!=v___location_prefix+"/mailboxes/view_mail.cgi"&&v___location_path!=v___location_prefix+"/mailbox/view_mail.cgi"||($(this).find('a[href^="detach.cgi"]:not([href*="&save=1"]):not([target="_blank"])').html($(this).find('a[href^="detach.cgi"]:not([href*="&save=1"]):not([target="_blank"])').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("heighter-34").removeClass("ui_link").removeClass("ui_link").prepend('  '),$(this).find('a[href*="detach.cgi"][target="_blank"]').html($(this).find('a[href*="detach.cgi"][target="_blank"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  '),$(this).find('a[href*="&save=1"]:not([target="_blank"])').html($(this).find('a[href*="&save=1"]:not([target="_blank"])').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-warning btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  ')),v___location_path!=v___location_prefix+"/virtualmin-awstats/"&&v___location_path!=v___location_prefix+"/virtualmin-awstats/index.cgi"||($(this).find('a[href^="view.cgi"]').html($(this).find('a[href^="view.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  '),$(this).find('a[href^="config.cgi"]').html($(this).find('a[href^="config.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  '))}),$('body[class*="status"]').length&&"edit_mon.cgi"==v___location_file?($('a[href*="edit_mon.cgi?id"]').addClass("ui_link_replaced btn btn-default btn-xxs").removeClass("heighter-34").removeClass("ui_link"),$('a[href*="edit_mon.cgi?id"]').last().css("margin-left","-1px"),$('tr td:last-child:contains("|")').replaceText(/\|/gi,"")):$('tr td:last-child:contains("|")').contents().filter(function(){return 3==this.nodeType}).remove(),v___location_path!=v___location_prefix+"/fdisk/"&&v___location_path!=v___location_prefix+"/fdisk/index.cgi"||$("body").find('a[href^="blink.cgi"]:not(.ui_link_replaced)').html($("body").find('a[href^="blink.cgi"]:not(.ui_link_replaced)').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-warning btn-xxs").removeClass("heighter-34").removeClass("ui_link"),v___location_path!=v___location_prefix+"/fsdump/"&&v___location_path!=v___location_prefix+"/fsdump/index.cgi"||$.each($("tr td:last-child"),function(){$(this).find('a[href^="backup.cgi"]').html($(this).find('a[href^="backup.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-success btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  '),$(this).find('a[href^="kill.cgi"]').html($(this).find('a[href^="kill.cgi"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-danger btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('  ')}),v___location_path!=v___location_prefix+"/syslog/"&&v___location_path!=v___location_prefix+"/syslog/index.cgi"||$.each($("tr td:last-child"),function(){$(this).find('a[href*="save_log.cgi"][href*="view=1"]').html($(this).find('a[href*="save_log.cgi"][href*="view=1"]').text().replace(/\.\.$/," ")).addClass("ui_link_replaced btn btn-primary btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('')}),v___location_path==v___location_prefix+"/software/list_pack.cgi")){$('td a.ui_link[href*="view.cgi"]').html('').addClass("ui_link_replaced btn btn-default btn-xxs").removeClass("heighter-34").attr("style","margin-top: 2px !important; margin-bottom: 0 !important; margin-right: 15px").removeClass("ui_link").prepend('')}if(v___location_path==v___location_prefix+"/fdisk/edit_disk.cgi"){var l=[];$.each($(".panel-body > table.table.table-striped tbody tr"),function(e,t){($(this).find("td:nth-child(3)").find('img[src*="images/use"]').length||$(this).find("td:nth-child(3)").find('img[src*="images/gap"]').length)&&($(this).find("td:nth-child(3)").remove(),l.push(e))}),$.isEmptyObject(l)||($(".panel-body > table.table.table-striped thead").find("th:nth-child(3)").remove(),delete l)}v___location_path==v___location_prefix+"/virtual-server/edit_link.cgi"&&$(".table-hardcoded").find('input[name="open"]').parent("td").parent("tr").remove(),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"init/"&&$('.table.table-striped.table-condensed tr.tr_tag td.td_tag input[type="checkbox"]').each(function(e,t){$(this).attr("style","vertical-align: middle !important")}),v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"proc/"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"proc/index.cgi"||((v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"proc/"&&v___location_file&&v___location_file.indexOf("index_")>-1||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"proc/index.cgi"||v___location_path===v___location_prefix+"/proc/")&&($("a.ui_link + b").addClass("btn").css("margin-left","3px"),$("b + a.ui_link").addClass("btn").css("margin-left","3px"),$('.panel-body > b:first-child:contains("Display")').length>0&&$(".panel-body > b:first-child").remove(),$(".panel-body > b").addClass("btn btn-success")),$(".panel-body").contents().filter(function(){return 3==this.nodeType}).remove(),$(".panel-body > a.ui_link").addClass("btn").css("margin-left","3px")),v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"proc/edit_proc.cgi"&&$("#signal").attr("style","margin-bottom: 0 !important;"),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"procmail/"&&($(".panel-body p:first-child").next("p").contents().filter(function(){return 3==this.nodeType}).remove(),$(".panel-body p:last-child").prev("a.ui_link").remove()),v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"cron/"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"cron/index.cgi"||$('.panel-body form.ui_form[action="index.cgi"]').next("script").next("b").next("p").contents().filter(function(){return 3==this.nodeType}).remove(),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"filter/"&&$(".panel-body > b").next("p").contents().filter(function(){return 3==this.nodeType}).remove(),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"dhcpd/"&&$(".panel-body > p").contents().filter(function(){return 3==this.nodeType}).remove(),v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"htaccess-htpasswd/"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"forward/"||$("td table.table-hardcoded.table.table-subtable").removeClass("table-striped"),$(".ui_buttons_hr > td > table.table-hardcoded > tbody > tr > td[nowrap]").each(function(){$(this).parents("table").attr("style","margin-bottom: 15px !important")}),$("textarea.form-control.ui_textarea").next('button[type="button"].btn-default').each(function(){$(this).prev("textarea").attr("style","margin-bottom: 1px !important"),$(this).attr("style","width:100% !important; padding-top: 0; height:28px !important")}),$("textarea.form-control.ui_textarea").next("br").next('button[type="button"].btn-default').each(function(){$(this).prev("textarea").attr("style","margin-bottom: 1px !important"),$(this).attr("style","width:100% !important; padding-top: 0; height:28px !important")}),$(".table-hardcoded > tbody > tr > td > input.form-control.ui_textbox").next('button[type="button"].ui_button').each(function(){$(this).attr("style","margin-top: 2px !important")}),$(".table-hardcoded > tbody > tr > td.col_label b a, .ui_table_row td a").each(function(e,t){$(this).attr("href")||$(this).attr("style","color: #333; text-decoration: none; cursor:default")}),$('input[name="all_weekdays"], .ui_grid_cell > table.table-condensed, table.table-hardcoded table.table-condensed, select[multiple][name="days"]').each(function(){$(this).parent("td").attr("style","vertical-align: top !important; padding-left:2px; padding-right:2px;")}),$('input[type="submit"]').each(function(){$(this).addClass("btn btn-default")}),$("table tr th").each(function(){$(this).text()&&$(this).attr("style","width: auto")}),$("table thead th:not(.table-title)").each(function(){$(this).css("border-top","none"),$(this).css("border-bottom","none")}),$("body").attr("class")&&$("body").attr("class").indexOf(v___module_file_manager)>-1&&(!$("body").hasClass("file-manager")&&$("body").addClass("file-manager"),$("#headln2l").prepend("'));var c=$(".panel-heading > table.header > tbody > tr > td > a");$.each(c,function(){if($(this).attr("href")&&$(this).attr("href").indexOf("config.cgi")>-1||$(this).attr("href").indexOf("man/search.cgi")>-1||$(this).attr("href").indexOf("/index.cgi")>-1||$(this).attr("href")==v___location_directory_trail_slashed||$(this).attr("href").indexOf("index.cgi")>-1&&v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"openvpn/"||$(this).attr("href").indexOf("index.cgi?")>-1&&v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"spam/"||$(this).attr("href").indexOf("restart_zone.cgi")>-1||$(this).attr("href").indexOf("restart.cgi")>-1||$(this).attr("href").indexOf("apply.cgi")>-1||$(this).attr("href").indexOf("start.cgi")>-1||$(this).attr("href").indexOf("stop.cgi")>-1||"//"==$(this).attr("href")&&(v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-editor_read.cgi"||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-upload.cgi")||$(this).attr("href").indexOf("delete_")>-1||$(this).attr("href").indexOf("list_mail.cgi")>-1||$(this).attr("href").indexOf("/virtual-")>-1||$(this).attr("href").indexOf("/virtualmin-")>-1||$(this).attr("href").indexOf("/server-")>-1||$(this).attr("href").indexOf("help.cgi")>-1){if($.each($(this).next("br"),function(){$(this).remove()}),$.each($(this).prev("br"),function(){$(this).remove()}),$(this).attr("href").indexOf("help.cgi")>-1){var e=$(this),t=$(this).parent("td");$(this).remove(),t.append(e)}$(this).attr("href").indexOf("/index.cgi")>-1||$(this).attr("href")==v___location_directory_trail_slashed||$(this).attr("href").indexOf("/virtual-")>-1||$(this).attr("href").indexOf("/virtualmin-")>-1||$(this).attr("href").indexOf("/server-")>-1?($iconized_class="fa-arrow-left",$(this).data("title","").data("back",1)):"//"!=$(this).attr("href")||v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-editor_read.cgi"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-upload.cgi"?$(this).attr("href").indexOf("config.cgi")>-1?($iconized_class="fa-cog",$(this).data("title","")):$(this).attr("href").indexOf("restart.cgi")>-1||$(this).attr("href").indexOf("apply.cgi")>-1?$iconized_class="fa-refresh":$(this).attr("href").indexOf("restart_zone.cgi")>-1?$iconized_class="fa-retweet":$(this).attr("href").indexOf("start.cgi")>-1?$iconized_class="fa-play":$(this).attr("href").indexOf("stop.cgi")>-1?$iconized_class="fa-square":$(this).attr("href").indexOf("man/search.cgi")>-1?$iconized_class="fa-search":$(this).attr("href").indexOf("delete_")>-1?$iconized_class="fa-trash-o":$(this).attr("href").indexOf("list_mail.cgi")>-1?$iconized_class="fa-inbox":$(this).attr("href").indexOf("index.cgi")>-1&&v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"openvpn/"?$iconized_class="fa-cogs":$(this).attr("href").indexOf("index.cgi?")>-1&&v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"spam/"&&($iconized_class="fa-arrow-left",$(this).data("back",1)):($iconized_class="fa-arrow-left",$(this).attr("href",v___location_prefix+"/webmin/edit_themes.cgi").data("title","").data("back",1));var i=$(this).attr("href").indexOf("help.cgi")>-1;i&&($iconized_class="fa-question-circle",$(this).data("title","")),$(this).data("toggle","tooltip").data("title",Convert.strUpInitial(i?theme_language("theme_xhred_global_help"):1===$(this).data("back")?Core.curModule(v___module_file_manager)?"":theme_language("theme_xhred_global_return_to_module_index"):$(this).text())).attr("data-container","body").addClass("btn btn-link text-lighter").removeClass("ui_link").append(''),$(this).contents().filter(function(){return 3==this.nodeType}).remove(),$(this).tooltip({container:"body",placement:"auto top",delay:{show:600,hide:30}}),((v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"apache/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"proftpd/")&&($(this).attr("href").indexOf("restart.cgi")>-1||$(this).attr("href").indexOf("apply.cgi")>-1)||$(this).parent("td").find("a")&&1==$(this).parent("td").find("a").length||$(this).attr("href").indexOf("man/search.cgi")>-1||$(this).attr("href").indexOf("config.cgi")>-1||$(this).attr("href").indexOf("/index.cgi")>-1||$(this).attr("href").indexOf("/index.cgi")>-1||$(this).attr("href").indexOf("/virtual-")>-1||$(this).attr("href").indexOf("/virtualmin-")>-1||$(this).attr("href").indexOf("/server-")>-1)&&(($(this).attr("href").indexOf("/index.cgi")>-1||$(this).attr("href").indexOf("config.cgi")>-1)&&$("body").attr("class")&&$("body").attr("class").indexOf(v___module_file_manager)>-1?$(this).attr("style","margin-right: 0 !important; padding: 6px 12px"):$(this).attr("style","margin-right: 0 !important"))}$("#headln2l").removeClass("invisible")}),$.each($('td.ui_grid_cell:contains("|")'),function(){$(this).contents().filter(function(){return 3==this.nodeType}).remove()}),$('a[href*="help.cgi"][onclick], a[href*="showpass.cgi?"][onclick]').attr("onclick","").unbind("click").addClass("help_popup"),$(".help_popup").each(function(){$(this).attr("style","color: #333; text-decoration: none; cursor:help")})}if($(".help_popup").on("click",function(e){e.stopPropagation(),e.preventDefault();var t=$(this),i=$(this).attr("href"),a=$(this).parents("td");a.append(''),$.ajax({type:"POST",url:t.attr("href").indexOf("showpass.cgi")>-1?v___location_directory_trail_slashed+t.attr("href"):t.attr("href"),data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{a.find("._tmp_help_content").html(e.replace(/<(script|link|meta)\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/(script|link|meta)>/gi,"")),$help_title=a.find("._tmp_help_content .ui_subheading").first().text(),$help_body=a.find("._tmp_help_content title").remove(),$help_body=a.find("._tmp_help_content h3.ui_subheading").remove(),$help_body=a.find("._tmp_help_content h3").addClass("h3_help"),$help_body=a.find("._tmp_help_content hr").remove();var n=a.find("._tmp_help_content a");void 0!==n.attr("href")&&$.each(n,function(){var e=$(this).attr("href");e.startsWith("http")?$help_body=a.find("._tmp_help_content a").attr("target","_blank").css("text-decoration","none").css("font-style","italic"):($("body").undelegate('a[href="'+e+'"]',"click"),$("body").one("click",'a[href="'+e+'"]',function(a){if($(a.target).is($('a[href="'+e+'"]'))){a.preventDefault();var n=Convert.pathnamePopLast(t.attr("href"))+"/"+e;$('a[href="'+i+'"].help_popup').attr("data-initial",i).attr("data-substituted",n),$('a[href="'+i+'"].help_popup').attr("href",n),t.trigger("click")}}))}),$help_body=a.find("._tmp_help_content").html(),a.find("._tmp_help_content").remove();var s='',_=t.attr("href").indexOf("showpass.cgi")>-1;_&&(s=""),t.popover({html:!0,container:".container-fluid",template:'',title:function(){return s+$help_title},content:function(){return $help_body},placement:"auto right"}),t.popover("show"),t.on("shown.bs.popover",function(){$help_body.indexOf("")>-1&&$(".popover").animate({"max-width":"540px"},300),$("body").find(".popover:visible").addClass("module-help"),$('body[class*="'+v___module_file_manager+'"]').find(".popover:visible").addClass("file-manager-help"),setTimeout(function(){$.each($(".module-help"),function(){$(this).is(t.next(".module-help"))?($(this).animate({opacity:1},600),popover_visibility_position($(this))):$(".module-help").length>1?$(this).css("opacity",.85):$(this).css("opacity",1)})},100)}),t.on("hidden.bs.popover",function(){$("body").undelegate(":not(tt)","click"),t.attr("data-initial")&&(t.attr("href",t.attr("data-initial")),t.removeAttr("data-initial").removeAttr("data-substituted"))})}}})}),!e){if(v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"fdisk/"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"postfix/"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"pam/"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"syslog/"||$("p > a[href], table + a[href], div.panel-body > a.ui_link").each(function(e,t){$(this).text($(this).text().replace(/\.$/,""))}),$('.panel-body > form > p > a.ui_link, .panel-body > table.table + a.ui_link, .panel-body > p > a:not([href*="config.cgi?bacula-backup"]), body[data-current-product="usermin"] div.panel-body > p > a, div.panel-body > a[href^="edit_"]:not([href^="edit_user.cgi?user="], [href^="edit_group.cgi?group="]), .ui_form > a, .ui_grid_cell > :not(input):not(.acheckbox):not(.aradio):not(label) + a.ui_link:not([href^="edit_acl.cgi"], [href^="edit_rpc.cgi"], [href^="edit_user.cgi?user="], [href^="edit_group.cgi?group="]), .ui_grid_cell > a.select_all, .ui_grid_cell > a.select_invert, .ui_grid_cell > :not(input):not(.acheckbox):not(.aradio):not(label) + a[href*=".cgi"]:not([href^="edit_acl.cgi"], [href^="edit_rpc.cgi"], [href^="edit_user.cgi?user="], [href^="edit_group.cgi?group="]), .ui_grid_cell > a[href*=".cgi"]:first-child:not([href^="edit_rpc.cgi"],[href^="edit_nuser.cgi"],[href*="edit_user.cgi?idx"]), .tab-pane > p > a, .tab-pane > a.ui_link, .tab-pane > .table-condensed > a.ui_link, .tab-pane > a, .panel-body > p > a.ui_link, a.select_all, a.select_invert, form[action="delete.cgi"] > table table.ui_grid_table + a').each(function(){if(!(Core.curModuleFile("samba","edit_epass.cgi")||Core.curModule("acl")&&($(this).is('[href^="edit_user.cgi?user="]')||$(this).parent("td.ui_grid_cell").length)&&!$(this).parents("b").length)&&!Core.curModuleFile("virtual-server","history.cgi")&&!Core.curModuleFile("server-manager","one_history.cgi")&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"passwd/"&&$(this).text()&&v___location_path!=v___location_prefix+"/mailboxes/"&&v___location_path!=v___location_prefix+"/mailboxes/index.cgi"&&v___location_path!=v___location_prefix+"/usermin/list_configs.cgi"&&!$(this).hasClass("help_popup")){$(this).addClass("btn btn-inverse btn-tiny ui_link_replaced"),$(this).text($(this).text().replace(/\.$/,""));var e=$(this).parent().contents().filter(function(){return 3==this.nodeType});e&&$.each(e,function(){$(this).text()&&$(this).text().length<=3&&$(this).remove()}),$(this).hasClass("select_all")&&$(this).html(' '+$(this).text()),$(this).hasClass("select_invert")&&$(this).html(' '+$(this).text()),$(this).attr("href")&&(0===$(this).attr("href").indexOf("edit")&&0!==$(this).attr("href").indexOf("edit_allow")||0===$(this).attr("href").indexOf("master_form")||0===$(this).attr("href").indexOf("slave_form")||0===$(this).attr("href").indexOf("stub_form")||0===$(this).attr("href").indexOf("forward_form")||0===$(this).attr("href").indexOf("delegation_form")||0===$(this).attr("href").indexOf("mass_form")||0===$(this).attr("href").indexOf("newdb_form"))?$(this).html(' '+$(this).text()):$(this).attr("href")&&0===$(this).attr("href").indexOf("edit_allow")?$(this).html(' '+$(this).text()):$(this).attr("href")&&0===$(this).attr("href").indexOf("mass_ucreate")&&$(this).html(' '+$(this).text()),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"custom/"&&($(this).attr("href")&&0===$(this).attr("href").indexOf("edit_cmd.cgi?new")&&$(this).html(' '+$(this).text()),$(this).attr("href")&&0===$(this).attr("href").indexOf("edit_file.cgi?new")&&$(this).html(' '+$(this).text()),$(this).attr("href")&&0===$(this).attr("href").indexOf("edit_sql.cgi?new")&&$(this).html(' '+$(this).text())),$(this).attr("href")||$(this).remove()}}),$.each($(".btn-tiny.ui_link_replaced"),function(){$(this).prev('[class="table table-striped table-condensed"]').length&&$(this).next(':not(".ui_link_replaced")').length&&$(this).removeClass("btn-tiny ui_link_replaced").addClass("ui_link_re-replaced")}),$("a.ui_link_replaced").each(function(){$(this).prev().is("b")&&$(this).prev("b").addClass("btn btn-success btn-tiny"),$(this).next().is("b")&&$(this).next("b").addClass("btn btn-success btn-tiny")}),$("a.ui_link_replaced").each(function(){return!$(this).next().is("a.ui_link_replaced")||$(this).hasClass("select_all")||$(this).hasClass("select_invert")?!$(this).prev().is("a.ui_link_replaced")||$(this).hasClass("select_all")||$(this).hasClass("select_invert")?void 0:($(this).prev("a.ui_link_replaced").not(".btn-xxs"),!1):($(this).next("a.ui_link_replaced").not(".btn-xxs"),!1)}),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"fetchmail/"&&$("a.ui_link").each(function(){$(this).addClass("btn btn-inverse btn-tiny ui_link_replaced").css("margin-bottom","10px").css("margin-top","4px"),$(this).text($(this).text().replace(/\.$/,"")),$(this).parent().contents().filter(function(){return 3==this.nodeType}).remove()}),$('select.ui_select[name="days"]').each(function(){$(this).parent("td").attr("style","vertical-align: top !important")}),v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"mailboxes/"&&v___location_path!=v___location_prefix+"/mailboxes/index.cgi"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"mailbox/"&&v___location_path!=v___location_prefix+"/postfix/view_mailq.cgi"||(v___location_file?"list_mail.cgi"==v___location_file&&$('.container-fluid input:not([type="checkbox"]), .container-fluid .ui_form_end_submit, .container-fluid select').addClass("heighter-34").removeClass("heighter-28").css("margin-bottom","-1px"):($(".ui_form_end_submit").css("margin-top","0"),$("input#user").addClass("heighter-34 vertical-align-top")),$("body").find("form").removeAttr("onsubmit"),$header_tables=$("body").find('input[name="from"]').parents(".tab-pane").parent("td"),$header_tables.children("table").hide(),$.each($header_tables.find("input, textarea, select"),function(){$(this).hasClass("ui_select")||$(this).attr("onclick")||"checkbox"==$(this).attr("type")||"submit"==$(this).attr("type")||$(this).attr("style","width: 60%").addClass("inline-block"),$(this).attr("onclick")&&$(this).addClass("inline-block")}),onbeforeunload=null,1==$("body").find('input.ui_hidden[name="html_edit"]').val()&&editor_html_init(["body",2,!1,"edit_web"]),$("body").find('input[name="from"]').parents(".tab-pane").prev("table").remove(),$("body").find('input[name="from"]').parents(".tab-pane ").parent("td").find("div, table").each(function(e,t){$(this).find(".col_label").css("width","20%"),$(this).find('input[name="subject"]').parent("td").prev("td").find("b").attr("style","font-size: 13px !important"),$(this).find('input[name="subject"]').parents("table").show(),$(this).find('input[name="subject"]').parent("td").find(".submitter").remove()}),$editor_mode_link_container=$("body").find('textarea[id="body"]').parents("table").find("thead > tr > th:last-child"),$editor_mode_link=$editor_mode_link_container.find("a").addClass("editor_mode_link"),$editor_mode_link_container.parent("tr").find("th:first-child").append($editor_mode_link),$editor_mode_link_container.remove(),$editor_mode_link_button=$("body").find('textarea[id="body"]').parents("table").find(".editor_mode_link"),$editor_mode_link_button_state=!!$editor_mode_link_button.attr("href")&&$editor_mode_link_button.attr("href").indexOf("html=0"),$editor_mode_link_button.attr("title",$editor_mode_link_button.text()).addClass("editor_mode_link_button pull-right btn btn-sm "+(-1==$editor_mode_link_button_state?"btn-success":"btn-primary")).html(' '),$("body").find('textarea[id="body"]').parents("table").find("thead > tr > th").find("b").css("padding-left","45px"),$(".editor_mode_link_button").tooltip(),$fileinput_container=$("body").find('a[onclick="return add_ss_attachment()"]'),$fileinput_container.parent("td").contents().filter(function(){return 3==this.nodeType}).remove(),$fileinput_container.remove(),$fileinput_add_another_attachment=$("body").find('a[onclick="return add_attachment()"]'),$fileinput_add_another_attachment.addClass("btn btn-default"),$fileinput_add_another_attachment.text($fileinput_add_another_attachment.text().replace(/\.$/,"")),(v___location_path.indexOf("view_mail.cgi")>-1||v___location_path.indexOf("view_mailq.cgi")>-1)&&($table_title_header_container=$(".ui_form").find("div.table-responsive").first().find(".table-title"),$table_title_links_container=$table_title_header_container.next(),$table_title_links_container.contents().filter(function(){return 3==this.nodeType}).remove(),$table_title_links_container.find("a").addClass("table_title_links pull-right btn btn-info btn-tiny"),$table_title_links=$table_title_links_container.html(),$table_title_header_container.append($table_title_links),$table_title_links_container.remove(),$table_title_header_container_text_padding=35,$(".table-title > a.table_title_links").each(function(){$table_title_header_container_text_padding=v___location_path==v___location_prefix+"/postfix/view_mailq.cgi"?120:235}),$(".table_title_links_container a").each(function(){$table_title_header_container_text_padding+=$(this).width()}),$table_title_header_container.find("b").css("padding-left",$table_title_header_container_text_padding),$table_title_second_container=$(".ui_form").find("div.table-responsive").first().next("div.table-responsive").find("table:first-child"),$table_title_header_container=$(".ui_form").find("div.table-responsive").first().next("div.table-responsive").find("th:first-child"),$table_title_links_container=$(".ui_form").find("div.table-responsive").first().next("div.table-responsive").find("th:last-child"),2==$(".ui_form").find("div.table-responsive").first().next("div.table-responsive").find("th").length&&$table_title_links_container.remove(),$table_title_links_container.find("a").addClass("table_title_links pull-right btn btn-tiny"),$table_title_links_container.find("a").attr("href")&&$table_title_links_container.find("a").attr("href").indexOf("body=1")>-1?$table_title_links_container.find("a").addClass("btn-info"):$table_title_links_container.find("a").addClass("btn-warning"),$table_title_links=$table_title_links_container.html(),$table_title_header_container.append($table_title_links),$table_title_header_container_text_padding=10,$table_title_header_container.find("a").each(function(){$table_title_header_container_text_padding+=$(this).width()}),setTimeout(function(){if($(".ui_form").find("div.table-responsive").first().find("table:first-child").outerWidth()!=$(".ui_form").find("div.table-responsive").first().next("div.table-responsive").find("table:first-child").outerWidth()){var e=parseInt($(".ui_form").find("div.table-responsive").first().find("table:first-child").width()/2);$table_title_second_container.find(".table-title").addClass("left").find("b").css("padding-left",e-175),$table_title_second_container.find(".pull-right").removeClass("pull-right").addClass("pull-left")}$.each($table_title_second_container.find("table"),function(){$(this).removeClass().addClass("clear-formatting"),$.each($(this).find("td.col_value"),function(){$(this).css("background-color","white")})})},30),$table_title_header_container.find("b").css("padding-left",$table_title_header_container_text_padding),$table_title_header_container.find("b")&&$table_title_header_container.find("b").length>1&&$table_title_header_container.find("b:first-child").text()==$table_title_header_container.find("b:last-child").text()&&$table_title_header_container.find("b:last-child").remove()),$("td > a").on("click",function(){$(this).attr("onclick"),$("input[type=file]").each(function(){$(this).parent("a").hasClass("file-input-wrapper")||$(this).bootstrapFileInput()})}),settings_mailbox_slash_delimiter&&$("select.ui_select[name] > option").each(function(e,t){$(t).text($(t).text().replace(/\./g,"/").replace(/\/\//g,"/"))}),$.each($('table td[align="right"], table td[align="left"]'),function(e,t){$(this).attr("style","border: 0 !important;"),$(this).parents("tbody").attr("style","border: 0 !important;"),$(this).parents("table.table-hardcoded.table.table-striped.table-condensed.table-subtable").removeClass("table-hardcoded table table-striped table-condensed table-subtable")}),$.each($("div.table-responsive > table tbody tr td > table.table-hardcoded"),function(e,t){$(this).find("tr > td.col_label > b").removeAttr("style"),$(this).removeClass("table table-condensed")}),$.each($("div.table-responsive > table tbody tr td > div.tab-pane"),function(e,t){$(this).find("table").removeClass("table"),$(this).parents("div.table-responsive").find("table").removeClass("table-striped table-subtable")}),$.each($('div.table-responsive > table tbody tr td > div.tab-pane .col_value > input[type="button"][onclick^="ifield"]'),function(e,t){$(this).attr("style","margin-left: 0; margin-bottom: 3px !important")})),$.each($(".barchart"),function(){$(this).find("img").attr("height",4)}),$('#extended_sysinfo-1 div[aria-labelledby^="updates-"] div.panel-body div.table-responsive table.table.table-striped.table-condensed').next("table.ui_form_end_buttons").css("margin-top","10px"),$('#extended_sysinfo-1 div[aria-labelledby^="updates-"] div.panel-body div.table-responsive table.table.table-striped.table-condensed').next("table.ui_form_end_buttons").css("margin-top","10px").prev("table.table-condensed").prev("table.table.table-striped").addClass("invisible"),$("a").each(function(){$(this).attr("href")||$(this).addClass("no_effect")}),v___location_path!=v___location_prefix+"/virtual-server/domain_form.cgi"&&v___location_path!=v___location_prefix+"/server-manager/list_images.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/bwgraph.cgi"||($(".panel-body > a").each(function(){$(this).addClass("btn btn-inverse btn-tiny ui_link_replaced").removeClass("ui_link"),$(this).text($(this).text().replace(/\.$/,""))}),$.each($('.panel-body:contains("|")'),function(){$(this).contents().filter(function(){return 3==this.nodeType}).wrap('')}),$.each($(".btn-automated"),function(){$(this).text().replace(/[\t\n]+/g," ").length<4?$(this).remove():($(this).text($(this).text().replace("|","").replace("|","").replace(/(?:\r\n|\r|\n)/g,"")),$(this).prev().is("img")&&$(this).removeClass().addClass("margined-left-3"))}),$(".panel-body > b").css("margin-right","7px"),v___location_path==v___location_prefix+"/virtual-server/domain_form.cgi"&&$.each($(".btn-automated, .ui_link_replaced"),function(e,t){0==e&&$(this).html(' '+$(this).text()),1==e&&$(this).html(' '+$(this).text()),2==e&&$(this).html(' '+$(this).text()),3==e&&$(this).html(' '+$(this).text())})),v___location_path==v___location_prefix+"/server-manager/edit_serv.cgi"&&setTimeout(function(){$('.opener_container .table-hardcoded .col_value a[href^="edit_serv.cgi"]').each(function(){$(this).addClass("btn btn-inverse btn-xxs ui_link_replaced margined-right--2").removeClass("ui_link").attr("style","margin-top: 0 !important"),$(this).text($(this).text().replace(/\.$/,""))}),$.each($('.opener_container .table-hardcoded .col_value:contains("|")'),function(){$(this).find('a[href^="edit_serv.cgi"]').length&&$(this).contents().filter(function(){return 3==this.nodeType}).wrap(''),$.each($(".btn-automated"),function(){$(this).text().length<4?$(this).remove():$(this).text($(this).text().replace("|","").replace("|","").replace(/(?:\r\n|\r|\n)/g,""))})})},20),$.each($("input:not(.ui_upload)"),function(){"28px"==$(this).css("height")&&$(this).prev("input").addClass("heighter-28")}),$.each($(".container-fluid select"),function(){"34px"==$(this).next("input").css("height")&&$(this).addClass("heighter-34")}),$.each($(".container-fluid .ui_buttons_row input, .container-fluid .ui_buttons_row select"),function(){$(this).addClass("heighter-34")}),Core.curModuleFile("gnupg","list_keys.cgi")&&$('.container-fluid input[id="id"]').addClass("heighter-34"),Core.curModuleFile("virtual-server","edit_script.cgi")){var d=$('input[name="version"]');d.length&&d.attr("style",d.attr("style").replace("n: middle","n: bottom !important")).addClass("heighter-34")}if($.each($("tr > .ui_form"),function(){$(this).next().next("td").find("input.submitter")&&$(this).next().next("td").find("input.submitter").addClass("heighter-34")}),$.each($("input.heighter-34").next(".file_chooser_button"),function(){$(this).addClass("heighter-34"),$(this).find(".fa.fa-files-o").css("margin-top","0").addClass("vertical-align-middle")}),setTimeout(function(){$.each($(".container-fluid select"),function(){34==$(this).next("input").outerHeight()||34==$(this).prev("input").outerHeight()?$(this).addClass("heighter-34").removeClass("heighter-28"):28!=$(this).next("input").outerHeight()&&28!=$(this).prev("input").outerHeight()||$(this).addClass("heighter-28").removeClass("heighter-34")})},1),Core.curModule("term")){var h=$("iframe");if(h.length){var p=h;p.on("load",function(){p.contents().find("#term").css("width","99.3%").css("height","576px").css("margin-top","4px")}),$(this).next("br").remove().next('input[type="button"]').remove(),$(this).next('input[type="button"]').remove(),$(this).next("p").remove()}}$.each($(".file_chooser_button"),function(){$(this).prev("input").attr("style")&&$(this).prev("input").attr("style").indexOf("max-width: 100%")>-1&&$(this).prev("input").css("max-width","93%")}),v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"sysinfo.cgi"&&1==settings_sysinfo_link_mini&&$(".navigation > li:not('.has-sub')").removeClass("sub_active").find("span.current-large").remove(),$.each($('input[value="..."], input[value=" ..."], input[value=" ..."], input[value="... "], input[value="... "], input[value=" ... "], input[value=" ... "]'),function(){$(this).after(''),$(this).attr("value","")}),$.each($(".file_chooser_button"),function(){$(this).prev("input").css("margin-top","2px").css("margin-bottom","2px")}),$.each($(".file_chooser_button_attached"),function(){$(this).prev('input[type="button"]').prev("input").css("margin-top","2px").css("margin-bottom","2px"),$(this).parents(".ui_buttons_label").length||$(this).parents(".table-subtable").length||$(this).css("margin-top","11px")}),$.each($(".container-fluid .ui_form > .file_chooser_button_attached"),function(){($(this).prev(".heighter-34")&&$(this).prev(".heighter-34").length||$(this).next(".heighter-34")&&$(this).next(".heighter-34").length)&&($(this).css("margin-top","16px"),$(this).prev("input[onclick]").css("width","40px"))}),$.each($('.container-fluid .ui_form[action="init_cache.cgi"] > .file_chooser_button_attached'),function(){($(this).prev(".heighter-34")&&$(this).prev(".heighter-34").length||$(this).next(".heighter-34")&&$(this).next(".heighter-34").length)&&$(this).css("margin-top","14px")}),$.each($(".col_value > .file_chooser_button_attached"),function(){$(this).prev("input[onclick]").css("width","40px").css("margin-left","0")}),$("a.ui_link, .btn").each(function(){if("."==$(this).text().substr(-1)&&!$(this).parent().is("label")){var e="."==$(this).text().substr(-1)&&".."==$(this).text().substr(-2)?2:1;$(this).text($(this).text().substr(0,$(this).text().length-e))}}),v___location_path!=v___location_prefix+"/virtualmin-mailman/"&&v___location_path!=v___location_prefix+"/virtualmin-mailman/index.cgi"||$("input[name^=reset_]").addClass("heighter-28"),v___location_path!=v___location_prefix+"/software/edit_pack.cgi"&&v___location_path!=v___location_prefix+"/apache/show.cgi"&&v___location_path!=v___location_prefix+"/proc/index_search.cgi"||$.each($(".container-fluid .panel-body .btn:not(.file_chooser_button)"),function(){$(this).removeClass("heighter-28").addClass("heighter-34")}),v___location_path!=v___location_prefix+"/virtualmin-git/"&&v___location_path!=v___location_prefix+"/virtualmin-git/index.cgi"||$.each($(".btn.btn-default.submitter.ui_submit"),function(){$(this).removeClass("heighter-28").addClass("heighter-28")}),v___location_path!=v___location_prefix+"/apache/edit_global.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_newlinks.cgi"&&v___location_path!=v___location_prefix+"/virtualmin-awstats/"&&v___location_path!=v___location_prefix+"/postfix/master.cgi"||$.each($(".container-fluid .panel-body .ui_link_replaced"),function(){$(this).not(".btn-xxs").removeClass("btn-tiny").addClass("heighter-34")}),v___location_path!=v___location_prefix+"/virtualmin-init/"&&v___location_path!=v___location_prefix+"/virtualmin-dav/list_shares.cgi"&&v___location_path!=v___location_prefix+"/squid/edit_acl.cgi"&&v___location_path!=v___location_prefix+"/virtualmin-nginx/"&&v___location_path!=v___location_prefix+"/fdisk/edit_disk.cgi"&&v___location_path!=v___location_prefix+"/server-manager/edit_newlinks.cgi"&&v___location_directory_unslashed_trail_slashed!=v___location_prefix_unslashed_trail_slashed+"backup-config/"||$.each($(".container-fluid .panel-body .ui_link_re-replaced"),function(){$(this).addClass("btn-tiny").removeClass("heighter-34")}),v___location_path==v___location_prefix+"/pam/"&&$(".panel-body > a.ui_link").addClass("btn-tiny"),v___location_path!=v___location_prefix+"/syslog/"&&v___location_path!=v___location_prefix+"/syslog/index.cgi"||$.each($(".btn"),function(){$(this).removeClass("btn-tiny")}),v___location_path!=v___location_prefix+"/software/"&&v___location_path!=v___location_prefix+"/software/index.cgi"||($(".container-fluid input#search").addClass("heighter-34 vertical-align-top"),$('form[action="file_info.cgi"] > .ui_form_end_submit').addClass("heighter-28 heighter-28-force margined-top-0")),v___location_path==v___location_prefix+"/software/tree.cgi"&&$(".ui_link").addClass("margined-top-10"),v___location_path==v___location_prefix+"/syslog/save_log.cgi"&&($.each($(".container-fluid .heighter-34"),function(){$(this).removeClass("heighter-34").addClass("heighter-28")}),$("form:first").next("script").next("br").remove(),$("form:last").css("margin-top","5px")),v___location_path==v___location_prefix+"/status/edit_mon.cgi"&&($('td.col_value > table[cellspacing="1"] tbody').attr("style","border: 0 !important;"),$(".opener_trigger:last-child").css("font-size","16px"),$.each($("table.sub_table_container td > font"),function(){$(this).parents("tbody"),$(this).contents().unwrap().wrap(' ')})),v___location_path!=v___location_prefix+"/shell/"&&v___location_path!=v___location_prefix+"/shell/index.cgi"&&v___location_path!=v___location_prefix+"/server-manager/shell.cgi"||($.each($(".container-fluid .btn:not(.btn-link), .container-fluid select, .container-fluid input"),function(){$(this).removeClass("heighter-28").addClass("heighter-34"),$(this).is('input[type="button"]')&&$($(this).addClass("submitter")),$(".form-control.sidebar-search").val()&&$(".form-control.sidebar-search").val().trim().startsWith("!")&&$(".form-control.sidebar-search").val(""),$(".ui_form").find("input.btn.btn-default:first").addClass("btn-success")}),$(".container-fluid input#cmd").focus()),$.each($("input"),function(){"28px"==$(this).css("height")&&"28px"!=$(this).next("input").css("height")&&$(this).is(':not([type="hidden"])')&&$(this).next("input").addClass("heighter-28")}),$.each($(".container-fluid select"),function(){"34px"==$(this).css("height")&&"34px"!=$(this).next("select").css("height")&&$(this).next("select").addClass("heighter-34")}),v___location_path==v___location_prefix+"/cluster-passwd/edit_passwd.cgi"&&$.each($("input + button"),function(e,t){"28px"==$(this).css("height")&&$(this).addClass("heighter-28").css("line-height","12px").css("margin-top","2px")}),v___location.pathname!=v___location_prefix+"/virtual-server/pro/history.cgi"&&v___location.pathname!=v___location_prefix+"/server-manager/bwgraph.cgi"&&v___location.pathname!=v___location_prefix+"/server-manager/history.cgi"&&v___location.pathname!=v___location_prefix+"/server-manager/one_history.cgi"||($("body").find("table.ui_form_end_buttons .btn.btn-default.submitter.ui_submit").addClass("btn-success"),$(".panel-body > table tr td b").each(function(e,t){$(this).addClass("btn btn-success btn-tiny ui_link_replaced")}),$(".panel-body > table a").each(function(e,t){$(this).addClass("btn btn-inverse btn-tiny ui_link_replaced").removeClass("ui_link"),$(this).text($(this).text().replace(/\.$/,"")),$(this).text()&&$(this).text().indexOf("<<")>-1&&($(this).text($(this).text().replace(/\<\
    '+$(this).text())),$(this).text()&&$(this).text().indexOf(">>")>-1&&($(this).text($(this).text().replace(/\>\>/,"")),$(this).html($(this).text()+' ')),$(this).parent().contents().filter(function(){return 3==this.nodeType}).remove(),0===$(this).attr("href").indexOf("edit_cmd.cgi?new")&&$(this).html(' '+$(this).text()),0===$(this).attr("href").indexOf("edit_file.cgi?new")&&$(this).html(' '+$(this).text()),0===$(this).attr("href").indexOf("edit_sql.cgi?new")&&$(this).html(' '+$(this).text()),$(this).parents("table").css("margin-bottom","3px")}),$("#history").next("table.ui_grid_table").next("a").length?($("#history").next("table").next("a").addClass("btn btn-info btn-tiny ui_link_replaced").attr("style","margin-top: 4px !important").attr("target","_blank"),$("#history").next("table").next("a").text($("#history").next("table").next("a").text().replace(/\.\.$/,"")),$("#history").next("table").next("a").html(' '+$("#history").next("table").next("a").text())):($("#history").next("a").addClass("btn btn-info btn-tiny ui_link_replaced").attr("style","margin-top: 4px !important").attr("target","_blank"),$("#history").next("a").text($("#history").next("a").text().replace(/\.\.$/,"")),$("#history").next("a").html(' '+$("#history").next("a").text())),$(".panel-body > hr + b").attr("style","font-size: 16px; font-weight: normal;"),$(".panel-body > hr + b").text($(".panel-body > hr + b").text().replace(/\:$/,"")),onLoad()),$.each($('tr > td[valign="top"][width="50%"]'),function(){$(this).attr("style","vertical-align: top !important; "+$(this).attr("style"))}),$("body table").each(function(e,t){$(this);$(t).hasClass("table")||$(t).hasClass("header")||$(t).hasClass("ui_form_end_buttons")||$(t).hasClass("ui_table")||($(t).addClass("table-hardcoded"),$t_uri_usermin&&($(t).addClass("table-subtable"),$(t).find("tr.thead").length||$(t).hasClass("sub_table_container table-hardcoded table-subtable")?($(t).find("tr.thead").attr("style","border: 1px solid #efefef"),$(t).attr("style","border: 1px solid #efefef")):$(t).attr("style")&&v___location_path.indexOf("view_mail.cgi")>-1||$(t).attr("style","margin-top: 10px;")))}),v___location_path!=v___location_prefix+"/bind8/"&&v___location_path!=v___location_prefix+"/postfix/virtual.cgi"||table_data_init($(".table.table-striped.table-hover.table-condensed")),v___location_path==v___location_prefix+"/virtual-server/list_scripts.cgi"&&table_data_init($("#att_existing > form > table.table.table-striped.table-condensed")),v___location_path==v___location_prefix+"/virtual-server/edit_newscripts.cgi"&&table_data_init($("#att_summary > table.table.table-striped.table-condensed")),v___location_path!=v___location_prefix+"/server-manager/index.cgi"&&v___location_path!=v___location_prefix+"/virtualmin-htpasswd/index.cgi"||table_data_init($("body > div > div > div.panel-body > form > table.table.table-striped.table-condensed")),($('body[class*="status"]').length&&!$('body[class*="smart-status"]').length&&!v___location_file||v___location_path==v___location_prefix+"/servers/"||v___location_path==v___location_prefix+"/servers/index.cgi"||v___location_path==v___location_prefix+"/webminlog/search.cgi")&&table_data_init($("table.table-striped.table-condensed")),$('body[class*="ldap-useradmin"]').length&&table_data_init($("form > table.table.table-striped.table-condensed")),v___location_path==v___location_prefix+"/virtual-server/list_sched.cgi"&&table_data_init($(".table.table-striped.table-hover.table-condensed"),!1,!1,{orderable:!1,targets:[0,-1]}),v___location_path!=v___location_prefix+"/servers/"&&v___location_path!=v___location_prefix+"/servers/index.cgi"||($(".ui_checked_columns td table tr td").find('a.ui_link[href*="edit_serv.cgi"]').addClass("margined-left-4 label label-sm label-primary hidden").html(''),$(".ui_checked_columns").hover(function(){$(this).find("td table tr a.ui_link.label.hidden").removeClass("hidden")},function(){$(this).find("td table tr a.ui_link.label").addClass("hidden")})),$.each($('table.table.table-striped.table-condensed.dataTable.no-footer > thead > tr[role="row"]:first-child'),function(e,t){$(this).attr("style","border-top: 4px solid #f2f2f2 !important")}),$.each($('button[onclick^="ifield"].btn.btn-default.ui_button'),function(){$(this).addClass("file_chooser_button_emulate")}),$.each($(".file_chooser_button_emulate"),function(){$(this).find(".fa-files-o").length||$(this).append(''),"28px"==$(this).prev("input").css("height")&&$(this).addClass("heighter-28")}),$.each($("label > img"),function(e,t){$(this).attr("style","vertical-align: baseline !important")}),$.each($('select[multiple][name="weekdays"]'),function(){$(this).parents('td[valign="top"], td.td_tag').attr("style","vertical-align: top !important"),$(this).parents('table[width="100%"]').parents(".ui_radio_table.table-hardcoded").css("width","100%")}),$.each($("label").find("br"),function(){$(this).parent("label").prev(".aradio, .acheckbox").attr("style","margin-left: 0 !important;"),$(this).parent("label").next(".aradio, .acheckbox").attr("style","margin-left: 0 !important;")}),$.each($(".table-responsive + .table-responsive + .table-hardcoded td"),function(){$(this).find(".heighter-34").length&&$.each($(".table-responsive + .table-responsive + .table-hardcoded td"),function(){$(this).find(".btn").addClass("heighter-34")})}),v___location_path==v___location_prefix+"/cpan/edit_mod.cgi"&&$('.container-fluid form[action="download.cgi"]').next().next().next().find(".submitter.ui_submit").addClass("heighter-34"),v___location_path!=v___location_prefix+"/cpan/"&&v___location_path!=v___location_prefix+"/cpan/index.cgi"||$('input[name="cpan"]').next("button").append('').attr("style","width: 40px; height: 28px; vertical-align:middle !important; margin-top:2px; margin-bottom:2px;"),$("form").find(".icons-row:not(.inline-row)").length&&($("form").find(".icons-row").addClass("_processed_"),$("form").find(".icons-row").css("border-top","1px solid #efefef").css("border-bottom","1px solid #efefef"),$("form").find(".icons-row").find(".icons-container").addClass("icons-container-stretched"));function f(){$("body").find(".icons-row:not(._processed_):not(.inline-row)").css({"padding-top":"8px","padding-bottom":"8px"}),$("body").find(".icons-row:not(._processed_):not(.inline-row)").css("border-top","1px solid #efefef").css("border-bottom","1px solid #efefef")}function g(){$("body").find(".icons-row:not(._processed_):not(.inline-row)").css({"padding-top":"8px"}),$("body").find(".icons-row:not(._processed_):not(.inline-row)").css("border-top","1px solid #efefef")}function u(){$("body").find(".icons-row:not(._processed_):not(.inline-row)").css({"padding-bottom":"6px"}),$("body").find(".icons-row:not(._processed_):not(.inline-row)").css("border-bottom","1px solid #efefef")}v___location_path!=v___location_prefix+"/lvm/"&&v___location_path!=v___location_prefix+"/virtualmin-support/"&&v___location_path!=v___location_prefix+"/proftpd/virt_index.cgi"&&v___location_path!=v___location_prefix+"/dhcpd/"&&v___location_path!=v___location_prefix+"/dhcpd/index.cgi"&&v___location_path!=v___location_prefix+"/cluster-usermin/"&&v___location_path!=v___location_prefix+"/cluster-usermin/index.cgi"&&v___location_path!=v___location_prefix+"/cluster-useradmin/"&&v___location_path!=v___location_prefix+"/cluster-useradmin/index.cgi"&&v___location_path!=v___location_prefix+"/cluster-webmin/"&&v___location_path!=v___location_prefix+"/cluster-webmin/index.cgi"||f(),v___location_path!=v___location_prefix+"/proftpd/"&&v___location_path!=v___location_prefix+"/proftpd/index.cgi"&&v___location_path!=v___location_prefix+"/bacula-backup/"&&v___location_path!=v___location_prefix+"/bacula-backup/index.cgi"||g(),v___location_path==v___location_prefix+"//"&&u();if($.each($(".row.icons-row.inline-row"),function(e,t){$(this).find("a.icon_link").contents().filter(function(){return 3==this.nodeType}).remove()}),$.each($(".row.icons-row:not(.inline-row) .icons-container"),function(e,t){$(this).removeAttr("data-title").removeAttr("data-toggle").removeAttr("data-placement").removeAttr("data-container")}),($("body").find(".icons-row > div.icons-container").length||$("body").find(".icons-row > div.small-icons-container").length)&&($.each($(".icons-row .hidden-forged-6"),function(){$(this).find("input").is(":checked")&&$(this).parents('div[class*="icons-container"]').addClass("highlighted")}),$.each($(".hidden-forged-7 > a"),function(){$(this).removeClass(),$(this).parents(".hidden-forged-7").hasClass("hidden-forged-7-small")?($(this).html(' '),$(this).parent().parent().prepend('')):($(this).html(' '),$(this).parent().parent().prepend(''))})),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"virtualmin-registrar/"&&$.each($("td > input "),function(){$(this).parents("table.table-hardcoded").find('form[action="edit.cgi"]').length&&($(this).css("margin-left","5px"),$(this).parent("td").prev("td").find("select").css("margin-left","5px"))}),v___location_path==v___location_prefix+"/cluster-webmin/edit_host.cgi"&&$.each($(".panel-body > .table-hardcoded"),function(){$(this).attr("style","margin-top: 10px !important")}),v___location_path!=v___location_prefix+"/virtual-server/list_scripts.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_newscripts.cgi"||$('form[action="disable_scripts.cgi"] thead + thead tr th, form[action="disable_scripts.cgi"] tbody + thead tr th, form[action="script_form.cgi"] thead + thead tr th, form[action="script_form.cgi"] tbody + thead tr th').attr("colspan","5"),$.each($(".file_chooser_button_attached"),function(e,t){$(this).prev('input[onclick*=".cgi"]')&&$(this).prev('input[onclick*=".cgi"]').css("width","40px")}),!$t_uri_cloudmin||v___location_path!=v___location_prefix+"/server-manager/add_form.cgi"&&v___location_path!=v___location_prefix+"/server-manager/scan_form.cgi"||$.each($("label"),function(){$(this).find("br").remove()}),(v___location_path==v___location_prefix+"/mysql/view_table.cgi"||v___location_path==v___location_prefix+"/postgresql/view_table.cgi")&&$("td.td_tag > table.table-hardcoded")){var m=$("td.td_tag > table.table-hardcoded").parents("table").find("thead").find("tr").find("th").length;$("td.td_tag > table.table-hardcoded").parent("td.td_tag").attr("colspan",m).attr("style","padding: 1px !important;")}if(v___location_path==v___location_prefix+"/virtual-server/backup_form.cgi"&&v___location_href&&v___location_href.indexOf("?sched=")>-1&&($("body > div > div > div.panel-body > form > table:nth-child(4) > tbody > tr:nth-child(2) > td").css("display","table-cell"),setTimeout(function(){$("a[href=\"javascript:hidden_opener('hiddendiv_adddest', 'hiddenopener_adddest')\"]").next().attr("style","").addClass("btn btn-tiny btn-default")},10)),"/config.cgi"===v___location_path&&$("thead tr th.table-title").prepend('  '),$.each($('form[action="save_global.cgi"], form[action="save_iptables.cgi"], form[action="save_domain.cgi"],form[action="domain_setup.cgi"],form[action="mass_create.cgi"],form[action="save_roundrobin.cgi"],form[action="save_alert.cgi"], body.time form[action="apply.cgi"]'),function(){$(this).find(".col_header").removeClass("col_header")}),(check_location_resource("/virtual-server/edit_newchangelog.cgi")||check_location_resource("/server-manager/edit_newchangelog.cgi")||check_location_resource("/shell/")||check_location_resource("/shell/index.cgi")||check_location_resource("/server-manager/shell.cgi"))&&$("td.col_value.col_value").removeClass("col_header"),check_location_resource("/ldap-server/edit_ldif.cgi")&&$("span > input.ui_opt_textbox").unwrap(),v___location_path==v___location_prefix+"/server-manager/gvnc.cgi"&&$("body.server-manager p > object").css("height","100%").parent("p").attr("style","display: block; height: "+parseInt($(window).outerHeight()/1.4)+"px"),v___location_path==v___location_prefix+"/spam/edit_simple.cgi"||v___location_path==v___location_prefix+"/spam/edit_header.cgi"){var v=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:first-child"),b=(A=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:last-child")).find("a");v.append(b),A.remove(),v.find("a").addClass("table_title_links pull-right btn btn-xs btn-grey").attr("style","position: absolute; right: 23px; margin-top: 7px !important;")}if(v___location_path==v___location_prefix+"/server-manager/edit_pass.cgi"&&$('form[action="save_pass.cgi"]').find('a[href*="edit_pass.cgi?"]:not(.btn)').length){var v=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:first-child"),b=(A=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:last-child")).find("a");v.append(b),A.remove(),v.find("a").addClass("table_title_links pull-right btn btn-info btn-tiny").attr("style","position: absolute; right: 20px; margin-top: 3px !important;")}if($('.panel-default + a[href="/virtual-server/"]').attr("href","/virtual-server/index.cgi"),$('.panel-default + a[href="/server-manager/"]').attr("href","/server-manager/index.cgi"),v___location_directory_trail_slashed==v___location_prefix+"/virtual-server/"?$("#headln2l > a:first-child .fa-arrow-left").parent("a").attr("href","/virtual-server/index.cgi"):v___location_directory_trail_slashed==v___location_prefix+"/server-manager/"&&$("#headln2l > a:first-child .fa-arrow-left").parent("a").attr("href","/server-manager/index.cgi"),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"acl/"){$("body.acl > div > div > div.panel-body > form > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td > table > tbody").attr("style","border: 0 !important");var x=$("br").next(".ui_grid_table.table-hardcoded").find("tbody").attr("style","border: 1px solid #"+(v___theme_night_mode_enabled||v___theme_night_mode?"393b3f":"eee")+" !important").parent("table").prev("br").prev("b");$("br").next(".ui_grid_table.table-hardcoded").css("margin-bottom","3px"),$.each(x,function(e,t){""==$(this).text()&&($(this).next("br").remove(),$(this).remove())}),x.attr("style","margin-bottom: -3px !important").next("br").remove()}$('body[class*="bandwidth"]').length&&$(".fa.fa-calendar.file_chooser_button_attached").attr("style","font-size: 11px; margin-top: 9px !important; pointer-events: none; margin-left: -27px !important;"),v___location_path!=v___location_prefix+"/mysql/exec_form.cgi"&&v___location_path!=v___location_prefix+"/postgresql/exec_form.cgi"||($('select[name="old"], input[name="clear"], select[name="charset"]').removeClass("heighter-34").addClass("heighter-28"),$('input[name="clear"]').attr("style","margin-bottom: 3px !important;"),$('select[name="old"]').attr("style","margin-bottom: 3px !important; margin-right: 0 !important;")),"config.cgi"!=v___location_file&&"uconfig.cgi"!=v___location_file||"mysql"!=v___location_query&&"postgresql"!=v___location_query||$('input[name="style"]').parents("td.col_value").parent("tr").after('\t\t\t\t\t'+theme_language("theme_xhred_xsql_fit_content_screen_height")+'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"),$(".ui_post_header.hidden").html()&&$(".ui_post_header.hidden").html().length>5&&($("#headln2c").append(""+$(".ui_post_header.hidden").html()+""),$(".ui_post_header.hidden").remove())}if(v___location_path&&v___location_path.indexOf("/sysinfo.cgi")>-1){if(!e){$('#status_services-status-collapse .tr_tag .td_tag > img[src*="images/up.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/check.png").css("margin-right","3px").attr("title",$.trim(i.parent(".td_tag").text()))}),$('#status_services-status-collapse .tr_tag .td_tag > img[src*="images/down.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/cross.png").css("margin-right","3px").attr("title",$.trim(i.parent(".td_tag").text()))}),$('#status_services-status-collapse .tr_tag .td_tag > img[src*="images/not.gif"]:not(".ui_icon_protected")').each(function(e,t){var i=$(this);$(t).attr("src",v___location_prefix+"/images/not.png").css("margin-right","3px").attr("title",$.trim(i.parent(".td_tag").text()))}),$.each($(".piechart"),function(){isNaN($(this).data("percent"))&&$(this).parents(".text-center").remove()}).promise().done(function(){var e=$("span[data-charts]"),t='div[class^="col-md-"]',i=e.parents(".row").find(t).length,a=12/i,n=2===i?"3":"1"===i?"6":"",a=n||a;$.each(e.parents(".row"),function(e,n){if($(this).find(t).removeClass().addClass("col-md-"+(2===i?6:a)+" col-md-"+1.5*a+" col-xs-"+1.5*a+" col-xs-"+2*a+" text-center xx"),3===i){$(this).find(t).last().removeClass("col-xs-6 col-xs-8").addClass("col-xs-12")}})});$(".__page .panel-default:not(#system-status)").sort(function(e,t){return $(e).data("sorter")>$(t).data("sorter")?1:-1}).appendTo("#extended_sysinfo-1.panel-group")}time.tictac(1)}if(!e){if(v___location_path==v___location_prefix+"/virtual-server/edit_phpmode.cgi"&&$("#hiddendiv_phpinfo table tbody tr").css("border","1px solid #"+(v___theme_night_mode_enabled?"393b3f":"eee")),$.each($('a[href*="showpass.cgi?"][onclick]'),function(){$(this).html('').css("color","#555")}),v___location_path==v___location_prefix+"/webmin/edit_startpage.cgi"&&($('select[name="deftab"]').parents("td.col_value").parent("tr").hide(),$('select[name="gotomodule"] option').each(function(){("virtual-server"==$(this).val()||"server-manager"==$(this).val())&&$(this).remove()})),v___location_path!=v___location_prefix+"/webmin/edit_ui.cgi"&&v___location_path!=v___location_prefix+"/usermin/edit_ui.cgi"||($('select[name*="sysinfo"], input[name*="sizefile_def"], input[name*="sizeuser_def"], input[name*="sizemodule_def"], input[name*="sizeusers_def"], input[name*="sizemodules_w"], input[name*="cs_link_def"], input[name*="cs_header_def"], input[name*="cs_table_def"], input[name*="cs_text_def"], input[name*="cs_page_def"], input[name*="width_def"], input[name*="height_def"], input[name*="sizedate_def"], input[name*="texttitles"]').parents("td.col_value").parent("tr").addClass("hidden"),$(".sub_table_container tr td.no-border").parent("tr").addClass("hidden")),(check_location_resource("/config.cgi?virtual-server")||check_location_resource("/config.cgi?server-manager"))&&$('input[name="theme_image"], input[name="theme_link"], input[name="theme_alt"]').parents("td.col_value").parent("tr").hide(),v___location_path==v___location_prefix+"/virtual-server/edit_resel.cgi"&&$('input[name="logo"][id="logo"], input[name="link"]').parents("td.col_value").parent("tr").hide(),v___location_path==v___location_prefix+"/virtual-server/edit_newfeatures.cgi"&&($('.container-fluid tr td:last-child label:contains("|")').replaceText(/\|/gi,""),$(".container-fluid td a.ui_link").addClass("ui_link_replaced btn btn-info btn-xxs").removeClass("heighter-34").removeClass("ui_link").prepend('')),$("#headln2l .btn .fa-arrow-left").length){$("body").attr("class")&&$("body").attr("class").indexOf(v___module_file_manager)>-1||$("#headln2l .btn .fa-arrow-left").parent("a").attr("href",$("#headln2l .btn .fa-arrow-left").parent("a").attr("href").replace("index.cgi",""));var y=URI(v___location);v___location_file=y.filename()}$("#headln2r, #headln2l").prepend('
    ').append("
    "),$("#headln2r a").detach().appendTo("#headln2r .btn-group"),$("#headln2l a").detach().appendTo("#headln2l .btn-group"),$.each($(".ui_form_end_submit"),function(){if(v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"proc/edit_proc.cgi"&&"edit_dbase.cgi"!=v___location_file&&"edit_pam.cgi"!=v___location_file&&"list_records.cgi"!=v___location_file&&!Core.curModule("mailbox")&&!Core.curModule("mailboxes")){var e=$(this).parent().find(".ui_form_end_submit");!e.parents(".btn-group").length&&e.length>1&&$(this).parent().find(".ui_form_end_submit, .ui_form_end_submit + input").wrapAll('
    ')}}).promise().done(function(){$.each($(".end_submits"),function(e,t){($(this).prev(".heighter-28").length||"28px"==$(this).prev("input, select").css("height"))&&$(this).find(".ui_form_end_submit").addClass("heighter-28")})}),$.each($(".btn-group").find("span"),function(){$(this).not("[class]").length&&!$.trim($(this).text()).length&&$(this).remove()}),2===$(".panel-default").nextAll("a.btn.btn-primary").length&&$(".panel-default").next("a.btn.btn-primary").find(".fa.fa-arrow-left").removeClass("fa-arrow-left").addClass("fa-arrow-circle-o-left"),3===$(".panel-default").nextAll("a.btn.btn-primary").length&&($(".panel-default").next("a.btn.btn-primary").next("a.btn.btn-primary").find(".fa.fa-arrow-left").removeClass("fa-arrow-left").addClass("fa-arrow-circle-left"),$(".panel-default").next("a.btn.btn-primary").find(".fa.fa-arrow-left").removeClass("fa-arrow-left").addClass("fa-arrow-circle-o-left")),v___location_path==v___location_prefix+"/init/reboot.cgi"&&$("input.btn-success").removeClass("btn-success").addClass("btn-warning"),v___location_path==v___location_prefix+"/init/shutdown.cgi"&&$("input.btn-success").removeClass("btn-success").addClass("btn-danger"),v___available_navigation||page_display(),$(".dataTable .ui_checked_checkbox").parent("tr").parent("tbody").prev("thead").find("th:first-child").addClass("opacity-0 pointer-events-none"),$("table tr.thead td").addClass("tdhead"),(Core.curModuleFile("virtual-server","edit_newchroot.cgi")||Core.curModuleFile("virtual-server","edit_newglobal.cgi")||Core.curModuleFile("virtual-server","edit_newshells.cgi")||Core.curModuleFile("virtual-server","edit_newfields.cgi")||Core.curModuleFile("server-manager","edit_docker.cgi")||Core.curModuleFile("server-manager","edit_vserver.cgi")||Core.curModuleFile("server-manager","edit_zone.cgi")||Core.curModuleFile("server-manager","edit_openvz.cgi")||Core.curModuleFile("server-manager","list_locations.cgi")||Core.curModuleFile("server-manager","edit_lxc.cgi")||Core.curModuleFile("server-manager","list_ips.cgi")||$('body[class*="bind8"]').length&&v___location_file||$('body[class*="status"]').length&&"edit_mon.cgi"==v___location_file||$('body[class*="custom"]').length&&"edit_sql.cgi"==v___location_file||$('body[class*="custom"]').length&&"edit_cmd.cgi"==v___location_file||$('body[class*="custom"]').length&&"edit_file.cgi"==v___location_file)&&$(".table").removeClass("table-hover");var w=$(".fa-toggle-switch-off").parent("button.btn-default");1===w.length&&"1"==w.parent("td").find('input[type="radio"]:checked').val()&&w.find(".fa-toggle-switch-off").addClass("fa-toggle-switch").removeClass("fa-toggle-switch-off"),w.parents("td").addClass("vertical-align-bottom");var k=$('form[action*="manual"] > select[name="file"], form[action*="manual.cgi"] > select[name="manual"], form[action*="edit_"] > select[name="file"]');k.length&&(k.addClass("heighter-34"),$('form[action*="manual"], form[action*="edit_"]').css("margin-bottom","2px")),Core.curModule("firewalld")&&($("select#zone").addClass("heighter-34"),$('form[action="save_ifaces.cgi"] button').addClass("heighter-28-force")),$('body[class*="proftpd"] .table-hardcoded tr td > input + input.btn.btn-default').removeClass("heighter-28").addClass("heighter-34").prev("input").addClass("heighter-34"),$('body[class*="proftpd"] form[action="find_ftpaccess.cgi"] > input:first-child').removeClass("heighter-34").addClass("heighter-28"),"edit_simple.cgi"==v___location_file&&$('body[class*="spam"]').length&&$("tr td").contents().filter(function(){return 3==this.nodeType}).remove(),"edit_awl.cgi"==v___location_file&&$('body[class*="spam"]').length&&$('input[name="user"]').next("input").addBack().addClass("heighter-34"),Core.curModuleFile("usermin","list_sessions.cgi")&&$('.container-fluid #user, .container-fluid input[type="button"]').addClass("heighter-34"),(Core.curModuleFile("htaccess-htpasswd","")||Core.curModuleFile("htaccess-htpasswd","index.cgi"))&&($("#search, .file_chooser_button").addClass("heighter-34").css("margin-bottom","-1px"),$("#search").css("margin-top","0")),(Core.curModuleFile("mailboxes","")||Core.curModuleFile("mailboxes","index.cgi"))&&$("#user, .file_chooser_button").addClass("heighter-34 vertical-align-middle").css("margin-bottom","-1px"),Core.curModuleFile("mailboxes","list_mail.cgi")&&$("#mfolder1, #mfolder2").addClass("heighter-34").css("margin-bottom","-1px").css("margin-top","-1px"),Core.curModuleFile("quota","list_users.cgi")&&$("#user, #user + input").addClass("heighter-34"),Core.curModuleFile("quota","list_groups.cgi")&&$("#group, #group + input").addClass("heighter-34"),(Core.curModuleFile("apache","htaccess.cgi")||Core.curModuleFile("virtualmin-registrar","index.cgi")||Core.curModuleFile("virtualmin-registrar",""))&&$(".ui_form_end_submit").addClass("heighter-28-force");var C=$('form:not([action="save_log.cgi"]) .table-responsive .table .sub_table_container .table tbody tr td > select,\t\t\t\t\t\t\t form:not([action="save_log.cgi"], [action="save_net.cgi"]) .table-responsive .table .sub_table_container .table tbody tr td > input,\t\t\t\t\t\t\t form:not([action="save_user.cgi"], [action="save_group.cgi"]) .table td.opener_container td.col_value table tbody tr td > select,\t\t\t\t\t\t\t form:not([action="save_user.cgi"], [action="save_group.cgi"]) .table td.opener_container td.col_value table tbody tr td > input,\t\t\t\t\t\t\t form[action="save_newglobal.cgi"] > table tbody tr td input,\t\t\t\t\t\t\t form[action="save_newfields.cgi"] > table tbody tr td input,\t\t\t\t\t\t\t form[action="save_newfields.cgi"] > table tbody tr td select,\t\t\t\t\t\t\t form[action="save_newshells.cgi"] > table tbody tr td select,\t\t\t\t\t\t\t form[action="save_newshells.cgi"] > table tbody tr td input,\t\t\t\t\t\t\t form[action="save_linkcats.cgi"] > table tbody tr td input,\t\t\t\t\t\t\t form[action="save_gen.cgi"] > table tbody tr td input\t\t\t\t\t\t\t ');if($.each(C,function(e,t){$(this).parent().find("input[data-mmclick]").length||$(this).parent().find("button[data-mmclick]").length||$(this).parent().find('input[onclick*="window.open"]').length||$(this).parent().find('button[onclick*="window.open"]').length||($(this).prev(".awobject").length?$(this).css("width","auto"):1==$(this).parent().find('input:not([type="checkbox"], [type="radio"]), select').length?$(this).css("width","100%").css("min-width","100%"):2==$(this).parent().find('input:not([type="checkbox"], [type="radio"]), select').length&&($(this).parent().find("input, select").first().css("width","39%"),$(this).parent().find("input, select").last().css("width","60%").css("float","right")))}),Core.curModuleFile("virtual-server","edit_newstyles.cgi")?$('a[onclick^="window.open(\\"thumb_style.cgi?"]').html('').addClass("btn btn-default btn-xxs margined-top--3"):Core.curModule("virtual-server")&&$('a[onclick^="window.open(\\"thumb_style.cgi?"]').html('').addClass("btn btn-default heighter-28-force"),Core.curModuleFile("virtual-server","edit_html.cgi")){$('script:contains("xinha")').remove(),$('.ui_form_end_submit:not([name="create"], [name="cancel"], [name="save"], [name="delete"])').addClass("heighter-28-force");var O=-1!==v___location_query.indexOf("editok")||-1!==v___location_query.indexOf("createok"),T=-1!==v___location_query.indexOf("textok");O&&$("#body").length?($("#editok").removeClass("btn-default").addClass("btn-grey"),$("#body").css("display","none"),$("hr + b").addClass("hidden"),$("#body").after('
    '),editor_html_init(["body",2,!0,"edit_web"])):T&&($("#textok").removeClass("btn-default").addClass("btn-grey"),editor_init_check()&&editor_init($("textarea"),!1,!1,"static",!1,!0,!1,e)),$(".ui_form_end_submit").click(function(){set_onbeforeunload_status(0,0)}),$("input:file").change(function(){var e=$(this);setTimeout(function(){$('form[action*="upload_html.cgi"]').append(e)},500)})}var S=' body button[onclick*="window.open"][onclick*="choose"][onclick*="chooser.cgi"]:not([onclick*="_chooser.cgi"]), body input[onclick*="window.open"][onclick*="choose"][onclick*="chooser.cgi"]:not([onclick*="_chooser.cgi"]), body button[onclick*="window.open"][onclick*="choose"][onclick*="standard_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="standard_chooser.cgi"], body button[onclick*="window.open"][onclick*="choose"][onclick*="third_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="third_chooser.cgi"], body button[onclick*="window.open"][onclick*="choose"][onclick*="user_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="user_chooser.cgi"], body button[onclick*="window.open"][onclick*="choose"][onclick*="group_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="group_chooser.cgi"], body button[onclick*="window.open"][onclick*="choose"][onclick*="my_group_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="my_group_chooser.cgi"], body button[onclick*="window.open"][onclick*="choose"][onclick*="module_chooser.cgi"], body input[onclick*="window.open"][onclick*="choose"][onclick*="module_chooser.cgi"] ';if($(S).length&&$(S).each(function(){$(this).attr("data-mmclick",$(this).attr("onclick")).removeAttr("onclick"),chooser_get_target($(this),0).length&&$(this).css("margin-left","-8px")}),(Core.curModuleFile("virtualmin-nginx","")||Core.curModuleFile("virtualmin-awstats","")||Core.curModuleFile("fdisk","edit_disk.cgi")||Core.curModuleFile("virtual-server","edit_newlinks.cgi")||Core.curModuleFile("virtualmin-dav","list_shares.cgi")||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"pam/"&&!v___location_file||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"syslog/"&&!v___location_file||v___location_path==v___location_prefix+"/postfix/master.cgi")&&setTimeout(function(){var e=$('.panel-body > .ui_link, .panel-body > .ui_link_replaced,\t\t\t\t\t body[data-uri*="virtualmin-awstats"] .panel-body > form > .ui_link_replaced,\t\t\t\t\t body[data-uri*="edit_disk.cgi"] .panel-body p > a.ui_link_replaced,\t\t\t\t\t body[data-uri*="edit_newlinks.cgi"] .panel-body > form > .ui_link_replaced,\t\t\t\t\t body[data-uri*="edit_newlinks.cgi"] .panel-body > .ui_emptymsg + p > .ui_link_replaced'),t=$.trim(e.first().text()),i=e.first().attr("href");$("#headln2r .btn-group a").addClass("pull-left").attr("style",""),$("#headln2r .btn-group").prepend('\t\t\t\t\t\t\t\t'),e.next("br").remove(),e.remove()},0),v___theme_night_mode_enabled||v___theme_night_mode){if($(".opener_shown").length>0){var M=$(".opener_container, .opener_container:hidden").find(".ui_grid_table, .ui_grid_table:hidden");M.length&&$.each(M,function(e,t){$(this).parent("td").attr("style","padding: 0 !important")})}if($(".opener_table_style_small").length>0){var I=$(".opener_table_style_small, .opener_table_style_small:hidden").find(".sub_table_container.table-hardcoded, .sub_table_container.table-hardcoded:hidden");I.length&&$.each(I,function(e,t){$(this).parent("td").attr("style","padding: 0 !important"),$(this).find("tbody tr td").attr("style","padding-left: 3px !important; padding-right: 3px !important")})}}if($('html[data-script-name*="webmin/edit_assignment.cgi"] table table tbody tr td, html[data-script-name*="usermin/edit_assignment.cgi"] table table tbody tr td').hover(function(){$(this).is("td:nth-child(1)")||$(this).is("td:nth-child(3)")?$(this).addClass("hl-ow").next("td").addClass("hl-ow"):($(this).is("td:nth-child(2)")||$(this).is("td:nth-child(4)"))&&$(this).addClass("hl-ow").prev("td").addClass("hl-ow")},function(){$(this).removeClass("hl-ow").next("td").removeClass("hl-ow"),$(this).removeClass("hl-ow").prev("td").removeClass("hl-ow")}),Core.curModuleFile("sysstats","display_all.cgi")&&setTimeout(function(){$(".__page").removeClass("progressing"),progress.end(),page_display(),set_onbeforeunload_status(0,1)},600),(Core.curModule("changepass")||Core.curModuleFile("server-manager","edit_pass.cgi")||Core.curModuleFile("virtual-server","list_databases.cgi")||Core.curModuleFile("acl","edit_user.cgi")||Core.curModuleFile("virtual-server","clone_form.cgi")||Core.curModuleFile("virtual-server","edit_user.cgi")||Core.curModuleFile("virtual-server","edit_domain.cgi")||Core.curModuleFile("virtual-server","domain_form.cgi")||Core.curModuleFile("samba","edit_euser.cgi")||Core.curModuleFile("samba","ask_epass.cgi")||Core.curModuleFileQuery("virtualmin-registrar","edit.cgi","registrar=")||Core.curModuleFileQuery("htaccess-htpasswd","edit_user.cgi","new=")||Core.curModuleFileQuery("postgresql","edit_user.cgi","new=")||Core.curModuleFileQuery("mysql","edit_user.cgi","new=")||Core.curModuleFile("useradmin","edit_group.cgi")||Core.curModuleFile("useradmin","edit_user.cgi")||Core.curModuleFileQuery("passwd","edit_passwd.cgi","user="))&&setTimeout(function(){$("#headln2r .btn-group a").addClass("pull-left").attr("style",""),$("#headln2r .btn-group").prepend('\t\t\t\t\t\t\t\t')},0),0==v___user_level&&1==Core.moduleAvailable("status")||(settings_side_slider_enabled=!1,settings_side_slider_enabled=!1,get_server_data("data-slider-fixed","0"),$("#right-side-tabs, .right-side-tabs-toggler").addClass("hidden")),Core.curModuleFile("bind8","edit_zonekey.cgi")&&g__text_breaker($("textarea#ds"),$("#headln2c").find("span[data-sub_title]").text()),Core.curModuleFile("virtual-server","edit_script.cgi")&&$('select[name="version"]').addClass("heighter-34 margined-top-4"),Core.curModuleFile("virtual-server","transfer_form.cgi")&&$('input[name="newttl"]').addClass("heighter-34"),g__line_breaker(Core.curModuleFile("firewall","")||Core.curModuleFile("firewall","index.cgi"),$(".ui_checked_columns td label b"),","),$.each($(".gl-icon-container"),function(e,t){$(this).find("a:first").find("i.fa-edit").length||($(this).find("a:first").prepend(''),$(this).find("a:first").prepend(''))}),Core.curModuleFile("virtual-server","index.cgi")&&$('a[href*="edit_domain.cgi"], a[href*="list_users.cgi"], a[href*="list_aliases.cgi"]').on("click",function(e){var t=URI.parseQuery(URI($(this).attr("href")).query()).dom;t!=$('select[name="dom"]').val()&&get_navigation_menu_virtualmin(t)}),Core.curModuleFile("server-manager","index.cgi")&&$('a[href*="edit_serv.cgi"], a[href*="mass_update_form.cgi"]').on("click",function(e){var t=URI.parseQuery(URI($(this).attr("href")).query()).id;t!=$('select[name="sid"]').val()&&get_navigation_menu_cloudmin(t)}),(Core.curModuleFile("webmin","refresh_modules.cgi")||Test.strContains(v___location_query,"refresh=1"))&&navigation_update(-1),v___location_path==v___location_prefix+"/proc/index_search.cgi"&&$(".col_header").removeClass("col_header"),1==get_server_data("notice")&&(v___theme_updated=1),$('input[type="file"]').bootstrapFileInput(),setTimeout(function(){$.each($(".file-input-wrapper > span"),function(){$(this).html('')})},1),v___module!=v___module_file_manager&&("config.cgi"===v___location_file||"uconfig.cgi"===v___location_file||"settings-user.cgi"===v___location_file)){var j=[];"settings-user.cgi"===v___location_file&&(j=[1,1,0]),page.render.module_config(j)}}if(editor_init_check()&&editor_init($("textarea"),!1,!1,"static",!1,!0,!1,e),viewer_init_check()&&viewer_init(),settings_sysinfo_easypie_charts&&v___location_path==v___location_prefix+"/sysinfo.cgi"){var q=v___theme_night_mode_enabled||v___theme_night_mode?1:0;$("body").find("#system-status").find(".piechart").easyPieChart({barColor:function(e){return e<50?q?"#269373":"#5cb85c":e<85?q?"#c38d40":"#f0ad4e":"#cb3935"},trackColor:q?"#3b424b":"#f8f8f8",scaleColor:q?"#3b424b":"#dfe0e0",size:parseInt(settings_sysinfo_easypie_charts_size),scaleLength:parseInt(settings_sysinfo_easypie_charts_scale),trackWidth:parseInt(settings_sysinfo_easypie_charts_width),lineWidth:0,lineCap:"square",onStep:function(e,t,i){$(this.el).find(".percent").text(Math.round(i))}})}if(((-1===v___location_path.indexOf(".cgi")||-1!==v___location_path.indexOf("link.cgi")||v___location_path==v___location_prefix+"/proc/open_files.cgi"||v___location_path==v___location_prefix+"/webmin/edit_webmincron.cgi"||v___location_path==v___location_prefix+"/postfix/mailq.cgi"||v___location_path==v___location_prefix+"/webmin_search.cgi"||v___location_path==v___location_prefix+"/useradmin/index.cgi"||v___location_path==v___location_prefix+"/quota/list_users.cgi"||v___location_path==v___location_prefix+"/quota/list_groups.cgi"||v___location_path==v___location_prefix+"/init/index.cgi")&&(v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"webmin/"&&-1===v___location_prefix.indexOf("servers/link.cgi")||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"proc/"||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"webmin_search.cgi"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"postfix/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"virtual-server/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"init/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"mount/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"custom/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"quota/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"php-pear/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"fsdump/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"inittab/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"logrotate/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"mailcap/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"cron/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"software/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"syslog/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"useradmin/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"apache/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"webalizer/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"cpan/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"htaccess-htpasswd/"||v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"fdisk/")||Core.curModuleFile("cron","index.cgi")||Core.curModuleFile("ruby-gems","index.cgi")||Core.curModuleFile("postfix","master.cgi")||Core.curModuleFile("fail2ban","list_filters.cgi")||Core.curModuleFile("fail2ban","list_actions.cgi")||Core.curModuleFile("fail2ban","list_jails.cgi")||Core.curModuleFile("virtual-server","list_databases.cgi")||Core.curModuleFile("virtual-server","connectivity.cgi")||Core.curModuleFile("virtualmin-git","index.cgi")||Core.curModuleFile("net","list_ifcs.cgi")||Core.curModuleFile("net","list_hosts.cgi")||Core.curModuleFile("bind8","edit_recs.cgi")||Core.curModule("firewall")||Core.curModule("firewall6")||v___location_path==v___location_prefix+"/useradmin/list_logins.cgi"||v___location_path==v___location_prefix+"/man/search.cgi"||v___location_path==v___location_prefix+"/proc/index_tree.cgi"||v___location_path==v___location_prefix+"/proc/index_user.cgi"||v___location_path==v___location_prefix+"/proc/index_size.cgi"||v___location_path==v___location_prefix+"/proc/index_cpu.cgi"||v___location_path==v___location_prefix+"/proc/index_search.cgi"||v___location_path==v___location_prefix+"/software/search.cgi"||v___location_path==v___location_prefix+"/software/file_info.cgi"||v___location_path==v___location_prefix+"/software/list_pack.cgi"||v___location_path==v___location_prefix+"/virtual-server/index.cgi"||v___location_path==v___location_prefix+"/virtual-server/list_users.cgi"||v___location_path==v___location_prefix+"/virtual-server/edit_newplan.cgi"||v___location_path==v___location_prefix+"/virtual-server/edit_newfeatures.cgi"||v___location_path==v___location_prefix+"/virtual-server/edit_newtmpl.cgi"||v___location_path==v___location_prefix+"/virtual-server/backuplog.cgi"||v___location_path==v___location_prefix+"/package-updates/"||v___location_path==v___location_prefix+"/package-updates/index.cgi"||v___location_path==v___location_prefix+"/virtual-server/usage.cgi"||v___location_path==v___location_prefix+"/virtual-server/search.cgi"||(v___location_path==v___location_prefix+"/fetchmail/"||v___location_path==v___location_prefix+"/filter/")&&$t_uri_usermin)&&$(".__page table.table").each(function(){if($(this).find("thead")&&$(this).find("thead").length&&$(this).find("thead tr th")&&$(this).find("thead tr th").length>2){if($(this).find("thead")&&$(this).find("thead").length>1){var e=$(this).find("thead:first-child");e.remove(),!$t_uri_webmin||v___location_path!=v___location_prefix+"/quota/list_users.cgi"&&v___location_path!=v___location_prefix+"/quota/list_groups.cgi"||($(this).before(e),$(this).prev("thead").replaceTagName("table"))}table_data_init($(this)),$(this).find("th").each(function(){$(this).text()||$(this).css("opacity","0").css("cursor","default")});var t=-1/0;if($(this).find("tr").each(function(e,i){t=Math.max(t,parseFloat(e))}),t<10&&$(this).parents(".dataTables_wrapper").find(".dataTables_filter").remove(),($(this).parents(".dataTables_wrapper").find(".dataTables_filter").length?1:0)&&($('body[class="init"]').length||$('body[class^="init"]').length&&null!=$('body[class^="init"]').attr("class").match(/\d+$/)||$('body[class="quota"]').length||$('body[class^="quota"]').length&&null!=$('body[class^="quota"]').attr("class").match(/\d+$/)||$('body[class="cron"]').length||$('body[class^="cron"]').length&&null!=$('body[class^="cron"]').attr("class").match(/\d+$/))){var i=-15,a=$(this).parents(".dataTables_wrapper").attr("style");$('body[class^="quota"]').length&&(i=-27),$(this).parents(".dataTables_wrapper").attr("style","margin-top: "+i+"px !important; "+(a||""))}}}).promise().done(function(){page.render.content.filter.init()}),$(".select_all").on("click",function(){$(this).parents("form").find('.icons-row div[class*="icons-container"]').length&&$.each($(".icons-row .hidden-forged-6"),function(){$(this).parents('div[class*="icons-container"]').addClass("highlighted"),$(this).parents('div[class*="icons-container"]').find(".fa-select").removeClass("fa-select").addClass("fa-selected")})}),$(".select_invert").on("click",function(){$.each($(".icons-row .hidden-forged-6"),function(){$(this).find("input").is(":checked")?($(this).parents('div[class*="icons-container"]').addClass("highlighted"),$(this).parents('div[class*="icons-container"]').find(".fa-select, .fa-selected").removeClass("fa-select").addClass("fa-selected")):($(this).parents('div[class*="icons-container"]').removeClass("highlighted"),$(this).parents('div[class*="icons-container"]').find(".fa-select, .fa-selected").removeClass("fa-selected").addClass("fa-select"))})}),$('.icons-row div[class*="icons-container"]').on("mouseover",function(e){$(this).find(".hidden-forged-7").removeClass("hidden-forged")}).on("mouseout",function(e){$(this).find(".hidden-forged-7").addClass("hidden-forged")}),"?dashboard"!=v___location.search&&1==navigation_dashboard_switch_available()&&("sysinfo.cgi"==v___location_file?(set_switch_position("dashboard"),navigation_clear()):$("#open_webmin").length>0&&"open_webmin"!=$(".switch-toggle input:checked").attr("id")?set_switch_position("webmin"):$("#open_virtualmin").length>0&&"open_virtualmin"!=$(".switch-toggle input:checked").attr("id")?set_switch_position("virtualmin"):$("#open_cloudmin").length>0&&"open_cloudmin"!=$(".switch-toggle input:checked").attr("id")?set_switch_position("cloudmin"):$("#open_usermin").length>0&&"open_usermin"!=$(".switch-toggle input:checked").attr("id")&&set_switch_position("usermin")),$('form[action="bootup.cgi"]').on("submit",function(e){$("#starting").length>0?($("#starting").remove(),$(this).append('')):$("#table").length>0?$(this).append(''):$('input[name="boot"][type="hidden"]').length>0&&($('input[name="boot"][type="hidden"]').remove(),$(this).append(''))}),$('input[name="config_portable_module_xsql_fit_content_screen_height"]').on("change",function(){var e=$(this).attr("name"),t=$(this).val();localStorage.setItem(v___server_hostname+"-"+e,t),window[e]=t,theme_config("save")}),v___location_path!=v___location_prefix+"/virtual-server/domain_form.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_domain.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_user.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_alias.cgi"&&v___location_path!=v___location_prefix+"/virtual-server/edit_limits.cgi"||$("input, select").on("blur",function(){!__is_tabbed||$(this).next("input:visible").length||$(this).prev("input:visible").length||$(this).next("select:visible").length||$(this).prev("select:visible").length||(__is_shifted?$(this).parent("td").parent("tr").prev("tr").find("select:visible").length||$(this).parent("td").parent("tr").prev("script").prev("tr").find("select:visible").length||$(this).parent("td").parent("tr").prev("script").prev("script").prev("tr").find("select:visible").length?($(this).parent("td").parent("tr").prev("tr").find("select:first:visible").focus(),$(this).parent("td").parent("tr").prev("script").prev("tr").find("select:first:visible").focus(),$(this).parent("td").parent("tr").prev("script").prev("script").prev("tr").find("select:first:visible").focus()):($(this).parent("td").parent("tr").prev("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus(),$(this).parent("td").parent("tr").prev("script").prev("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus(),$(this).parent("td").parent("tr").prev("script").prev("script").prev("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus()):$(this).parent("td").parent("tr").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').length||$(this).parent("td").parent("tr").next("script").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').length||$(this).parent("td").parent("tr").next("script").next("script").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').length?($(this).parent("td").parent("tr").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus(),$(this).parent("td").parent("tr").next("script").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus(),$(this).parent("td").parent("tr").next("script").next("script").next("tr").find('input[type="text"]:first:visible, input[type="password"]:first:visible').focus()):($(this).parent("td").parent("tr").next("tr").find("select:first:visible").focus(),$(this).parent("td").parent("tr").next("script").next("tr").find("select:first:visible").focus(),$(this).parent("td").parent("tr").next("script").next("script").next("tr").find("select:first:visible").focus()))}),$('.ui_form_end_submit[onclick^="window.open"]').click(function(){var e=$(this);setTimeout(function(){e.removeClass("disabled"),navigation_render_end()},100)}),v___location_path&&v___location_path.indexOf("/sysinfo.cgi")>-1&&($("body").undelegate(".piechart canvas","mouseover mouseleave"),$("body").on("mouseover",".piechart canvas",function(){var e=$(this).parent("span").attr("data-charts").split("_")[1];("cpu"!=e&&"mem"!=e&&"virt"!=e||Core.moduleAvailable("proc"))&&("disk"!=e||Core.moduleAvailable("disk-usage")||Core.moduleAvailable("quota"))&&($(this).addClass("cursor-alias"),$(this).prev("span").prepend(' '))}).on("mouseleave",".piechart canvas",function(){$(this).prev("span").find("i").remove()}),$("body").undelegate("canvas","click"),$("body").on("click","canvas",function(e){e.preventDefault();var t,i=$(this).parent("span").attr("data-charts").split("_")[1];"cpu"==i&&Core.moduleAvailable("proc")?t=v___location_prefix+"/proc/index_cpu.cgi":"mem"!=i&&"virt"!=i||!Core.moduleAvailable("proc")?"disk"==i&&Core.moduleAvailable("disk-usage")?t=v___location_prefix+"/disk-usage":"disk"==i&&Core.moduleAvailable("quota")&&(t=v___location_prefix+"/quota/list_users.cgi?dir=%2F"):t=v___location_prefix+"/proc/index_size.cgi",t&&t.length&&get_pjax_content(t)}),!v___available_navigation&&$('a[href="/?updated"], a[data-href="#theme-info"]').remove(),page_sysinfo_sensor_update_label()),$t_uri_virtualmin&&Core.curModuleFileQuery("syslog","save_log.cgi","view=1")&&($('select[name="idx"] option').filter(function(){return this.text==$.trim($("span[data-sub_title] tt").text())}).attr("selected",!0),$('select[name="idx"]').addClass("hidden")),Core.curModuleFileQuery("syslog","save_log.cgi","view=1")){var v=".panel-body .fa-refresh-fi",F=localStorage.getItem(v___server_hostname+"-option_"+v___module+"_refresh"),z=v+", .panel-body .refresh-timer-timeout",D=''+(F||"0")+" ";$.each($(v+":not([data-processed])").parent("button"),function(e,t){if($(this).find("i").attr("data-processed",1),$(this).wrap('
    '),$(this).after('"),F&&"0"!=F){var i=$(z);$(this).find("i").before(D),$(this).find("i").remove();var a=F;"number"==typeof refreshTimer&&clearInterval(refreshTimer),refreshTimer=setInterval(function(){--a,$(".refresh-timer-timeout").text(a),a<=0&&($(i[0]).parent().trigger("click"),clearInterval(refreshTimer))},1e3)}}).promise().done(function(){$(".refresh-timer-select li").click(function(){"number"==typeof refreshTimer&&clearInterval(refreshTimer);var e=''+(F||"0")+" ";localStorage.setItem(v___server_hostname+"-option_"+v___module+"_refresh",$(this).find("a").data("timeout")),F=localStorage.getItem(v___server_hostname+"-option_"+v___module+"_refresh");var t=$(z).parent();if(F&&"0"!=F){t.find(".refresh-timer-timeout").length||t.prepend(e),t.find(".refresh-timer-timeout").html(F+" "),$(".fa-refresh-fi").remove();var i=F;refreshTimer=setInterval(function(){if(--i,$(".refresh-timer-timeout").text(i),i<=0){var e=$(z);$(e[0]).parent().trigger("click"),clearInterval(refreshTimer)}},1e3)}else $(".refresh-timer-timeout").remove(),!t.find(".fa-refresh-fi").length&&t.prepend('')})})}if(Core.curModuleFile("virtual-server","summary_domain.cgi")&&$(".__page #headln2l .btn-group, .__page .page_footer_submit").remove(),settings_side_slider_enabled&&(Core.curModule("package-updates")&&slider_mark_group_notifications_read("package_message"),Core.curModule("csf")&&(slider_mark_group_notifications_read("csf_remote_version"),slider_mark_group_notifications_read("csf_title"))),settings_button_tooltip&&($('#content [data-dcontainer="1"]').tooltip("destroy"), // $('[data-dcontainer="1"] [data-toggle="tooltip"], [data-dcontainer="1"] [data-toggle="virtualmin-license"], [data-dcontainer="1"] .panel-body td a, [data-dcontainer="1"] .icons-container').tooltip('destroy'); $('#content [data-dcontainer="1"]').tooltip({selector:'[data-toggle="tooltip"]:not([data-skip]), [data-toggle="virtualmin-license"], .panel-body td a:not([data-skip]), .icons-container',container:"body",placement:"auto "+($(".gl-icon-container").length?"bottom":"top"),html:!0,delay:{show:600,hide:30}})),v___available_navigation&&window.matchMedia("(max-width: 767px)").matches&&(navigation_lock_width(),set_side_slider_visibility()),"undefined"!=typeof v___user_level&&0!=v___user_level&&(settings_right_virtualmin_default="sysinfo.cgi",settings_right_cloudmin_default="sysinfo.cgi"),(Core.curModule("firewall")||Core.curModule("firewall6"))&&$.each($('select[name="table"], input[name="chain"]'),function(){var e=$(this),t=e.prev().addClass("margined-right-3"),i=e.parent("td"),a=e.parent("td").prev("form");i.append(a.detach()),i.find("form").append(e.add(t).detach())}),(Core.curModuleFile("mysql","view_table.cgi")||Core.curModuleFile("postgresql","view_table.cgi"))&&$.each($('select[name="field"]'),function(){var e=$(this),t=e.nextAll().add(this),i=e.parent("td"),a=i.parent("tr").find('form[action="view_table.cgi"]').first().addClass("inline-block"),n=a.nextAll('input[name="search"], input[name="db"], input[name="table"]').slice(0,3);e.parent("td").prev("form");a.append(n.detach()),i.append(a.detach()),i.find("form").append(t.detach())}),$("body").hasClass("session_login")&&setTimeout(function(){page_display()},200),moment.locale(get_server_data("language-full")),theme_to_new_tab(),Core.curModule("syslog")){var A=$(".container-fluid");Core.curModuleFileQuery("syslog","save_log.cgi","view=")?A.removeClass("col-lg-10 col-lg-offset-1").addClass("margined-top-15"):A.addClass("col-lg-10 col-lg-offset-1").removeClass("margined-top-15")}Core.curModuleFile("acl","save_twofactor.cgi")&&(console.log(333),setTimeout(function(){var e=$("p > img"),t=e.attr("src");e.attr("src",t.replace(v___location_prefix+"/"+v___module+"/",""))},0))}function page_init(){"undefined"==typeof v___initial_load&&(v___initial_load=1),"undefined"==typeof v___title_initial&&(v___title_initial=get_server_data("title-initial")),"undefined"==typeof v___theme_updated&&(v___theme_updated=0),v___location=location,$__theme_name__="authentic",$__theme_navigation="xnavigation=1",v___user_level=get_server_data("access-level"),v___shell_type=0==v___user_level?"#":"$",v___shell_processing=0,v___debug=get_server_data("debug"),v___source_type="debug"==v___debug?"src":"min",v___available_usermin=get_server_data("usermin"),"undefined"==typeof v___available_navigation&&(v___available_navigation=get_server_data("navigation")),v___available_session="1"==get_server_data("session")?1:0,v___blocked_navigation=$(quirks.active_element()).is("li.has-sub, a[data-has-sub-link]")?1:0,v___server_username=get_server_data("user"),v___server_userhome=get_server_data("user-home"),v___module=get_server_data("module"),v___script_name=get_server_data("script-name").replace(/^\//g,""),v___module_file_manager="file"+(Core.moduleAvailable("file-manager")?"-manager":"min"),v___server_hostname=get_server_data("hostname"),v___server_sestatus=get_server_data("sestatus"),v___theme_version=get_server_data("theme-version").toString(),v___theme_version_git=get_server_data("theme-git-version").toString(),v___theme_version_plain=v___theme_version.replace(".",""),v___theme_force_buffered=0,v___theme_night_mode="1"==get_server_data("data-night-mode")?1:0,v___theme_night_mode_enabled="undefined"!=typeof settings_background_color&&"nightRider"===settings_background_color?1:v___theme_night_mode,o___gotten_scripts="undefined"==typeof o___gotten_scripts?[]:o___gotten_scripts,v___page_container=$(".container-fluid"),v___page_signin_form="container session_login",v___page_signin_banner="form-signin-banner",v___page_activeElement=$("body")[0],v___URI=URI(v___location),v___location_protocol=v___URI.protocol(),v___location_port=v___URI.port(),v___location_origin=v___URI.origin(),v___location_hostname=v___URI.hostname(),v___location_href=v___location.href,v___location_path=v___URI.path().replace(/\/+/g,"/"),v___location_path_unslashed=v___location_path.replace(/^\//g,"").replace(/\/$/g,""),v___location_path_lead_unslashed=v___location_path.replace(/^\//g,""),v___location_file=v___URI.filename(),v___location_directory=v___URI.directory(),v___location_directory_trail_slashed=v___location_directory?v___location_directory.endsWith("/")?v___location_directory:v___location_directory+"/":"/",v___location_directory_unslashed=v___location_directory.replace(/^\//g,"").replace(/\/$/g,""),v___location_directory_unslashed_trail_slashed=v___location_directory_unslashed+"/",v___location_query=navigation_trigger(v___URI.query(),1),v___location_resource=navigation_trigger(v___URI.resource(),1),v___location_resource_unslashed=v___location_resource.replace(/^\//g,"").replace(/\/$/g,""),v___location_prefix=get_server_data("webprefix"),v___location_prefix_unslashed_trail_slashed=v___location_prefix.replace(/^\//g,"").replace(/\/$/g,"")+"/","/"===v___location_prefix_unslashed_trail_slashed&&(v___location_prefix_unslashed_trail_slashed=""),v___server_extensions_path=v___location_prefix+"/extensions", // $t___license_vm = get_server_data("virtual-server-license"), // $t___license_cm = get_server_data("server-manager-license"), -update_navigation_module_name()}function editor_init_check(){return 1===$("textarea").length&&("data"===$("textarea").attr("name")||"text"===$("textarea").attr("name")||"conf"===$("textarea").attr("name")||"script"===$("textarea").attr("name")||Core.curModuleFileQuery("virtual-server","edit_html.cgi","textok=")||v___location_file.indexOf("manual")>-1)?Core.curModule("gnupg")||Core.curModuleFile("virtual-server","mass_ucreate_form.cgi")||Core.curModuleFile("virtual-server","mass_create_form.cgi")||Core.curModuleFile("server-manager","edit_pubkey.cgi")||Core.curModuleFile("server-manager","edit_key.cgi")||check_location_resource("/config.cgi?server-manager")||Core.curModuleFile("useradmin","batch_form.cgi")||Core.curModuleFile("useradmin","gbatch_form.cgi")||"mass_form.cgi"==v___location_file||"notes"===$("textarea").attr("id")?0:1:0}function editor_init(e,t,i,a,n,s,_,r){(_=void 0!==_&&0!=_)||(n=void 0!==n&&0!=n,s=void 0!==s&&0!=s,$.each(e,function(_,o){$(this);var l=["phpini","bind8"];$("#headln2l a").attr("href")?$page=$("#headln2l a").attr("href").split("/")[1]:$page=null,l.indexOf($page)>=0&&$(this).data("name","data"),CodeMirror.modeURL=v___location_prefix+"/unauthenticated/js/codemirror/mode/%N/%N.js";var c=null,d="text/plain",h=!1;v___location_path==v___location_prefix+"/custom/view.cgi"?h=$('form[action="save.cgi"]').find(".table-title").find("tt").text():$('body[class^="'+v___module_file_manager+'"]').length?(h=t.replace(/<(?:.|\n)*?>/gm,"").replace(/ *\([^)]*\) */g,""),t=h):h=$('select[name="file"]').val();var p,f=t||h;if(p=/.+\.([^.]+)$/.exec(f))(g=CodeMirror.findModeByExtension(p[1]))&&(c=g.mode,d=g.mime);else if(/\//.test(f)){var g=CodeMirror.findModeByMIME(f);g&&(c=g.mode,d=f)}else c=null,d="text/plain";if("apache"==$page||"postfix"==$page||"dovecot"==$page||"spam"==$page||"virtualmin-nginx"==$page||"sendmail"==$page||"samba"==$page||"proftpd"==$page||"fail2ban"==$page||"sshd"==$page||"squid"==$page||"ldap-server"==$page?(c="rpm",d="rpm-spec"):"phpini"==$page?(c="z80",d="text/x-z80"):"bind8"==$page||"procmail"==$page||Core.curModuleFile("virtual-server","manual_records.cgi")?(c="clike",d="text/x-java"):"virtual-server"==$page&&"body"==$(this).attr("name")&&(c="htmlmixed",d="text/html"),$current_file=v___location_path.replace(/^\//g,""),$current_file&&($current_file=$current_file.split("/")[1]),editor_init_check()||$(".jsPanel").length||n){CodeMirror.commands.autocomplete=function(e){e.showHint({hint:CodeMirror.hint.anyword})},window["__cm_editor_"+a]=CodeMirror.fromTextArea(o,{tabMode:"indent",matchBrackets:!0,lineNumbers:!0,keyMap:"sublime",highlightSelectionMatches:{showToken:/\w/,annotateScrollbar:!0},lineWrapping:!0,indentUnit:0,autofocus:!0,foldGutter:!0,gutters:["CodeMirror-linenumbers","CodeMirror-foldgutter"],extraKeys:{"Ctrl-Space":"autocomplete"},styleActiveLine:!0,theme:v___theme_night_mode?"monokai":settings_cm_editor_palette}),window["__cm_editor_"+a].setOption("mode",d),"rpm"!=c&&CodeMirror.autoLoadMode(window["__cm_editor_"+a],c),setTimeout(function(){$("body").find(".jsPanel").length||$(".CodeMirror").before('');var e=$(".fa.fa-question-circle.__helper, .__helper___");e.popover({container:"body",placement:"auto left",title:''+theme_language("theme_xhred_editor_help_title"),content:theme_language("theme_xhred_editor_help_content"),trigger:"click",html:!0}),e.on("inserted.bs.popover",function(){$("body").find(".theme_xhred_editor_help").parents(".popover").addClass("_helper")})},100),s&&window["__cm_editor_"+a].on("change",function(e,t){set_onbeforeunload_status(1,0)});var u=$(".container-fluid > .panel > .panel-body").attr("data-cm-line"),v=$(".container-fluid > .panel > .panel-body").attr("data-cm-state");r&&u&&__cm_editor_static.setCursor(parseInt(u.split(",")[0]),parseInt(u.split(",")[1])),"edit_cron.cgi"!=$current_file&&v___location_path!=v___location_prefix+"/virtualmin-password-recovery/"&&v___location_path!=v___location_prefix+"/bind8/forward_form.cgi"&&($resize=i||2.8,i?(window["__cm_editor_"+a].on("change",function(t,i){e.val(window["__cm_editor_"+a].getValue()),$(":focus").parents(".jsPanel").is(".jsPanel")&&($(":focus").parents(".jsPanel").find("._filemanager_file_editor_save").addClass("text-danger __locked__"),$(":focus").parents(".jsPanel").find("select[data-encoding]").addClass("pointer-events-none"))}),window["__cm_editor_"+a].setSize($resize[0],$resize[1])):($window_height=$(window).outerHeight()-$(window).outerHeight()/$resize,window["__cm_editor_"+a].setSize(null,$window_height),$(window).resize(function(){$window_height=$(window).outerHeight()-$(window).outerHeight()/$resize,window["__cm_editor_"+a].setSize(null,$window_height)}))),$(".sub_table_container").find(".CodeMirror").length&&($(".sub_table_container").addClass("xcontent-force-no-styling"),$(".panel-body").addClass("xqcontent-forced")),editor_background_save(r&&!!u&&"true"==v)}}))}function viewer_init_check(){return $('body[class^="syslog"]').length&&v___location_query&&v___location_query.indexOf("view=1")>-1?1:0}function viewer_init(){if($("pre[data-cm-viewer]").remove(),$(".panel-body pre").find("i").length)$(".panel-body pre > i").addClass("label label-transparent-15");else{var e=!1;$(".panel-body pre").each(function(t,i){var a=$(this),n=Convert.htmlStrip(a.html());a.addClass("hidden"),a.after("
    "),$target=$("pre[data-cm-viewer-id-"+(t+1)+"]"),e=CodeMirror($target[0],{value:n,lineNumbers:!1,mode:null,theme:v___theme_night_mode?"monokai":settings_cm_editor_palette,readOnly:!0})}).promise().done(function(){})}}function notifications(e,t,i){if(settings_side_slider_enabled&&settings_side_slider_notifications_enabled){var e=Convert.htmlUnEscape($.trim(e.replace(/(<([^>]+)>)/gi,""))).replace(/\s+/g," "),t=Convert.htmlUnEscape($.trim(t.replace(/(<([^>]+)>)/gi,""))).replace(/\s+/g," ");"granted"===Notification.permission?new Notification(e,{body:t,icon:v___location_prefix+"/images/notifications_"+i+".png"}).onclick=function(){window.focus()}:"denied"!==Notification.permission&&Notification.requestPermission(function(a){"granted"===a&&(new Notification(e,{body:t,icon:v___location_prefix+"/images/notifications_"+i+".png"}).onclick=function(){window.focus()})})}}function unbuffered_header_post(e){if(Test.strContains(e.responseText,"theme_post_save")){var t=e.responseText.match(/theme_post_save(.*)$/gm);t&&navigation_update(t[0].split("=")[1])}}function unbuffered_header_processor_allow(e){var t=URI(v___location).path();return void 0!==e&&(t=e),t&&Test.strContains(t,".cgi")&&(Test.strContains(t,"webmin/install_theme.cgi")||Test.strContains(t,"usermin/install_theme.cgi")||t.indexOf("/virtual-server/import.cgi")>-1||t.indexOf("/virtual-server/edit_newlinks.cgi")>-1||t.indexOf("/virtual-server/postsave.cgi")>-1||t.indexOf("/virtual-server/validate.cgi")>-1||t.indexOf("/server-manager/edit_serv.cgi")>-1||t.indexOf("/server-manager/save_serv.cgi")>-1||t.indexOf("/server-manager/index.cgi")>-1||t.indexOf("/server-manager/list_ifaces.cgi")>-1||t.indexOf("/server-manager/mass_update.cgi")>-1||t.indexOf("/server-manager/get_images.cgi")>-1||t.indexOf("/server-manager/edit_newlinks.cgi")>-1||t.indexOf("/server-manager/list_gces.cgi")>-1||t.indexOf("/server-manager/list_ec2s.cgi")>-1||t.indexOf("/server-manager/unpause.cgi")>-1||t.indexOf("/server-manager/find.cgi")>-1||t.indexOf("useradmin/batch_exec.cgi")>-1||t.indexOf("useradmin/gbatch_exec.cgi")>-1||t.indexOf("useradmin/mass_delete_user.cgi")>-1||t.indexOf("virtual-server/domain_setup.cgi")>-1||t.indexOf("virtual-server/upgrade.cgi")>-1||t.indexOf("virtual-server/mass_create.cgi")>-1||t.indexOf("virtual-server/restore.cgi")>-1||t.indexOf("virtual-server/save_newip.cgi")>-1||t.indexOf("virtual-server/mass_domains_change.cgi")>-1||t.indexOf("virtual-server/save_domain.cgi")>-1||t.indexOf("virtual-server/backup.cgi")>-1||t.indexOf("virtual-server/save_phpmode.cgi")>-1||t.indexOf("virtual-server/script_install.cgi")>-1||t.indexOf("virtual-server/mass_change.cgi")>-1||t.indexOf("virtual-server/save_ratelimit.cgi")>-1||t.indexOf("virtual-server/mass_scripts.cgi")>-1||t.indexOf("virtual-server/mass_upgrade.cgi")>-1||t.indexOf("virtual-server/save_newips.cgi")>-1||t.indexOf("virtual-server/letsencrypt.cgi")>-1||t.indexOf("virtual-server/migrate.cgi")>-1||t.indexOf("virtual-server/save_mail.cgi")>-1||t.indexOf("virtual-server/mass_delete_domains.cgi")>-1||t.indexOf("virtual-server/delete_domain.cgi")>-1||t.indexOf("virtual-server/unscript_install.cgi")>-1||t.indexOf("virtual-server/mass_uninstall.cgi")>-1||t.indexOf("virtual-server/clone.cgi")>-1||t.indexOf("virtual-server/fix_symlinks.cgi")>-1||t.indexOf("virtual-server/disable_domain.cgi")>-1||t.indexOf("virtual-server/delete_databases.cgi")>-1||t.indexOf("virtual-server/move.cgi")>-1||t.indexOf("virtual-server/enable_domain.cgi")>-1||t.indexOf("virtual-server/transfer.cgi")>-1||t.indexOf("virtual-server/mass_disable.cgi")>-1||t.indexOf("virtual-server/rename.cgi")>-1||t.indexOf("virtual-server/save_dbname.cgi")>-1||t.indexOf("virtual-server/mass_enable.cgi")>-1||t.indexOf("virtual-server/save_frame.cgi")>-1||t.indexOf("virtual-server/check.cgi")>-1||t.indexOf("virtual-server/save_newchroot.cgi")>-1||t.indexOf("virtual-server/enable_dkim.cgi")>-1||t.indexOf("virtual-server/save_proxy.cgi")>-1||t.indexOf("virtual-server/save_dbpass.cgi")>-1||t.indexOf("virtual-server/save_dbhosts.cgi")>-1||t.indexOf("virtual-server/unalias.cgi")>-1||t.indexOf("virtual-server/save_newautoconfig.cgi")>-1||t.indexOf("virtual-server/quotacheck.cgi")>-1||t.indexOf("virtual-server/unsub.cgi")>-1||t.indexOf("virtual-server/save_domdkim.cgi")>-1||t.indexOf("virtual-server/fix_modphp.cgi")>-1||t.indexOf("virtual-server/connectivity.cgi")>-1||t.indexOf("virtual-server/all_webmin.cgi")>-1||t.indexOf("virtualmin-support/send_ticket.cgi")>-1||t.indexOf("virtualmin-support/enable_login.cgi")>-1||t.indexOf("virtualmin-support/disable_login.cgi")>-1||t.indexOf("server-manager/create.cgi")>-1||t.indexOf("server-manager/mass.cgi")>-1||t.indexOf("server-manager/manual_image.cgi")>-1||t.indexOf("server-manager/save_limits.cgi")>-1||t.indexOf("server-manager/upgrade.cgi")>-1||t.indexOf("server-manager/empty.cgi")>-1||t.indexOf("server-manager/save_pass.cgi")>-1||t.indexOf("server-manager/create_image.cgi")>-1||t.indexOf("server-manager/restore.cgi")>-1||t.indexOf("server-manager/clone.cgi")>-1||t.indexOf("server-manager/scan.cgi")>-1||t.indexOf("server-manager/add.cgi")>-1||t.indexOf("server-manager/gcescan.cgi")>-1||t.indexOf("server-manager/create_gceattach.cgi")>-1||t.indexOf("server-manager/ec2scan.cgi")>-1||t.indexOf("server-manager/create_domain.cgi")>-1||t.indexOf("server-manager/restore_domain.cgi")>-1||t.indexOf("server-manager/create_ec2attach.cgi")>-1||t.indexOf("server-manager/newami.cgi")>-1||t.indexOf("server-manager/move_disk.cgi")>-1||t.indexOf("server-manager/convert_image.cgi")>-1||t.indexOf("server-manager/save_vcpus.cgi")>-1||t.indexOf("server-manager/boot.cgi")>-1||t.indexOf("server-manager/delete_backuplogs.cgi")>-1||t.indexOf("server-manager/mass_script.cgi")>-1||t.indexOf("server-manager/save_ec2address.cgi")>-1||t.indexOf("server-manager/mass_move.cgi")>-1||t.indexOf("server-manager/delete_ec2attach.cgi")>-1||t.indexOf("server-manager/move.cgi")>-1||t.indexOf("server-manager/backup.cgi")>-1||t.indexOf("server-manager/create_dimage.cgi")>-1||t.indexOf("server-manager/massupload.cgi")>-1||t.indexOf("server-manager/delete_volumes.cgi")>-1||t.indexOf("server-manager/delete_ec2_snapshots.cgi")>-1||t.indexOf("server-manager/download.cgi")>-1||t.indexOf("server-manager/create_gdisk.cgi")>-1||t.indexOf("server-manager/failover.cgi")>-1||t.indexOf("server-manager/create_dkvolume.cgi")>-1||t.indexOf("server-manager/upload.cgi")>-1||t.indexOf("server-manager/transfer.cgi")>-1||t.indexOf("server-manager/delete_gceattach.cgi")>-1||t.indexOf("server-manager/reset.cgi")>-1||t.indexOf("server-manager/find.cgi")>-1||t.indexOf("server-manager/create_volume.cgi")>-1||t.indexOf("server-manager/create_gsnapshot.cgi")>-1||t.indexOf("server-manager/create_gimage.cgi")>-1||t.indexOf("server-manager/exec_vbackup.cgi")>-1||t.indexOf("server-manager/unpause.cgi")>-1||t.indexOf("server-manager/pause.cgi")>-1||t.indexOf("server-manager/create_ec2_snapshot.cgi")>-1||t.indexOf("server-manager/delete_addresses.cgi")>-1||t.indexOf("server-manager/exec_vsync.cgi")>-1||t.indexOf("server-manager/create_address.cgi")>-1||t.indexOf("cluster-usermin/upgrade.cgi")>-1||t.indexOf("cluster-usermin/install.cgi")>-1||t.indexOf("cluster-usermin/update.cgi")>-1||t.indexOf("ldap-useradmin/batch_exec.cgi")>-1||t.indexOf("ldap-useradmin/mass_delete_user.cgi")>-1||t.indexOf("usermin/upgrade.cgi")>-1||t.indexOf("usermin/update.cgi")>-1||t.indexOf("cpan/download.cgi")>-1||t.indexOf("cpan/install.cgi")>-1||t.indexOf("burner/save_profile.cgi")>-1||t.indexOf("burner/burn.cgi")>-1||t.indexOf("bind8/mass_create.cgi")>-1||t.indexOf("bind8/mass_rcreate.cgi")>-1||t.indexOf("bind8/mass_delete.cgi")>-1||t.indexOf("bind8/mass_update.cgi")>-1||t.indexOf("bind8/zone_dnssecmigrate_dt.cgi")>-1||t.indexOf("bind8/mass_rdelete.cgi")>-1||t.indexOf("bind8/enable_zonekey.cgi")>-1||t.indexOf("bind8/enable_zonedt.cgi")>-1||t.indexOf("bind8/disable_zonedt.cgi")>-1||t.indexOf("webalizer/save_log.cgi")>-1||t.indexOf("bacula-backup/restore.cgi")>-1||t.indexOf("bacula-backup/backup.cgi")>-1||t.indexOf("bacula-backup/gbackup.cgi")>-1||t.indexOf("bacula-backup/label.cgi")>-1||t.indexOf("bacula-backup/mount.cgi")>-1||t.indexOf("cluster-software/install_pack.cgi")>-1||t.indexOf("updown/download.cgi")>-1||t.indexOf("software/install_pack.cgi")>-1||t.indexOf("software/do_install.cgi")>-1||t.indexOf("software/apt_upgrade.cgi")>-1||t.indexOf("software/rhn_check.cgi")>-1||t.indexOf("software/yum_upgrade.cgi")>-1||t.indexOf("software/urpmi_upgrade.cgi")>-1||t.indexOf("software/csw_upgrade.cgi")>-1||t.indexOf("software/ports_upgrade.cgi")>-1||t.indexOf("webmin/letsencrypt.cgi")>-1||t.indexOf("webmin/delete_webmincron.cgi")>-1||t.indexOf("webmin/test_sendmail.cgi")>-1||t.indexOf("package-updates/update.cgi")>-1||t.indexOf("custom/run.cgi")>-1||t.indexOf("custom/sql.cgi")>-1||t.indexOf("virtualmin-init/save.cgi")>-1||t.indexOf("virtualmin-init/mass.cgi")>-1||t.indexOf("backup-config/save.cgi")>-1||t.indexOf("squid/init_cache.cgi")>-1||t.indexOf("squid/clear.cgi")>-1||t.indexOf("squid/chown.cgi")>-1||t.indexOf("ldap-client/check.cgi")>-1||t.indexOf("sendmail/del_mailqs.cgi")>-1||t.indexOf("sendmail/flushq.cgi")>-1||t.indexOf("init/mass_start_stop.cgi")>-1||t.indexOf("init/mass_launchd.cgi")>-1||t.indexOf("init/mass_systemd.cgi")>-1||t.indexOf("init/mass_upstarts.cgi")>-1||t.indexOf("init/mass_rcs.cgi")>-1||t.indexOf("init/save_services.cgi")>-1||t.indexOf("ldap-server/create.cgi")>-1||t.indexOf("change-user/change.cgi")>-1||t.indexOf("virtualmin-slavedns/save.cgi")>-1||t.indexOf("proc/trace.cgi")>-1||t.indexOf("proc/run.cgi")>-1||t.indexOf("proc/kill_proc_list.cgi")>-1||t.indexOf("fsdump/backup.cgi")>-1||t.indexOf("fsdump/restore.cgi")>-1||t.indexOf("webmin_search.cgi")>-1||t.indexOf("security-updates/update.cgi")>-1||t.indexOf("virtualmin-mailrelay/save.cgi")>-1||t.indexOf("cluster-copy/exec.cgi")>-1||t.indexOf("cron/exec_cron.cgi")>-1||t.indexOf("virtualmin-registrar/import.cgi")>-1||t.indexOf("virtualmin-registrar/save_ns.cgi")>-1||t.indexOf("virtualmin-registrar/transfer.cgi")>-1||t.indexOf("virtualmin-registrar/renew.cgi")>-1||t.indexOf("virtualmin-registrar/create.cgi")>-1||t.indexOf("htaccess-htpasswd/search.cgi")>-1||t.indexOf("acl/makedn.cgi")>-1||t.indexOf("acl/cert_issue.cgi")>-1||t.indexOf("acl/maketables.cgi")>-1||t.indexOf("acl/schema.cgi")>-1||t.indexOf("filter/move.cgi")>-1||t.indexOf("fetchmail/check.cgi")>-1||t.indexOf("servers/find.cgi")>-1||t.indexOf("cluster-cron/exec.cgi")>-1||t.indexOf("raid/mkfs.cgi")>-1||t.indexOf("lvm/pvmove.cgi")>-1||t.indexOf("lvm/mkfs.cgi")>-1||t.indexOf("ppp-client/init.cgi")>-1||t.indexOf("fdisk/mkfs.cgi")>-1||t.indexOf("fdisk/tunefs.cgi")>-1||t.indexOf("fdisk/fsck.cgi")>-1||t.indexOf("spam/deleteall_awl.cgi")>-1||t.indexOf("quota/check_quotas.cgi")>-1||t.indexOf("virtualmin-awstats/generate.cgi")>-1||t.indexOf("postfix/flushq.cgi")>-1||t.indexOf("status/delete_mons.cgi")>-1||t.indexOf("status/refresh.cgi")>-1||t.indexOf("/webmin/upgrade.cgi")>-1||t.indexOf("sysstats/display_all.cgi")>-1)?1:0}function unbuffered_header_processor_allow_scroll(){var e=["webmin_search.cgi","display_all.cgi"];return Test.arrContains(e,v___location_file)?0:1}function unbuffered_header_processor(e,t){if(t){var i=e,a=$(i.target),n=i.target.action,s=$(quirks.active_element()).attr("name"),_=$.trim(quirks.active_element().innerText),r=quirks.active_element().value;a.find('input[name="'+s+'"]')&&a.find('input[name="'+s+'"]').val()==(_||r)||$("").attr({type:"hidden",name:s,value:_||r}).appendTo(a);var o=Test.strContains(a.attr("enctype"),"multipart/form-data"),l=o?new FormData(a[0]):a.serialize();if(o||(l=Test.strContains(l,s+"=")?l:l+"&"+s+"="+r),$("input:file:visible").val())return v___theme_force_buffered=1,void a.submit()}var c=0,d=0,h=t?n:e,p=0,f=$('div[data-dcontainer="1"] > .panel.panel-default').clone();progress.start(),set_onbeforeunload_status(1,1),progressive_request=$.ajax({xhr:function(){var e=new window.XMLHttpRequest;return e.addEventListener("progress",function(e){var t=e.target.responseText,i=$(t).filter('div[data-dcontainer="1"]').html();if(Test.strContains(t,v___page_signin_form))return v___available_session=0,void progressive_request.abort();if(!!i&&d++,0===p&&(window.history.pushState(null,"",e.currentTarget.responseURL+(Test.strContains(e.currentTarget.responseURL,"?")?"&":"?")+$__theme_navigation),p=1,$(window).on("popstate.unbuffered",function(){$('.container-fluid[data-dcontainer="1"]').html(f),$(this).unbind("popstate.unbuffered"),setTimeout(function(){get_pjax_event_end_funcs(0)},40)})),d>3&&!c)i&&($('div[data-dcontainer="1"]').html(i),c++,unbuffered_header_processor_allow_scroll()&&($(".__page").hasScrollBar()?$(".__page").scrollTop($(".__page")[0].scrollHeight):$(".__page").scrollTop(0)),$(".__page").addClass("progressing"),get_pjax_event_end(!1,e.target));else if(c){var a=extract_content(t,'
    ',"
    ",0);a&&$('div[data-dcontainer="1"]').find(".panel-body").html(a),unbuffered_header_processor_allow_scroll()&&$(".__page").scrollTop($(".__page")[0].scrollHeight)}},!1),e},type:get_pjax_type(a||h),url:h,processData:!t||!o,contentType:(!t||!o)&&"application/x-www-form-urlencoded; charset=UTF-8",data:!!t&&l,complete:function(e){$('div[data-dcontainer="1"]').html($(e.responseText).filter('div[data-dcontainer="1"]').html()),get_pjax_event_end(!1,e),unbuffered_header_processor_allow_scroll()&&$(".__page").scrollTop($(".__page")[0].scrollHeight),$(".__page").removeClass("progressing"),progress.end(),set_onbeforeunload_status(0,1),unbuffered_header_post(e),Core.curModuleFile("package-updates","update.cgi")&&information_update()}})}function check_selected_text(){return getSelection?getSelection().toString():document.selection?document.selection.createRange().text:""}function check_location_resource(e){return v___location_resource===v___location_prefix+e}function check_current_file(e){return v___location_file==e}browser.internet_explorer()>5&&browser.internet_explorer()<=11&&(setTimeout(function(){var e="

    "+theme_language("theme_xhred_browser_warning")+"

    ";theme_alert(theme_language("theme_xhred_global_warning"),e,!1,"md","danger",!1,"10 modal-ie-warning",0)},2e3),String.prototype.endsWith||(String.prototype.endsWith=function(e,t){var i=this.toString();("number"!=typeof t||!isFinite(t)||Math.floor(t)!==t||t>i.length)&&(t=i.length),t-=e.length;var a=i.lastIndexOf(e,t);return-1!==a&&a===t}),String.prototype.startsWith||String.prototype.startsWith||(String.prototype.startsWith=function(e,t){return t=t||0,this.indexOf(e,t)===t})),$.extend($.expr[":"],{containsi:function(e,t,i,a){return(e.textContent||e.innerText||"").toLowerCase().indexOf((i[3]||"").toLowerCase())>=0}}),Object.defineProperty(Array.prototype,"reOrder",{enumerable:!1,value:function(e,t){if(t>=this.length)for(var i=t-this.length;1+i--;)this.push(void 0);return this.splice(t,0,this.splice(e,1)[0]),this}}),jQuery.fn.simulateUserClick=function(){return this.each(function(){if("createEvent"in document){var e=this.ownerDocument,t=e.createEvent("MouseEvents");t.initMouseEvent("click",!0,!0,e.defaultView,1,0,0,0,0,!1,!1,!1,!1,0,null),this.dispatchEvent(t)}else this.click()})},function(e){e.fn.replaceTagName=function(t){for(var i=[],a=this.length;a--;){for(var n=document.createElement(t),s=this[a],_=s.attributes,r=_.length-1;r>=0;r--){var o=_[r];n.setAttribute(o.name,o.value)}n.innerHTML=s.innerHTML,e(s).after(n).remove(),i[a-1]=n}return e(i)}}(jQuery),jQuery.fn.selectText=function(){var e=document,t=this[0];if(e.body.createTextRange)(a=document.body.createTextRange()).moveToElementText(t),a.select();else if(window.getSelection){var i=window.getSelection(),a=document.createRange();a.selectNodeContents(t),i.removeAllRanges(),i.addRange(a)}},function(e){e.fn.replaceText=function(t,i,a){return this.each(function(){var n,s,_=this.firstChild,r=[];if(_)do{3===_.nodeType&&(s=(n=_.nodeValue).replace(t,i))!==n&&(!a&&/this.height()},$.fn.toggleCheckbox=function(){"checkbox"==$(this).attr("type")&&$(this).prop("checked",!$(this).is(":checked"))},jQuery.fn.confirmation=function(e,t){return e=$.extend({className:"btn-danger",timeout:2500},e),$(this).each(function(i,a){function n(){_.removeClass(e.className).data("confirmed",!1).find(".tmp_question").remove()}var s,_=$(a);_.html();_.data("confirmed",!1),_.on("click.confirm",function(i){i.preventDefault(),_.data("confirmed")?(t.call(_,i),n()):(_.data("confirmed",!0),_.append('?').addClass(e.className).bind("mouseout.confirm",function(){s=setTimeout(n,e.timeout)}).bind("mouseover.confirm",function(){clearTimeout(s)}))}).removeClass(e.className)}),$(this)},RegExp.quote=function(e){return e.replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1")},$(function(){var e,t=".blinking-default:not(.hidden)";setInterval(function(){0==e?($(t).css("opacity","1"),e=1):(e=1)&&($(t).css("opacity","0"),e=0)},900)});if(get_server_data("debug")){if("object"==typeof localStorage)try{localStorage.setItem("d41d8cd98f00",1),localStorage.removeItem("d41d8cd98f00"),$_v__ls__a=1}catch(e){Storage.prototype._setItem=Storage.prototype.setItem,Storage.prototype.setItem=function(){},$_v__ls__a=0}if(page_init(),$___________lrs_r_l=0,$___________left=v___available_navigation?1:0,"undefined"==typeof settings_mailbox_slash_delimiter&&(settings_mailbox_slash_delimiter=!0),"undefined"==typeof settings_right_reload&&(settings_right_reload=!0),"undefined"==typeof settings_right_default_tab_usermin&&(settings_right_default_tab_usermin="/"),"undefined"==typeof settings_right_virtualmin_default&&(settings_right_virtualmin_default="sysinfo.cgi"),"undefined"==typeof settings_right_cloudmin_default&&(settings_right_cloudmin_default="sysinfo.cgi"),"undefined"==typeof settings_font_family&&(settings_font_family=0),"undefined"==typeof settings_navigation_color&&(settings_navigation_color="blue"),"undefined"==typeof settings_background_color&&(settings_background_color="gainsboro"),"undefined"==typeof settings_hide_top_loader&&(settings_hide_top_loader=!1),"undefined"==typeof settings_show_night_mode_link&&(settings_show_night_mode_link=!0),"undefined"==typeof settings_theme_options_button&&(settings_theme_options_button=!0),"undefined"==typeof settings_leftmenu_button_refresh&&(settings_leftmenu_button_refresh=!1),"undefined"==typeof settings_cm_view_palette&&(settings_cm_view_palette="monokai"),"undefined"==typeof settings_cm_editor_palette&&(settings_cm_editor_palette="monokai"),"undefined"==typeof settings_side_slider_palette&&(settings_side_slider_palette="grey"),"undefined"==typeof settings_side_slider_enabled&&(settings_side_slider_enabled=!0),"undefined"==typeof settings_side_slider_fixed&&(settings_side_slider_fixed=!1),"undefined"==typeof settings_side_slider_sysinfo_enabled&&(settings_side_slider_sysinfo_enabled=!0),"undefined"==typeof settings_side_slider_notifications_enabled&&(settings_side_slider_notifications_enabled=!0),"undefined"==typeof settings_side_slider_favorites_enabled&&(settings_side_slider_favorites_enabled=!0),config_portable_module_filemanager_hide_actions="undefined"==typeof localStorage||"false"!=localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_hide_actions"),config_portable_module_filemanager_hide_toolbar="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_hide_toolbar"),config_portable_module_filemanager_hovered_toolbar="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_hovered_toolbar"),config_portable_module_filemanager_notification_type="undefined"!=typeof localStorage&&localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_notification_type")?localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_notification_type"):2,config_portable_module_filemanager_calculate_size="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_calculate_size"),config_portable_module_filemanager_switch_user="undefined"==typeof localStorage||"false"!=localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_switch_user"),config_portable_module_filemanager_remember_tabs="undefined"==typeof localStorage||"false"!=localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_remember_tabs"),config_portable_module_xsql_fit_content_screen_height="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_module_xsql_fit_content_screen_height"),"undefined"==typeof settings_hotkeys_active&&(settings_hotkeys_active=!0),"undefined"==typeof settings_button_tooltip&&(settings_button_tooltip=!0),"undefined"==typeof settings_hotkey_toggle_modifier&&(settings_hotkey_toggle_modifier="altKey"),"undefined"==typeof settings_hotkey_toggle_key_webmin&&(settings_hotkey_toggle_key_webmin="w"),"undefined"==typeof settings_hotkey_toggle_key_virtualmin&&(settings_hotkey_toggle_key_virtualmin="v"),"undefined"==typeof settings_hotkey_toggle_key_cloudmin&&(settings_hotkey_toggle_key_cloudmin="c"),"undefined"==typeof settings_hotkey_toggle_key_usermin&&(settings_hotkey_toggle_key_usermin="u"),"undefined"==typeof settings_hotkey_toggle_key_webmail&&(settings_hotkey_toggle_key_webmail="m"),"undefined"==typeof settings_hotkey_toggle_key_night_mode&&(settings_hotkey_toggle_key_night_mode="l"),"undefined"==typeof settings_hotkey_shell&&(settings_hotkey_shell="k"),"undefined"==typeof settings_hotkey_sysinfo&&(settings_hotkey_sysinfo="i"),"undefined"==typeof settings_hotkey_favorites&&(settings_hotkey_favorites="f"),"undefined"==typeof settings_hotkey_focus_search&&(settings_hotkey_focus_search="s"),"undefined"==typeof settings_hotkey_toggle_slider&&(settings_hotkey_toggle_slider="n"),"undefined"==typeof settings_hotkey_reload&&(settings_hotkey_reload="r"),"undefined"==typeof settings_global_passgen_format&&(settings_global_passgen_format="12|a-z,A-Z,0-9,#"),"undefined"==typeof settings_window_replace_timestamps&&(settings_window_replace_timestamps=!0),"undefined"==typeof settings_window_replaced_timestamp_format_full&&(settings_window_replaced_timestamp_format_full="LLLL"),"undefined"==typeof settings_window_replaced_timestamp_format_short&&(settings_window_replaced_timestamp_format_short="L, LTS"),"undefined"==typeof settings_leftmenu_vm_cm_dropdown_icons&&(settings_leftmenu_vm_cm_dropdown_icons=!0),"undefined"==typeof settings_hotkey_custom_1&&(settings_hotkey_custom_1=!1),"undefined"==typeof settings_hotkey_custom_2&&(settings_hotkey_custom_2=!1),"undefined"==typeof settings_hotkey_custom_3&&(settings_hotkey_custom_3=!1),"undefined"==typeof settings_hotkey_custom_4&&(settings_hotkey_custom_4=!1),"undefined"==typeof settings_hotkey_custom_5&&(settings_hotkey_custom_5=!1),"undefined"==typeof settings_hotkey_custom_6&&(settings_hotkey_custom_6=!1),"undefined"==typeof settings_hotkey_custom_7&&(settings_hotkey_custom_7=!1),"undefined"==typeof settings_hotkey_custom_8&&(settings_hotkey_custom_8=!1),"undefined"==typeof settings_hotkey_custom_9&&(settings_hotkey_custom_9=!1),"undefined"==typeof settings_side_slider_background_refresh_time&&(settings_side_slider_background_refresh_time=5),"undefined"==typeof settings_leftmenu_width&&(settings_leftmenu_width=260),"undefined"==typeof settings_sysinfo_easypie_charts&&(settings_sysinfo_easypie_charts=!0),"undefined"==typeof settings_sysinfo_easypie_charts_size?settings_sysinfo_easypie_charts_size=172:settings_sysinfo_easypie_charts_size=parseInt(settings_sysinfo_easypie_charts_size),"undefined"==typeof settings_sysinfo_easypie_charts_width?settings_sysinfo_easypie_charts_width=2:settings_sysinfo_easypie_charts_width=parseInt(settings_sysinfo_easypie_charts_width),"undefined"==typeof settings_sysinfo_easypie_charts_scale?settings_sysinfo_easypie_charts_scale=8:settings_sysinfo_easypie_charts_scale=parseInt(settings_sysinfo_easypie_charts_scale),"undefined"==typeof settings_sysinfo_theme_updates&&(settings_sysinfo_theme_updates=!1),"undefined"==typeof settings_sysinfo_theme_patched_updates&&(settings_sysinfo_theme_patched_updates=!1),"undefined"==typeof settings_sysinfo_csf_updates&&(settings_sysinfo_csf_updates=!1),"undefined"==typeof settings_sysinfo_link_mini&&(settings_sysinfo_link_mini=!1),"undefined"==typeof settings_loader_top&&(settings_loader_top=!0),"undefined"==typeof settings_animation_left&&(settings_animation_left=!0),settings_animation_left?$settings_animation_left_slide_time=175:$settings_animation_left_slide_time=0,"undefined"==typeof settings_animation_tabs&&(settings_animation_tabs=!1),settings_animation_tabs?$settings_animation_tabs_slide_time=350:$settings_animation_tabs_slide_time=0,"undefined"==typeof settings_show_terminal_link&&(settings_show_terminal_link=!0),"undefined"==typeof settings_favorites&&(settings_favorites=!0),$_v__ls__a?_v__ls__a="":_v__ls__a=" hidden",$(".mobile-menu-toggler:visible").length&&set_side_slider_visibility(0),navigation_display(),v___available_navigation?(page_adjust(settings_leftmenu_width,0),navigation_lock_width()):$("head").append(''),$("html").on("dblclick","body",function(){1!=$(this).find(".container-fluid").css("opacity")&&page_display()}),$.support.pjax&&v___available_navigation){var $t_av__excluded_selectors=':not([target="_blank"]):not([href^="#"]):not([data-href^="#"]):not([data-toggle="collapse"]):not([href*="javascript:"]):not(.has-sub):not([data-has-sub-link]):not([onclick]):not([data-nref])';$(document).on("submit","form",function(e){e.preventDefault(),get_onbeforeunload_status()?get_onbeforeunload_message(e,this):get_pjax_action_submit(e,this)}),$(document).on("click","a"+$t_av__excluded_selectors,function(e){get_onbeforeunload_status()?(e.preventDefault(),get_onbeforeunload_message(e,this)):get_pjax_action_click(e,this)}),$(document).on("pjax:error",function(e,t,i,a,s){if("error"===i){var n=$.active;if(n&&($.active=n-1),Test.strContains(s.url,"/csf/index.cgi"))return void theme_reload()}}),$(document).on("pjax:start",function(e,t){get_server_data("loading",1),"number"==typeof set_server_tmp_var_timeout&&clearTimeout(set_server_tmp_var_timeout)}),$(document).on("pjax:beforeReplace",function(e,t,i){navigation_form_control(0),pjax.clear.modules(i)}),$(document).on("ready pjax:beforeSend",function(e,t,i){progress.start();var a=$(e.relatedTarget),s=a.attr("href");s=s||i.url.replace(v___location_origin,""),clicked_in_nav_menu=a.parent().is("[data-linked], .favorites-dcontainer, .menu-exclude.ui-sortable-handle")||"object"==typeof i.callback&&"reference"===i.callback[0],clicked_in_nav_menu&&((Test.strContains(s,"mysql")||Test.strContains(s,"postgresql"))&&get_bundle_sql(),Test.strContains(s,v___module_file_manager)&&get_bundle_file_manager(),Test.strContains(s,"csf")&&get_bundle_csf()),"object"==typeof i.callback&&"beforeSend"===i.callback[0]&&(i.callback[3]?setTimeout(function(){window[i.callback[1].apply(this,i.callback[2])]},i.callback[3]):window[i.callback[1].apply(this,i.callback[2])])}),$(document).on("pjax:success",function(e,t,i,a,s){"object"==typeof s.callback&&"success"===s.callback[0]&&(s.callback[3]?setTimeout(function(){window[s.callback[1].apply(this,s.callback[2])]},s.callback[3]):window[s.callback[1].apply(this,s.callback[2])])}),$(document).on("pjax:complete",function(e,t,i){setTimeout(function(){$(".container-fluid-loading").length||progress.end()},10),get_server_data("loading",0,1)}),$(document).on("ready pjax:end",function(e,t){0!==v___available_session&&(navigation_form_control(1),get_pjax_event_end(e,t))}),$(document).on("pjax:popstate",function(e,t){setTimeout(function(){get_pjax_event_end_funcs(0)},40)})}v___available_session&&($.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-get_theme_language=1",data:!1,dataType:"text",async:v___available_navigation,success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:(get_server_data("language-strings",JSON.parse(e)),"function"==typeof set_side_slider_labels&&set_side_slider_labels())}}),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-get_available_modules=1",data:!1,dataType:"text",async:v___available_navigation,success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:get_server_data("available-modules",JSON.parse(e))}}),theme_config("load")),$(function(){if(1===v___initial_load&&v___available_navigation&&(page_display(),navigation_display()),bind_sameorigin(),time.tictac(),browser.safari(1)&&$("html").css("overflow","auto"),browser.safari()&&$(".__page").addClass("browser_safari"),!v___available_navigation&&$(".container-fluid").removeClass("col-lg-10 col-lg-offset-1").addClass("margined-top-15").parents("html").addClass("single_tab"),$("body").on("click","#quota-virtual-server-collapse a.ui_link, #quota-virtual-server-1-collapse a.ui_link, #bw-virtual-server-collapse a.ui_link, #bw-virtual-server-1-collapse a.ui_link",function(){var e=URI.parseQuery(URI($(this).attr("href")).query()).dom,t="virtualmin";$('.switch-toggle input:not([id="open_'+t+'"]):checked').length&&set_switch_position(t),setTimeout(function(){$("aside select").val()!=e&&get_navigation_menu_virtualmin(e)},300)}),$("body").on("click",".file-input-wrapper",function(){var e=$(this).prev('input[type="radio"]').add($(this).parent("td").prev("td").find('input[type="radio"]'));1===e.length&&e.prop("checked",!0)}),$("body").on("click",".--to-new-tab",function(){$(this).attr("target","_blank")}),$("body").on("click",".favorites-menu a.menu-exclude-link, .right_pane_favorites_link",function(){var e=Test.strContains($(this).attr("href"),"/virtual-server/")?"dom":!!Test.strContains($(this).attr("href"),"/server-manager/")&&"id",t=Test.strContains($(this).attr("href"),"gparent")?"gparent":e,i=URI.parseQuery(URI($(this).attr("href")).query())[t],a="dom"===e?"virtualmin":"id"===e?"cloudmin":"webmin",s=$('.switch-toggle input:not([id="open_'+a+'"]):checked').length;s&&set_switch_position(a),e?setTimeout(function(){$("aside select").val()!=i&&("dom"===e?get_navigation_menu_virtualmin(i):"id"===e&&get_navigation_menu_cloudmin(i))},300):s&&get_navigation_menu_webmin()}),$("body").on("click",function(e){var t=$("aside select");$(e.target).attr("class")&&0===$(e.target).attr("class").indexOf("select2")||t&&t.length>0&&t.hasClass("select2-hidden-accessible")&&t.select2("close")}),$("a").each(function(){$(this).find("img").length&&$(this).css("text-decoration","none")}),$("body").on("keydown",function(e){var t=e.keyCode?e.keyCode:e.which,i=String.fromCharCode(t).toLowerCase();!$('aside input[name="search"]').is(":focus")&&v___available_session&&($(".-shell-port-").hasClass("opened")||v___location_path!=v___location_prefix+"/server-manager/gvnc.cgi"&&v___location_path!=v___location_prefix+"/server-manager/login.cgi"&&v___location_path!=v___location_prefix+"/telnet/"&&v___location_path!=v___location_prefix+"/telnet/index.cgi"&&v___location_path!=v___location_prefix+"/stunnel/"&&v___location_path!=v___location_prefix+"/stunnel/index.cgi"&&($("input").is(":focus")||$("select").is(":focus")||$("textarea").is(":focus")||$(".modal.in").length||!i||!/[a-zA-Z0-9]/.test(i)||e.ctrlKey||e.altKey||e.metaKey||106===t||107===t||109===t||112===t||113===t||114===t||115===t||116===t||117===t||118===t||119===t||120===t||121===t||122===t||123===t||($(".dataTables_filter label input").length||$(".btn-accordion-filter").length?($(".btn-filter-top-right, .btn-accordion-filter").trigger("click"),$(".btn-filter-top-right .dataTable-mirror, .btn-accordion-filter .dataTable-mirror").focus().trigger("keyup")):setTimeout(function(){e.shiftKey&&"1"==i?$('aside input[name="search"]').focus().val("!"):$('aside input[name="search"]').focus().val(i)},1))))}),v___available_navigation&&($(document).ajaxSend(function(e,t,i){}).ajaxStop(function(){setTimeout(function(){0===v___available_session&&session.reauthenticate()},300)}).ajaxError(function(e,t){if(0===t.status){!$(".modal-connection-warning").length&&$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-error=1",data:!1,dataType:"text",error:function(e){var t=theme_language("theme_xhred_connection_error_details").replace("%server",location.host+v___location_prefix);theme_alert(theme_language("theme_xhred_connection_error"),t,!1,"md","danger","unplugged fa-lg","7 modal-connection-warning",0),setTimeout(function(){navigation_render_end(),navigation_detect(),reset_switch_position(),despinnerfy_buttons(),theme_shell_unlock()},200)}})}}),$.ajaxSetup({complete:function(e,t){(Test.strContains(e.responseText,v___page_signin_form)||e&&("auth-required=1"===e.getResponseHeader("Auth-type")||e.responseText&&e.responseText.indexOf("reset-fonts-grids-base")>-1&&e.responseText.indexOf("window.top.location = window.location;")>-1))&&session.reauthenticate()},beforeSend:function(e,t){t.url=navigation_trigger(t.url,1)}})),function(){if("function"==typeof Messenger.Message){var e,t,i,a={}.hasOwnProperty,s=function(e,t){function i(){this.constructor=e}for(var s in t)a.call(t,s)&&(e[s]=t[s]);return i.prototype=t.prototype,e.prototype=new i,e.__super__=t.prototype,e};e=jQuery,i='
    \n \n \n \n \n \n \n
    ',t=function(t){function a(){return a.__super__.constructor.apply(this,arguments)}return s(a,t),a.prototype.template=function(t){var s;return(s=a.__super__.template.apply(this,arguments)).append(e(i)),s},a}(Messenger.Message),Messenger.themes.air={Message:t},Messenger.options={extraClasses:"messenger-fixed messenger-on-bottom",theme:"air"}}}.call(this),v___available_navigation){0==v___user_level&&settings_side_slider_enabled&&settings_side_slider_fixed&&get_server_data("data-slider-fixed","1"),1===v___initial_load&&(console.log("Welcome to Authentic Theme "+(v___theme_version_git||v___theme_version)+"\nhttps://github.com/qooob/authentic-theme"),v___theme_navigation_active=$(".switch-toggle input:checked").attr("id"),v___theme_navigation_active=v___theme_navigation_active?v___theme_navigation_active.replace("open_",""):get_server_data("product"),setTimeout(function(){var e=function(){$t_uri_virtualmin&&(get_navigation_menu_virtualmin_summary(),get_default_virtualmin_content(!1)),$t_uri_cloudmin&&get_default_cloudmin_content(!1),$t_uri_virtualmin||$t_uri_cloudmin||get_default_content()};$.when(get_server_tmp_var("goto",0,e)).then(function(t,i,a){if(a.responseText&&!get_server_data("initial-wizard")){if(URI(a.responseText).hostname()!==URI(location.href).hostname())return void get_pjax_content(v___location_prefix+"/sysinfo.cgi");if(Test.strContains(a.responseText,"virtual-server")){var s=URI.parseQuery(URI(a.responseText).query()).dom;(!$t_uri_virtualmin||$t_uri_virtualmin&&s!=$('select[name="dom"]').val())&&(set_switch_position("virtualmin"),get_navigation_menu_virtualmin(s||!1))}else if(Test.strContains(a.responseText,"server-manager")){var n=URI.parseQuery(URI(a.responseText).query()).id;(!$t_uri_cloudmin||$t_uri_cloudmin&&n!=$('select[name="sid"]').val())&&(set_switch_position("cloudmin"),get_navigation_menu_cloudmin(n))}else $t_uri_webmin||3==v___user_level||(set_switch_position("webmin"),get_navigation_menu_webmin("webmin")),3==v___user_level&&!$t_uri_webmail&&Test.strContains(a.responseText,"mailbox")&&Core.moduleAvailable("mailbox")?(set_switch_position("webmail"),setTimeout(function(){get_navigation_menu_webmin("webmail")},10)):3!=v___user_level||$t_uri_usermin||Test.strContains(a.responseText,"mailbox")||(set_switch_position("usermin"),setTimeout(function(){get_navigation_menu_webmin("webmin")},10));get_pjax_content(a.responseText)}else e()})},20),$.each(theme_config("get_options"),function(e,t){localStorage.setItem(v___server_hostname+"-"+t,window[t])}),navigation_select_label(),setTimeout(function(){fetch_right_pane_favorites()},300)),$("body").on("focus",".sidebar-search",function(){navigation_init_autocomplete("c",!1)}),$("body").on("blur",".sidebar-search",function(){setTimeout(function(){navigation_init_autocomplete("c",!0)},150)});information_check();progress.configure(),navigator.userAgent.match(/(iPod|iPhone|iPad)/)&&$("#content").attr("style","-webkit-overflow-scrolling: touch !important; overflow-y: scroll !important;"),$('a[target="page"][href="link/"]').first().length&&$('a[target="page"][href="link/"]').first().attr("target","blank"),$("aside").on("click",".select2-container .select2-selection__arrow b",function(e){e.preventDefault(),e.stopPropagation()}),$("aside").on("click",'a[href*="/file/"], a[href*="history.cgi"]',function(e){e.preventDefault(),e.stopPropagation(),window.open($(this).attr("href"),"_blank")}),$("body").on("keydown",".sidebar-search",function(e){if(-1!==get_server_data("webmail")&&13==e.keyCode)return e.preventDefault(),!1}),$("body").on("click",".mobile-menu-toggler",function(e){$this=$(this),$("aside").hasClass("hidden-xs")?($(this).addClass("selected").find("button").addClass("btn-primary").removeClass("btn-default"),$(".__logo")&&($(".__logo").css("transform","translate(0px, 0px)"),setTimeout(function(){$(".__logo").transition({y:"-140px"},1.5*$settings_animation_left_slide_time)},1100)),$this.css("transform","translate(0px, 0px)"),$("aside").css("transform","translate(0px, 0px)"),$(".switch-toggle").css("display","none"),$("aside").removeClass("hidden-xs"),$("aside, .mobile-menu-toggler").transition({x:settings_leftmenu_width},2.5*$settings_animation_left_slide_time),$(".switch-toggle").css("display","table")):navigation_hide()}),$.each($('ul.navigation li.navigation_external a[href^="../servers/link.cgi/"]'),function(e,t){$(this).attr("href",v___location_href+$(this).attr("href").replace("../","").replace(/\/$/g,""))}),$("body").on("click",'.navigation a[target="page"], .user-links a[target="page"]',function(){navigation_hide()}),$("body").on("click",".navigation > li .navigation_external_link",function(e){e.preventDefault(),e.stopPropagation(),b=$(this),window.open(b.attr("href"),"_blank")}),$("body").on("click",".navigation > li:not('.sub-wrapper'):not('.menu-container'):not('.navigation_external'):not([data-linked])",function(e){if(e.preventDefault(),e.stopPropagation(),v___blocked_navigation=1,"undefined"==typeof $processing&&($processing=!1),!$processing){$processing=!0;var t=$("a",this).attr("href"),i=$("a",this).attr("target"),a=$(this);i&&$(".navigation > li > ul.sub > li").each(function(){$(this).removeClass("sub_active").find("span.current").remove()}),$.when($("#sidebar .navigation > li").each(function(){var e=$(this),t=e.find("a").is("[data-has-sub-link]");e.is(a)||(e.removeClass("active"),"#search"!=e.find("a").attr("href")&&t&&$(e.find("a").attr("href")).slideUp($settings_animation_left_slide_time))})).done(function(){a.hasClass("active")?a.removeClass("active"):"#hide"!=t&&!i&&a.addClass("active"),setTimeout(function(){$(t).is(":visible")&&"#hide"!=t&&!i?a.addClass("active"):a.removeClass("active"),$processing=!1},2*$settings_animation_left_slide_time>0?2*$settings_animation_left_slide_time:1),$(t).slideToggle($settings_animation_left_slide_time)}),"#search"==t&&$('#sidebar input[name="search"]').focus()}}),$("body").on("click",".navigation > li > ul.sub > li:not('.menu-container')",function(e){if(!e.target||!$(e.target).is("li")){var t=$(this);$(".navigation > li:not('.has-sub')").removeClass("sub_active").find("span.current-large").remove(),$(".navigation > li > ul.sub > li").each(function(){$(this).removeClass("sub_active").find("span.current").remove()}),$("#webmin_search_form").find('input[name="search"]').val(""),t.addClass("sub_active").append('')}}),$(".navigation > li > ul.sub").each(function(){""===$(this).attr("id")&&$(this).remove()}),$('.switch-toggle label[for^="reserve_empty"]').on("click",function(e){e.preventDefault()}),$("body").on("click",'a[data-refresh="true"]',function(e){e.preventDefault(),get_pjax_content(v___location_resource)}),$("body").on("click",function(e){$("ul.dropdown").is(e.target)||0!==$("ul.dropdown").has(e.target).length||0!==$(".open").has(e.target).length||$("ul.dropdown").removeClass("open")}),$(".switch-toggle").on("contextmenu","label",function(e){e.preventDefault();var t=$(this).attr("for").replace("open_","");if($(this).prev("input").is(":checked")){var i=v___location_href;set_server_tmp_var("goto",navigation_trigger(i,1)),setTimeout(function(){theme_open_new_tab(i)},200)}else if("virtualmin"===t||"cloudmin"===t){var a;a="cloudmin"===t?"/server-manager/index.cgi":"/virtual-server/index.cgi";var s=navigation_trigger(a,2);set_server_tmp_var("goto",navigation_trigger(s,1)),setTimeout(function(){theme_open_new_tab(s)},200)}else if("webmail"===t){n=v___location_prefix+"/mailbox/index.cgi?"+$__theme_navigation;set_server_tmp_var("goto",navigation_trigger(n,1)),setTimeout(function(){theme_open_new_tab(n)},200)}else{var n=v___location_prefix+"/sysinfo.cgi?"+$__theme_navigation;set_server_tmp_var("goto",navigation_trigger(n,1)),setTimeout(function(){theme_open_new_tab(n)},200)}}),$(".switch-toggle").on("click","input.dynamic",function(e){if(get_onbeforeunload_status()){e.preventDefault();var t=$(".switch-toggle input:checked").attr("id");get_onbeforeunload_message([],{href:"::switch::"+t})}else"open_thirdlane"!=$(this).attr("id")?(set_switch_position($(this).attr("id").replace("open_","")),"open_dashboard"!=$(this).attr("id")?get_navigation_and_content($(this).attr("id").replace("open_",""),0,0):get_pjax_content(v___location_prefix+"/sysinfo.cgi")):location.href=v___location_prefix+"/asterisk/index.cgi"}),navigation_init_select(),$("aside").mCustomScrollbar({axis:"y",theme:"minimal",scrollInertia:100,scrollButtons:!1,callbacks:{onScroll:function(){$(".mobile-menu-toggler").is(":visible")||($(".form-control.sidebar-search").blur(),$("aside select")&&$("aside select").length>0&&$("aside select").hasClass("select2-hidden-accessible")&&$("aside select").select2("close"))}}}),$(".loader").append('
    '),$("body").on("mouseover","#loader-close, #loader-close-sm",function(){$(this).find(".fa").removeClass("hidden")}).on("mouseout","#loader-close, #loader-close-sm",function(){$(this).find(".fa").addClass("hidden")}),$("body").on("click","#loader-close-sm > .fa",function(e){navigation_render_end()}),__shell_commands__i__=0,$(".form-control.sidebar-search").focus(function(e){$(".__logo").addClass("inited"),e.preventDefault(),e.stopPropagation(),__shell_commands__i__=0});var e=$("body").find(".-shell-port-"),t=e.find('input[data-command="true"]'),a=e.find("div[data-output]"),s=e.find(".-shell-port-container"),n=e.data("autocomplete");if($(window).keydown(function(i){var o=$("body").find(".-shell-port-").hasClass("opened");if(!o&&v___available_session&&(navigation_focus_search(i),theme_shortcuts(i)),38===i.keyCode&&(t.is(":focus")&&o||$(".form-control.sidebar-search").is(":focus"))&&i.preventDefault(),9===i.keyCode&&t.is(":focus")&&o){if(i.preventDefault(),!n)return;var r=t.val().trim().split(/\s+(?!-)/),_=r.length,l=r[0]&&-1===r[0].indexOf("-")?0:1,d=r[1]&&-1===r[1].indexOf(":")?0:1,c=t.val().endsWith(" "),p="service"===$.trim(r[0]),f="systemctl"===$.trim(r[0]),g=$.trim(r[0])&&$.trim(r[0]).startsWith("chown"),u=1!==r.length||!t.val().length||l||c?p||f?"services":g?"permissions":"lists":"commands";if(!$.trim(t.val()).length)return;var m=t.val(),h=e.find(".-shell-port-pwd").attr("data-pwd");if("services"===u){if("systemctl"===(u=p?"service":"systemctl")&&3!==r.length)return;m="service"==u?$.trim(r[1]):$.trim(r[2]),"service"===$.trim(r[0])&&(2===r.length&&c||3===r.length)&&(m=3===r.length?"::::"+$.trim(r[1])+"::::"+$.trim(r[2]):"::::"+$.trim(r[1]))}if(g){if(1===_&&!c)return void t.val($.trim(r[0])+" ");d&&$.trim(r[1])?c||r[2]?(u="lists",m=h+"/::::"+$.trim(r[2])):(u="groups",m=$.trim($.trim(r[1]).split(":")[1])):(u="users",m=$.trim(r[1]))}"lists"!==u||g||(m=h+"/::::"+$.trim(r[1])+"::::"+$.trim(r[0])+"::::"+$.trim(r[2])),$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-get_autocompletes=1&xhr-get_autocomplete_type="+u+"&xhr-get_autocomplete_string="+m,data:!1,dataType:"json",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var i=e.length;if(1===i)if("service"===u||"systemctl"===u||"lists"===u){var n=$.trim(r[0]),o=$.trim(r[0])+" "+$.trim(r[1]);"lists"===u?("cd"===n&&e[0].endsWith("/")||"cd"!==n)&&("cd"===n||"cat"===n?t.val(n+" "+e[0]):$.trim(r[2])?t.val(o+" "+e[0]):t.val(n+" "+e[0])):"service"!==n||2!==r.length&&3!==r.length?"systemctl"===n&&3===r.length&&t.val(n+" "+$.trim(r[1])+" "+e[0]):2===r.length?t.val(n+" "+e[0]+" "):3===r.length&&t.val($.trim(r[0])+" "+$.trim(r[1])+" "+e[0])}else g?d?c||r[2]?t.val($.trim(r[0])+" "+$.trim(r[1])+" "+e[0]):t.val($.trim(r[0])+" "+$.trim($.trim(r[1]).split(":")[0])+":"+e[0]+" "):t.val($.trim(r[0])+" "+e[0]+":"):t.val(e[0]+" ");else if(i>1){var _=""+$(".-shell-port-type").text()+" "+Convert.htmlEscape(t.val())+"\n";a.find("pre").append(_),a.find("pre").append(Convert.htmlEscape(e.join("\n")+"\n")),s.scrollTop(s[0].scrollHeight)}setTimeout(function(){t.focus().mousedown()},10)}},error:function(){}})}}),$(window).keyup(function(s){var n=$("body").find(".-shell-port-").hasClass("opened");if(n){var o=0,r=0,_=0,l=$(".form-control.sidebar-search"),d=$t_uri_cloudmin&&$('a[target="page"][href*="/server-manager/save_serv.cgi"][href*="shell=1"]').length,c=0,p=0;if(d)p=v___location_prefix+"/server-manager/shell.cgi";else{if(!Core.moduleAvailable("shell"))return;p=v___location_prefix+"/shell/index.cgi"}if((n||l.is(":focus"))&&8===s.keyCode&&(__shell_commands__i__=0),n?(o=$.trim(t.val()),r=1,_=1):(o=l.val(),r=void 0!==l.val(),_=0),(_||r&&(!o.trim()||o.trim().startsWith("!")))&&(38==s.keyCode||40==s.keyCode)){s.preventDefault(),s.stopPropagation(),void 0===localStorage.getItem(v___server_hostname+"-shell_commands")&&localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify({}));var f=JSON.parse(localStorage.getItem(v___server_hostname+"-shell_commands")),g=f?f.length:0;if(0===__shell_commands__i__&&!o&&40==s.keyCode)return;if(0===__shell_commands__i__&&o&&38==s.keyCode)return void(c=1);if(__shell_commands__i__=40==s.keyCode?++__shell_commands__i__:--__shell_commands__i__,__shell_commands__i__<0&&38===s.keyCode?__shell_commands__i__=g-1:__shell_commands__i__>g&&(__shell_commands__i__=0),f&&f[__shell_commands__i__%g]){if(!$.isEmptyObject(f)&&(__shell_commands__i__==g&&38===s.keyCode||__shell_commands__i__==g&&40===s.keyCode||c))return n?t.val("").focus():l.val("").focus(),void(__shell_commands__i__=0);if(n){var u=f[__shell_commands__i__%g].replace(/^!/,"");t.val(Convert.htmlUnEscape(u)).focus()}}return}if(r&&o.trim().startsWith("!")&&27==s.keyCode)return s.preventDefault(),s.stopPropagation(),void l.val("").focus();if(r&&o.trim().startsWith("!")&&13==s.keyCode&&(l.addClass("_shell_form_"),s.preventDefault(),s.stopPropagation(),1==Core.moduleAvailable("shell")||d)){t.val(o.trim().substring(1)).focus(),theme_shell_open(e);var m=$.Event("keyup");m.keyCode=13,t.trigger(m)}var h=e.find(".-shell-port-container"),v=e.find(".-shell-port-pwd"),b=v.attr("data-pwd"),y=$.trim(t.val()),k=0,x=s.keyCode?s.keyCode:s.which,w=s.altKey&&"l"==String.fromCharCode(s.which).toLowerCase();if(27===x)return void theme_shell_close(e);if(t.is(":focus")||check_selected_text()||(s.ctrlKey||s.altKey||s.shiftKey||s.metaKey||t.val(t.val()+String.fromCharCode(s.which).toLowerCase()),t.focus()),(y&&13===x||w)&&(Core.moduleAvailable("shell")||d)){if(1===v___shell_processing)return;v___shell_processing=1,("clear"==y||"reset"==y||"exit"==y||w)&&(a.find("pre").html(""),theme_shell_clear(t),"exit"==y&&theme_shell_close(e)),"cd ~"==y&&(k=y,y="cd "+v.attr("data-home"));var C=!1;if("cd /"==y&&(C="/"),"history -c"==y){localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify({}));O=""+$(".-shell-port-type").text()+" "+y+"\n";a.find("pre").append(O),theme_shell_clear(t),h.scrollTop(h[0].scrollHeight);var T='',S=new FormData($(T)[0]);$.ajax({type:"POST",url:p+"?stripped=1&stripped=2",data:S,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){Test.strContains(e,v___page_signin_form)&&(v___available_session=0)},error:function(e){}})}else if($.trim(y).startsWith("history -d")){var I=y.split(" ")[2];I&&I.length&&Test.numeric(I)&&$.ajax({type:"POST",url:v___location_prefix+"/index.cgi/?xhr-shell-pop="+I,data:!1,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){if("1"==e){var t=JSON.parse(localStorage.getItem(v___server_hostname+"-shell_commands"));localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify(t.filter(function(e,t){return t!==parseInt(I)-1})))}},error:function(e){}}),theme_shell_clear(t)}else if(y.startsWith("history")){theme_shell_clear(t);var j=JSON.parse(localStorage.getItem(v___server_hostname+"-shell_commands")),D=j?j.length:0,P=D?D.toString().length:0,O=""+$(".-shell-port-type").text()+" "+y+"\n";$.each($(j),function(e,t){var a=e.toString().length,s="";for(i=0;i '+(d?'':"")+' ',A=new FormData($(q)[0]);t.attr("readonly","true"),$.ajax({type:"POST",url:p+"?stripped=1&stripped=2",data:A,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var i=$(".-shell-port-type").text(),s=$(e).find("pre").html().replace(/>>/g,">"+i),n=$(e).find('select[name="pcmd"] option').map(function(){return Convert.htmlEscape($(this).val())}).get().reOrder(-1,0).reverse();localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify(n)),newPwd=$(e).find('input[name="pwd"]').val(),a.find("pre").append(k?s.replace(new RegExp(y,"g"),k):s),v.text(C||(newPwd==v.attr("data-home")?"~":newPwd.split("/").filter(function(e){return""!=$.trim(e)}).slice(-1)[0])).attr("data-pwd",C||newPwd).attr("title",C||newPwd),theme_shell_adapt(),theme_shell_clear(t),h.scrollTop(h[0].scrollHeight),setTimeout(function(){v___shell_processing=0,__shell_commands__i__=0,t.removeAttr("readonly").focus()},100)}},error:function(e){}})}}}),$("body").on("keyup","#webmin_search_form",function(e){var t=$(this).find("input.sidebar-search"),i=t.val(),a=$("body").find(".-shell-port-");i&&13==e.keyCode&&(i.startsWith("!")?theme_shell_open(a,i):($(this).trigger("submit"),t.val("")))}),$("body").on("click","#right-side-tabs .right_pane_favorites_link",function(e){$(".favorites-menu-outer.hover + .favorites-menu-close").trigger("click")}),$("aside").on("click",".user-links > li.favorites",function(e){$(".favorites-menu-outer").addClass("hover")}),$("body").on("click","nav.favorites-menu li a",function(){}),$("body").on("click",".favorites-menu-close, nav.favorites-menu li a",function(){$(".favorites-menu-outer").removeClass("hover")}),$(document).on("keydown",function(e){"0px"==$(".favorites-menu-outer").css("left")&&27==e.keyCode&&$(".favorites-menu-outer").removeClass("hover")}),favicon=new Favico({animation:"none"}),0==v___user_level&&1==Core.moduleAvailable("status")){var o=localStorage.getItem(v___server_hostname+"-right-side-tab")?localStorage.getItem(v___server_hostname+"-right-side-tab"):"#right-side-tabs-sysinfo";$("body").append(' \t\t \t\t \t'),$('a[href="'+o+'"]:visible').length||$("#right-side-tabs ul.nav-tabs li a:visible").trigger("click"),$('#right-side-tabs .nav.nav-tabs a[data-toggle="tab"]').on("shown.bs.tab",function(e){var t=$(e.target).attr("href");localStorage.setItem(v___server_hostname+"-right-side-tab",t)}),$("body").on("click",".right-side-tabs-favorites-ctl",function(e){$(".favorites-menu-outer").hasClass("hover")?$(".favorites-menu-close").trigger("click"):$(".user-link.favorites").trigger("click")}),$("body").on("click",'#right-side-tabs a:not([data-toggle="collapse"]):not([role="tab"]):not(.list-group-item)',function(e){$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")}),$("body").on("click","#right-side-tabs .info-container .graph-container-fw",function(e){var t,i=Core.moduleAvailable("proc"),a=$(this).attr("class"),s=a.indexOf("cpu_")>-1?"cpu":a.indexOf("mem_")>-1?"mem":a.indexOf("virt_")>-1?"virt":"disk";"cpu"==s&&i?t=v___location_prefix+"/proc/index_cpu.cgi":"mem"!=s&&"virt"!=s||!i?"disk"==s&&Core.moduleAvailable("disk-usage")?t=v___location_prefix+"/disk-usage":"disk"==s&&Core.moduleAvailable("quota")&&(t=v___location_prefix+"/quota/list_users.cgi?dir=%2F"):t=v___location_prefix+"/proc/index_size.cgi",t&&get_pjax_content(t),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")}),$("body").on("click","#right-side-tabs .fa-dashboard",function(e){get_onbeforeunload_status()?(this.href=v___location_prefix+"/sysinfo.cgi",get_onbeforeunload_message(e,this)):get_pjax_content(v___location_prefix+"/sysinfo.cgi"),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")}),$("body").on("click","#right-side-tabs [data-click-about]",function(e){theme_update_notice(0),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")})}else get_server_data("data-slider-fixed","0"),$(".right-side-tabs-toggler").addClass("hidden");$(".right-side-tabs .tab-pane").each(function(){$(this).css("height",$(window).height()-92)}),$(".right-side-tabs").on("mouseover",".list-group-item",function(e){$(this).find(".fa.fa-trash-o").removeClass("hidden"),!$(this).hasClass("opacity-0_3")&&$(this).find(".fa-clear-all").removeClass("hidden")}).on("mouseout",".list-group-item",function(e){$(this).find(".fa.fa-trash-o").addClass("hidden"),$(this).find(".fa-clear-all").addClass("hidden")}),$(".right-side-tabs").on("click","[data-port-href]",function(e){e.preventDefault(),e.stopPropagation(),open($(this).data("port-href"))}),$("body").on("click",'a[data-id^="csf_"], a[data-type^="csf_"]',function(e){get_bundle_csf()}),$("body").on("click",'a[href*="mysql"], a[href*="postgresql"]',function(e){get_bundle_sql()}),$(".right-side-tabs").on("click",'a.list-group-item[data-type="csf_deny"]',function(e){e.preventDefault(),e.stopPropagation(),$(e.target).is(".fa.fa-trash-o")||$(e.target).is(".fa-clear-all")||$(e.target).is("[data-port-href]")||(get_bundle_csf(),$("body").append(' \t\t\t\t\t\t'),$("form#csf_temporary_ip_entries").submit().remove(),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click"))}),$(".right-side-tabs").on("click contextmenu","a.list-group-item",function(e){if(e.preventDefault(),"contextmenu"==e.type)return $(this).find(".fa-clear-all").trigger("click"),e.preventDefault(),void e.stopPropagation();if($(e.target).is(".fa.fa-trash-o")||$(e.target).is(".fa-clear-all")||$(e.target).is("[data-port-href]")){if($(e.target).is(".fa-clear-all"))return $(this).addClass("opacity-0_3"),$(this).find(".fa-clear-all").addClass("hidden"),void slider_mark_notification_read($(this).attr("id"),$(this).data("type"),1,1);$(this).animate({opacity:"0"},$settings_animation_left_slide_time,function(){$(this).remove(),localStorage.removeItem(v___server_hostname+"-notifications_"+$(this).attr("id")+"_"+$(this).data("type")),slider_add_no_notifications()})}else $(this).attr("href")&&$(this).attr("href").length&&"undefined"!=$(this).attr("href")&&"csf_deny"!=$(this).attr("data-type")?($(this).addClass("opacity-0_3"),$(this).find(".fa-clear-all").addClass("hidden"),slider_mark_notification_read($(this).attr("id"),$(this).data("type"),1,1),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click"),get_pjax_content($(this).attr("href"))):($(this).addClass("opacity-0_3"),slider_mark_notification_read($(this).attr("id"),$(this).data("type"),1,1))}),$(".right-side-tabs-dismiss i.fa-reload").click(function(e){information_update()}),$(".right-side-tabs-dismiss i.fa-clear-all").click(function(e){slider_mark_group_notifications_read(!1)}),$(".right-side-tabs-dismiss i.fa-trash").click(function(e){$(".right-side-tabs .list-group-item:not(.no-notifications)").animate({opacity:"0"},$settings_animation_left_slide_time,function(){$(this).remove(),slider_remove_all_notifications(),slider_add_no_notifications()})}),$("body").on("click",".right-side-tabs-toggler:not(.hidden)",function(e){$(this).hasClass("opened")?($(this).removeClass("opened"),$(this).animate({right:"0"},$settings_animation_left_slide_time),$(".right-side-tabs").animate({right:"-302"},$settings_animation_left_slide_time)):($(this).addClass("opened"),$(this).animate({right:"300"},$settings_animation_left_slide_time),$(".right-side-tabs").animate({right:"0"},$settings_animation_left_slide_time))}),$(".right-side-tabs .tab-pane").mCustomScrollbar({axis:"y",theme:"minimal",scrollInertia:100,scrollButtons:!1}),settings_button_tooltip&&$("body").tooltip({selector:'li[data-toggle="tooltip"], li > a[data-toggle="tooltip"].menu-exclude-link, label[data-toggle="tooltip"]',container:"body",html:!0,delay:{show:800,hide:30}}),$("body").on("click",".user-link.palette-toggle",function(e){theme_toggle_night_mode()}),$("body").on("click",".user-link.ported-console",function(t){theme_shell_check_available()&&theme_shell_open(e)}),slider_add_no_notifications(),slider_check_notifications()}$("body").on("click","#headln2c > .favorites:not(.dummy), .xcustom-favorites:not(.dummy)",function(e){e.preventDefault();var t=URI(v___location).resource();if($(this).hasClass("fa-star-o")){$(this).removeClass("fa-star-o").addClass("fa-star text-warning");var i=$("#headln2c > span[data-main_title]").text(),a=$(".has-sub.active").text().trim(),s=$(".sub_active").text().trim(),n="",o="";($t_uri_virtualmin||$t_uri_cloudmin)&&(n=$("aside .ui_select option:selected").text()),$('body[class^="'+v___module_file_manager+'"]').length&&(o=(o=URI.parseQuery(URI(v___location).query()).path)?"["+o+"]":"[/]"),favorites_add(t,(n.length?n+" - ":"")+(a.length?a+"/":"")+(s.length?s+(i.trim().length?": ":""):"")+i.trim()+(o.length?" "+o:""),$t_uri_virtualmin?"virtualmin":$t_uri_cloudmin?"cloudmin":"webmin"),favorites_save()}else $(this).addClass("fa-star-o").removeClass("fa-star text-warning"),favorites_remove(t)}),1===v___initial_load&&favorites_init(),$("#favorites-menu .favorites-menu-content").on("mouseover","li:not(.exclude) span.f__c, li:not(.exclude) span.f__c small",function(){$(this).find("small").removeClass("hidden")}).on("mouseleave","li:not(.exclude) span.f__c, li:not(.exclude) span.f__c small",function(){$(this).find("small").addClass("hidden")}),$("#favorites-menu .favorites-menu-content").on("mouseover","li:not(.exclude) small",function(){$(this).find(".fa-times").removeClass("fa-times").addClass("fa-times-circle"),$(this).animate({"font-size":"0.7em","margin-top":"-2px","margin-left":"-1px"},160)}).on("mouseleave","li:not(.exclude) small",function(){$(this).find(".fa-times-circle").removeClass("fa-times-circle").addClass("fa-times"),$(this).animate({"font-size":"0.6em","margin-top":"-1px","margin-left":"0"},80)}),$("#favorites-menu .favorites-menu-content").on("click","li:not(.exclude) small .fa-times-circle",function(e){e.preventDefault(),e.stopPropagation(),favorites_remove($(this).parents("a").attr("href"))}),$(document).on("keydown",function(e){"0px"==$(".favorites-menu-outer").css("left")&&27==e.keyCode&&$(".favorites-menu-outer").removeClass("hover")}),$("body").on("shown.bs.modal",".modal.in",function(){$(this).focus()}),$("body").on("click",".module-help",function(e){popover_visibility_position($(this))}),$("body").on("click",function(e){$(e.target).is(".close-popover-trigger")&&$(e.target).parent().parent().popover("hide");var t=".showpass-popover";$(t).length&&$(t).each(function(){$(this).is(e.target)||0!==$(this).has(e.target).length||0!==$(".popover").has(e.target).length||$(this).popover("hide")})}),$('body:not(".mobile-menu-toggler")').on("click",function(e){$(e.target).is('.wbm-sm, input[name="product-switcher"], label[for*="open_"], span, .sidebar-search, .select2-selection__rendered, .select2-selection')||navigation_hide()}),$("body").on("change",'input[type="checkbox"], input[type="radio"]',function(e){var t=$(this).parents("tr.ui_checked_columns");t.length&&t.find("input:first").is($(this))&&($(this).is(":checked")?t.addClass("hl-aw"):t.removeClass("hl-aw"),"function"==typeof __r____changed&&__r____changed())}),$("body").on("click",".ui_link, .ui_link_replaced",function(){$.each($('input[type="checkbox"]'),function(){$(this).is(":checked")?$(this).parents("tr.ui_checked_columns").addClass("hl-aw"):$(this).parents("tr.ui_checked_columns").removeClass("hl-aw"),"function"==typeof __r____changed&&__r____changed()})}),$("body").on("click",'#extended_sysinfo-1 span[data-entry="nf_seen"]',function(e){e.preventDefault();var t=$(this),i=$('form[action*="seen_newfeatures.cgi"]');$.ajax({type:"GET",url:i.attr("action"),data:!1,statusCode:{200:function(){t.parents(".panel.panel-default").remove()}}})}),$("body").on("click",'#extended_sysinfo-1 span[data-entry="right_upok"]',function(e){e.preventDefault();$(this);var t=$('form[action*="package-updates/update.cgi"]');t.attr("method","POST"),$("").attr({type:"submit",value:1}).appendTo(t),$('input[name="u"]').appendTo(t),t.submit()}),$("body").on("click","a#atclearcache",function(e){set_onbeforeunload_status(0,0),Object.keys(localStorage).forEach(function(e){/^allowed_trigger|^notifications_|^sysinfo_/.test(e)&&localStorage.removeItem(v___server_hostname+"-"+e)}),$(".right-side-tabs-dismiss .fa-trash").trigger("click"),$(".right-side-tabs-dismiss .fa-refresh").trigger("click");var t=$(this);spinnerfy_buttons(t,[1.5,-33,"small",1e3])}),$("body").on("click",function(e){$(e.target).is('select[name="settings_navigation_color"], select[name="settings_background_color"], select[name="settings_side_slider_palette"], input[name="settings_side_slider_fixed"], label[for^="settings_side_slider_fixed"], div.aradio')||$(".right-side-tabs-toggler").hasClass("hidden")||!$(".right-side-tabs-toggler").hasClass("opened")||$(e.target).parents("#right-side-tabs").is("#right-side-tabs")||$(e.target).is(".btn-menu-toggler")||$(e.target).is(".fa-bell")||$(e.target).is("li.user-link.favorites")||$(e.target).is(".badge.badge-danger")||$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")}),$("body").on("click",".authentic_update:not(.disabled)",function(e){e.preventDefault(),e.stopPropagation();var t="1"==$(this).data("stable")?1:0;theme.update(t)}),$("body").on("click",'a[data-href="#theme-info"]',function(){theme_update_notice(0)}),$("body").on("hide.bs.modal","#update_notice",function(){$(this).hasClass("r")?($("body").append('
    '),$("div.update_notice_overlay").animate({opacity:1},560,function(){setTimeout(function(){theme_reload()},100)})):($("#content").animate({"margin-left":___________content_initial_},280),$("aside").animate({"margin-left":0},280,function(){$(".right-side-tabs, .right-side-tabs-toggler").removeClass("pointer-events-none bg-filter-grayscale-opacity50"),$(".container-fluid").removeClass("bg-filter-blur-grayscale-opacity50")})),$("#update_notice").remove()}).on("show.bs.modal","#update_notice",function(){$("#update_notice").length;$(this);var e=$("aside").css("left");___________content_initial_=$("#content").css("margin-left"),________version_date_obj=$(this).find(".modal-body > h4:first-child"),________version_curr_text=________version_date_obj.text().split(/\s+/)[1],________version_first_text=$(".version_separator:last").text(),________multi_in_branch=$(".version_separator").length,_____version__x=________version_first_text+"..."+________version_curr_text,__release_time=v___theme_version_git.slice(-4,-2)+":"+v___theme_version_git.slice(-2),_____release_date_=________version_date_obj.text().match(/\(([^)]+)\)/),_____release_date=!!_____release_date_&&_____release_date_[1],__release_date_time=_____release_date+(__release_time.length>2?", "+__release_time:"");var t=$(".version_separator"),i=theme_language("theme_xhred_global_development_version");$.each(t,function(){$(this).attr("target","_blank")}),setTimeout(function(){$(".container-fluid").addClass("bg-filter-blur-grayscale-opacity50")},0),$("#content").animate({"margin-left":0},450),$("aside").animate({"margin-left":e},450),$(".right-side-tabs, .right-side-tabs-toggler").addClass("pointer-events-none bg-filter-grayscale-opacity50");var a=$(this).find(".modal-body h4"),s=$(this).find(".modal-body h4:first");if(!$(this).find(".modal-body h4:first .diffctl").length){r=new RegExp(RegExp.quote(________version_curr_text),"g");________multi_in_branch&&(a.replaceText(r,""+_____version__x+""),a.replaceText(/Version/,"Versions"));var n=$(this).find('.modal-body h4:contains("patch")').length;if(a.length&&n){var o=parseFloat($(this).find('.modal-body a[href*="authentic-theme/releases"]:first').text().match(/-?(?:\d+(?:\.\d*)?|\.\d+)/)[0]);s.append('
    "+theme_language("theme_xhred_global_committed_on")+": "+__release_date_time+'" class="btn btn-transparent diffctl text-dark text-force-link-hover" href="https://github.com/qooob/authentic-theme/compare/'+o+'...master">
    '),s.after(' '+i+"")}else s.append('
    "+theme_language("theme_xhred_global_released_on")+": "+__release_date_time+'" class="btn btn-transparent diffctl changelogctl text-dark text-force-link-hover" href="https://github.com/qooob/authentic-theme/blob/master/CHANGELOG.md">
    ').append(''+________version_curr_text+"")}var r=new RegExp(RegExp.quote("("+_____release_date+")"),"g");a.replaceText(r,"");var _=[];$.each($(this).find('li span:contains("Fixed bugs")'),function(){var e=$(this),t=$(this).parent("li"),i=t.parent("ul"),a=t.find("a:not(.bctl)"),s=a.length;________multi_in_branch?(_.push(a),1===i.find("li").length&&(i.prev("hr").prev("a").remove(),i.prev("hr").remove(),i.addClass("no-data")),t.remove()):(e.html([e.text().slice(0,6),s+" ",e.text().slice(6)].join("")),t.find("a:first").before(''),t.find("a.bctl").click(function(e){a.toggleClass("hidden"),t.find("a.bctl i").toggleClass("fa-minus-square-o")}),a.addClass("obj-popup hidden"))}).promise().done(function(){if(________multi_in_branch&&!$(".bctl").length){$(".modal-body h4[data-development]").prev("hr").before('
    • Fixed bugs
    '),$(".modal-body span[data-bugs-container]").append(_);function e(e,t){return parseInt($(t).text().replace("#",""))'),t.find("a.bctl").click(function(e){i.toggleClass("hidden"),t.find("a.bctl i").toggleClass("fa-minus-square-o")}),i.addClass("obj-popup hidden");var s=$("div[data-bugs]"),n=s.find("a:not(.bctl)").length;!n&&s.prev(".hr-dashed").remove(),!n&&s.remove()}var o=$(".modal#update_notice h4 span");if(Test.strContains(o.text(),"...")&&Test.strContains(o.text(),"patch")){var r=parseInt(o.text().split("...")[1].substr(-1,1));r&&$.each($(".version_separator:not(.version_dev)"),function(e,t){e+1!=r?$(this).addClass("hidden"):$(this).text($(this).text()+"-"+theme_language("theme_xhred_global_release").toLowerCase())})}})}),$("body").on("click contextmenu",'a[data-href*="/webmin/edit_webmincron.cgi"]',function(e){e.preventDefault(),e.stopPropagation();var t=Core.moduleAvailable("virtual-server")?"virtual-server":"system-status";theme_messenger(''+theme_language("theme_xhred_sysinfo_update_start")+'.   ',1800,"info","sysinfoRecollect",0),$("body").find("#system-status").find('h3 > a[data-refresh="system-status"]').addClass("disabled btn-inverse").removeClass("btn-success"),$.ajax({type:"GET",url:v___location_prefix+"/"+t+"/recollect.cgi",data:!1,dataType:"text",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:(get_pjax_content(v___location_prefix+"/sysinfo.cgi",["success",theme_messenger,[''+theme_language("theme_xhred_sysinfo_update_end"),4,"success","sysinfoRecollect"],0]),information_update())},error:function(e){theme_messenger(''+theme_language("theme_xhred_sysinfo_update_failed"),20,"error","sysinfoRecollect")}})}),$("body").on("click",".csf-submit",function(e){e.preventDefault();var t=$(this).data("id");$("#"+t).submit()}),$("body").on("click",".inline-row input",function(e){$(this).is(":checked")?$(this).parents(".gl-icon-container").addClass("highlighted"):$(this).parents(".gl-icon-container").removeClass("highlighted")}),$("body").on("click contextmenu","div.icons-container, div.small-icons-container",function(e){if("click"===e.type&&$(e.target).is(".gl-icon-select")&&!v___available_navigation)e.preventDefault(),$(this).trigger("contextmenu");else if("contextmenu"===e.type){e.preventDefault(),$(this).find("input").is(":checked")?($(this).find("input").prop("checked",!1),$(this).removeClass("highlighted")):$(this).find("input").length&&($(this).find("input").prop("checked",!0),$(this).addClass("highlighted"));var t=$(e.target).is(".icon_link")?$(e.target).parent(".gl-icon-container").find(".fa-select, .fa-selected"):$(e.target).is(".gl-icon-select")?$(e.target):$(e.target).is("img")?$(e.target).parent("a").parent(".gl-icon-container").find(".fa-select, .fa-selected"):$(e.target).find(".fa-select, .fa-selected");t.hasClass("fa-select")?t.removeClass("fa-select").addClass("fa-selected"):t.removeClass("fa-selected").addClass("fa-select")}"function"==typeof db_check_selected&&db_check_selected()}),$("body").on("click",".row.icons-row.vertical-align .icons-container, .row.icons-row.vertical-align .small-icons-container",function(){$(this).hasClass("forged-xx-skip")}),__is_shifted=!1,__is_tabbed=!1,$(document).on("keyup keydown",function(e){var t=e.keyCode?e.keyCode:e.which;__is_shifted=e.shiftKey,__is_tabbed=9==t}),$("body").on("change",".onchange_form_submit_triggger",function(e){e.preventDefault(),$(this).parent("form").submit()}),$("body").on("click",'button.ui_form_end_submit[type="button"]:not(.disabled)',function(){var e=$(this).next('input[type="submit"].hidden'),t=$(this).parent(".btn-group").next('input[type="submit"].hidden');e.length||(e=t);var i=e.parent(),a=(i.parent("tr").find("form"),e.parents("form"));if(!a.length)return(a=e.closest("form")).length||(a=i.prev("form")),a.length||(a=i.prev().prev("form")),a.length||(a=i.prev().prev().prev("form")),a.append(a.nextUntil(i)),void $.each(i.find("select, input"),function(){$("").attr({type:"hidden",name:$(this).attr("name")?$(this).attr("name"):$(this).attr("id"),value:$(this).val()}).appendTo(a)}).promise().done(function(){a.submit()});$("").attr({type:"hidden",name:e.attr("name")?e.attr("name"):e.attr("id"),value:$.trim(e.val())}).appendTo(a),e.trigger("click")}),$("body").on("click",'.ui_form_end_submit:not(.disabled), .page_footer_submit:not(.disabled):not([href*="javascript:history"])',function(){var e=!1,t=!1;($(this).parents('form[action="fetch.cgi"]').length||$(this).parents('form[action="download.cgi"]').length&&!Core.curModule("cpan"))&&(e=1e3,t=1),Core.curModule("csf")?spinnerfy_buttons($(this),[2,-29,"small",t]):spinnerfy_buttons($(this),!1,e,t)}),$("body").on("dblclick",'.mppopup a[onclick*="fileclick("], .mppopup a[onclick*="parentdir("]',function(e){e.preventDefault()});var r=0,_=null;$("body").on("dblclick",'.mppopup a[onclick*="select("]',function(e){$(".mppopup button[data-mppopup_confirm]").trigger("click")}),$("body").on("click",'.mppopup a[onclick*="fileclick("], .mppopup a[onclick*="parentdir("]',function(e){if(e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation(),r++,$data_mppopup_value.val($v__mpp__g_ol),1===r)_=setTimeout(function(){if(r=0,"undefined"==typeof $v__mpp__g_gp&&($v__mpp__g_gp=0),$v__mpp__g_gp){var e=chooser_get_link($v__mpp__g_op);chooser_get(e)}else chooser_control($v__mpp__g_ol,0,0);$v__mpp__g_gp=0},240);else if(clearTimeout(_),r=0,$v__mpp__g_olt){var t=chooser_get_link($v__mpp__g_op);chooser_get(t)}else chooser_control($v__mpp__g_ol,1,1)}),$("body").on("click",".mppopup button[data-mppopup_confirm]",function(){chooser_control($data_mppopup_value.val(),1,1)}),$("body").on("show.bs.modal",".mppopup",function(){v__mpp__ml_t__e=0,$data_mppopup_value=$(".mppopup input[data-mppopup_value]"),$('.mppopup input[data-role="tagsinput"]').tagsinput({onTagExists:function(e,t){t.hide().fadeIn(),v__mpp__ml_t__e=1}})}),$("body").on("shown.bs.modal",".mppopup",function(){var e=$("body .mppopup").find(".modal-head");$("body .mppopup").find(".modal-body"),$("body .mppopup").find(".modal-body table"),e.find(".mppopup_filter > input");setTimeout(function(){$(".mppopup_filter_input").animate({opacity:1},$settings_animation_tabs_slide_time),$(".mppopup_filter_input").focus()},0)}),$("body").on("hidden.bs.modal",".mppopup",function(){refInput.removeClass("refInputData"),$('.mppopup input[data-role="tagsinput"]').tagsinput("destroy"),$("body .mppopup").remove(),$("button[data-mmclick].disabled, input[data-mmclick].disabled").removeClass("disabled").removeAttr("disabled")}),$("body").on("click",".mppopup_multi_done",function(e){refInput.val($.trim($('.mppopup input[data-role="tagsinput"]').val().replace(/,/g," "))),$('.mppopup span[aria-hidden="true"]').trigger("click")}),$("body").on("keyup",".mppopup_filter_input",function(e){var t=e.which,i=$(".mppopup table tbody tr:visible"),a=i.find("td:first-child a");if(!$(".mppopup .breadcrumbx").length){if(13!=t||1!==i.length||e.shiftKey){if(13==t&&1===i.length&&e.shiftKey){a.trigger("click").trigger("dblclick");var s=$(".mppopup .mppopup_multi_done:visible");s.length&&setTimeout(function(){s.trigger("click")},240)}}else a.trigger("click");$(".mppopup table tbody tr.noresults").length||$(".mppopup table tbody").append(''+theme_language("theme_xhred_global_no_results_found")+"");var n=$(".mppopup table tbody tr:visible:not(.noresults)"),o=$(".mppopup table tbody tr.noresults");n.length?o.addClass("hidden"):o.removeClass("hidden")}}),$("body").on("click","button[data-mmclick]:not(.disabled), input[data-mmclick]:not(.disabled)",function(e){e.preventDefault(),e.stopPropagation(),refInput=chooser_get_target($(this),1);var t=$(this),i=refInput.val(),a=encodeURIComponent(i),s=$(this).attr("data-mmclick").match("window.open\\(['\"]*(.*?)(\\s*['\"]*,.*?)"),n=s[1].match(/(\w+\.[a-z]{3,4})/gi)[0].replace(".cgi","");if(t.addClass("disabled").attr("disabled","disabled"),s[1]){var o=s[1].replace("encodeURIComponent(ifield.value)","refInputCurrValSafe");o=o.replace('"+"',"").replace('"+',"").replace("refInputCurrValSafe",a);function r(e,t,a,s,o){var r;r=o?' ":' ";var _=' ";$("body").append(_),refInput.addClass("refInputData"),$("body .mppopup").modal("show")}function _(e){e[1].startsWith("/")?$v__mpp__g_op=e[1]:$v__mpp__g_op="/"+e[1]}$.ajax({type:"POST",url:o,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var t=e,i=e.match(')<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/<\/body>|<\/html>/gi,""),i=$(t).filter(".table").html(),a=$(t).filter(".table").prev("b").html();r(t=chooser_breadcrumbs(a)+''+i+"
    ",0,0,refInput,0)}}});else if($.isArray(i))_(i),$.ajax({type:"POST",url:$v__mpp__g_op,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var t=e.replace(/<(!doctype|script|link|meta)\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/<\/body>|<\/html>/gi,"");r(t=''+$(t).filter("table").html()+"
    ",0,0,refInput,1)}}});else{if($.isArray(i)&&-1===i[1].indexOf("&multi=1"))return;var a=t,s=$(a).filter("table").html();r(''+s+"
    ",0,0,refInput,0)}}}})}else $(this).removeClass("disabled"),$(this).attr("onclick",$(this).attr("data-mmclick")).removeAttr("data-mmclick"),$(this).trigger("click")}),$("body").on("click",".generate-password-key",function(e){var t=theme_password_generator();$("body").append('');var i=new Clipboard(".tmp-clipboard-obj");$(".tmp-clipboard-obj").trigger("click"),$(".tmp-clipboard-obj").remove(),i.destroy(),theme_messenger(''+theme_language("theme_xhred_password_generator_new_success").replace("%password",' '+Convert.htmlEscape(t)+" "),10,"success","newGeneratedPassword")}),$("body").on("click",'aside li[data-linked] a[href="'+v___location_prefix+'/shell/"], aside a[href="'+v___location_prefix+'/server-manager/shell.cgi"], aside a[href*="shell=1"]',function(e){e.preventDefault(),e.stopPropagation(),$(".user-link.ported-console:visible").trigger("click")}),$("body").on("change",'form[action*="save_log.cgi"] select[name="idx"]',function(e){var t=$("button.ui_submit.ui_form_end_submit");t.first().trigger("click"),t.addClass("disabled")}),$("body").on("keydown",'form[action*="save_log.cgi"] input[name="filter"], form[action*="save_log.cgi"] input[name="lines"]',function(e){if(13==e.keyCode){e.preventDefault();var t=$("button.ui_submit.ui_form_end_submit");t.first().trigger("click"),t.addClass("disabled")}}),$("aside").on("click",".__logout-link",function(e){progress.start(),get_server_tmp_var("goto",0)}),$("body").on("click",'button, input[type="submit"], a',function(e){v___page_activeElement=this}),$("body").on("click","._c__op_d",function(e){if($(e.target).is(this)){var t=$(this).find(".opener_trigger").first()[0];t&&t.click()}}),$(window).on("resize",function(){page_resized(),theme_shell_adapt()}),setTimeout(function(){window.onbeforeunload=function(){if(get_onbeforeunload_status())return progress.end(),!0;window.setTimeout(function(){v___available_navigation?"csf"===v___module&&(window.location=v___location_prefix?v___location_prefix+"/":"/"):progress.start()},0),window.onbeforeunload=null},$(function(){v___available_navigation||progress.end()})},100),theme_alert_charset(),favorites_detect(),page_render(0),setTimeout(function(){v___initial_load=0},1e3)})} \ No newline at end of file +update_navigation_module_name()}function editor_init_check(){return 1===$("textarea").length&&("data"===$("textarea").attr("name")||"text"===$("textarea").attr("name")||"conf"===$("textarea").attr("name")||"script"===$("textarea").attr("name")||Core.curModuleFileQuery("virtual-server","edit_html.cgi","textok=")||v___location_file.indexOf("manual")>-1)?Core.curModule("gnupg")||Core.curModuleFile("virtual-server","mass_ucreate_form.cgi")||Core.curModuleFile("virtual-server","mass_create_form.cgi")||Core.curModuleFile("server-manager","edit_pubkey.cgi")||Core.curModuleFile("server-manager","edit_key.cgi")||check_location_resource("/config.cgi?server-manager")||Core.curModuleFile("useradmin","batch_form.cgi")||Core.curModuleFile("useradmin","gbatch_form.cgi")||"mass_form.cgi"==v___location_file||"notes"===$("textarea").attr("id")?0:1:0}function editor_init(e,t,i,a,n,s,_,r){(_=void 0!==_&&0!=_)||(n=void 0!==n&&0!=n,s=void 0!==s&&0!=s,$.each(e,function(_,o){$(this);var l=["phpini","bind8"];$("#headln2l a").attr("href")?$page=$("#headln2l a").attr("href").split("/")[1]:$page=null,l.indexOf($page)>=0&&$(this).data("name","data"),CodeMirror.modeURL=v___location_prefix+"/unauthenticated/js/codemirror/mode/%N/%N.js";var c=null,d="text/plain",h=!1;v___location_path==v___location_prefix+"/custom/view.cgi"?h=$('form[action="save.cgi"]').find(".table-title").find("tt").text():$('body[class^="'+v___module_file_manager+'"]').length?(h=t.replace(/<(?:.|\n)*?>/gm,"").replace(/ *\([^)]*\) */g,""),t=h):h=$('select[name="file"]').val();var p,f=t||h;if(p=/.+\.([^.]+)$/.exec(f))(g=CodeMirror.findModeByExtension(p[1]))&&(c=g.mode,d=g.mime);else if(/\//.test(f)){var g=CodeMirror.findModeByMIME(f);g&&(c=g.mode,d=f)}else c=null,d="text/plain";if("apache"==$page||"postfix"==$page||"dovecot"==$page||"spam"==$page||"virtualmin-nginx"==$page||"sendmail"==$page||"samba"==$page||"proftpd"==$page||"fail2ban"==$page||"sshd"==$page||"squid"==$page||"ldap-server"==$page?(c="rpm",d="rpm-spec"):"phpini"==$page?(c="z80",d="text/x-z80"):"bind8"==$page||"procmail"==$page||Core.curModuleFile("virtual-server","manual_records.cgi")?(c="clike",d="text/x-java"):"virtual-server"==$page&&"body"==$(this).attr("name")&&(c="htmlmixed",d="text/html"),$current_file=v___location_path.replace(/^\//g,""),$current_file&&($current_file=$current_file.split("/")[1]),editor_init_check()||$(".jsPanel").length||n){CodeMirror.commands.autocomplete=function(e){e.showHint({hint:CodeMirror.hint.anyword})},window["__cm_editor_"+a]=CodeMirror.fromTextArea(o,{tabMode:"indent",matchBrackets:!0,lineNumbers:!0,keyMap:"sublime",highlightSelectionMatches:{showToken:/\w/,annotateScrollbar:!0},lineWrapping:!0,indentUnit:0,autofocus:!0,foldGutter:!0,gutters:["CodeMirror-linenumbers","CodeMirror-foldgutter"],extraKeys:{"Ctrl-Space":"autocomplete"},styleActiveLine:!0,theme:v___theme_night_mode?"monokai":settings_cm_editor_palette}),window["__cm_editor_"+a].setOption("mode",d),"rpm"!=c&&CodeMirror.autoLoadMode(window["__cm_editor_"+a],c),setTimeout(function(){$("body").find(".jsPanel").length||$(".CodeMirror").before('');var e=$(".fa.fa-question-circle.__helper, .__helper___");e.popover({container:"body",placement:"auto left",title:''+theme_language("theme_xhred_editor_help_title"),content:theme_language("theme_xhred_editor_help_content"),trigger:"click",html:!0}),e.on("inserted.bs.popover",function(){$("body").find(".theme_xhred_editor_help").parents(".popover").addClass("_helper")})},100),s&&window["__cm_editor_"+a].on("change",function(e,t){set_onbeforeunload_status(1,0)});var u=$(".container-fluid > .panel > .panel-body").attr("data-cm-line"),m=$(".container-fluid > .panel > .panel-body").attr("data-cm-state");r&&u&&__cm_editor_static.setCursor(parseInt(u.split(",")[0]),parseInt(u.split(",")[1])),"edit_cron.cgi"!=$current_file&&v___location_path!=v___location_prefix+"/virtualmin-password-recovery/"&&v___location_path!=v___location_prefix+"/bind8/forward_form.cgi"&&($resize=i||2.8,i?(window["__cm_editor_"+a].on("change",function(t,i){e.val(window["__cm_editor_"+a].getValue()),$(":focus").parents(".jsPanel").is(".jsPanel")&&($(":focus").parents(".jsPanel").find("._filemanager_file_editor_save").addClass("text-danger __locked__"),$(":focus").parents(".jsPanel").find("select[data-encoding]").addClass("pointer-events-none"))}),window["__cm_editor_"+a].setSize($resize[0],$resize[1])):($window_height=$(window).outerHeight()-$(window).outerHeight()/$resize,window["__cm_editor_"+a].setSize(null,$window_height),$(window).resize(function(){$window_height=$(window).outerHeight()-$(window).outerHeight()/$resize,window["__cm_editor_"+a].setSize(null,$window_height)}))),$(".sub_table_container").find(".CodeMirror").length&&($(".sub_table_container").addClass("xcontent-force-no-styling"),$(".panel-body").addClass("xqcontent-forced")),editor_background_save(r&&!!u&&"true"==m)}}))}function viewer_init_check(){return $('body[class^="syslog"]').length&&v___location_query&&v___location_query.indexOf("view=1")>-1?1:0}function viewer_init(){if($("pre[data-cm-viewer]").remove(),$(".panel-body pre").find("i").length)$(".panel-body pre > i").addClass("label label-transparent-15");else{var e=!1;$(".panel-body pre").each(function(t,i){var a=$(this),n=Convert.htmlStrip(a.html());a.addClass("hidden"),a.after("
    "),$target=$("pre[data-cm-viewer-id-"+(t+1)+"]"),e=CodeMirror($target[0],{value:n,lineNumbers:!1,mode:null,theme:v___theme_night_mode?"monokai":settings_cm_editor_palette,readOnly:!0})}).promise().done(function(){})}}function notifications(e,t,i){if(settings_side_slider_enabled&&settings_side_slider_notifications_enabled){var e=Convert.htmlUnEscape($.trim(e.replace(/(<([^>]+)>)/gi,""))).replace(/\s+/g," "),t=Convert.htmlUnEscape($.trim(t.replace(/(<([^>]+)>)/gi,""))).replace(/\s+/g," ");"granted"===Notification.permission?new Notification(e,{body:t,icon:v___location_prefix+"/images/notifications_"+i+".png"}).onclick=function(){window.focus()}:"denied"!==Notification.permission&&Notification.requestPermission(function(a){"granted"===a&&(new Notification(e,{body:t,icon:v___location_prefix+"/images/notifications_"+i+".png"}).onclick=function(){window.focus()})})}}function unbuffered_header_post(e){if(Test.strContains(e.responseText,"theme_post_save")){var t=e.responseText.match(/theme_post_save(.*)$/gm);t&&navigation_update(t[0].split("=")[1])}}function unbuffered_header_processor_allow(e){var t=URI(v___location).path();return void 0!==e&&(t=e),t&&Test.strContains(t,".cgi")&&(Test.strContains(t,"webmin/install_theme.cgi")||Test.strContains(t,"usermin/install_theme.cgi")||t.indexOf("/virtual-server/import.cgi")>-1||t.indexOf("/virtual-server/edit_newlinks.cgi")>-1||t.indexOf("/virtual-server/postsave.cgi")>-1||t.indexOf("/virtual-server/validate.cgi")>-1||t.indexOf("/server-manager/edit_serv.cgi")>-1||t.indexOf("/server-manager/save_serv.cgi")>-1||t.indexOf("/server-manager/index.cgi")>-1||t.indexOf("/server-manager/list_ifaces.cgi")>-1||t.indexOf("/server-manager/mass_update.cgi")>-1||t.indexOf("/server-manager/get_images.cgi")>-1||t.indexOf("/server-manager/edit_newlinks.cgi")>-1||t.indexOf("/server-manager/list_gces.cgi")>-1||t.indexOf("/server-manager/list_ec2s.cgi")>-1||t.indexOf("/server-manager/unpause.cgi")>-1||t.indexOf("/server-manager/find.cgi")>-1||t.indexOf("useradmin/batch_exec.cgi")>-1||t.indexOf("useradmin/gbatch_exec.cgi")>-1||t.indexOf("useradmin/mass_delete_user.cgi")>-1||t.indexOf("virtual-server/domain_setup.cgi")>-1||t.indexOf("virtual-server/upgrade.cgi")>-1||t.indexOf("virtual-server/mass_create.cgi")>-1||t.indexOf("virtual-server/restore.cgi")>-1||t.indexOf("virtual-server/save_newip.cgi")>-1||t.indexOf("virtual-server/mass_domains_change.cgi")>-1||t.indexOf("virtual-server/save_domain.cgi")>-1||t.indexOf("virtual-server/backup.cgi")>-1||t.indexOf("virtual-server/save_phpmode.cgi")>-1||t.indexOf("virtual-server/script_install.cgi")>-1||t.indexOf("virtual-server/mass_change.cgi")>-1||t.indexOf("virtual-server/save_ratelimit.cgi")>-1||t.indexOf("virtual-server/mass_scripts.cgi")>-1||t.indexOf("virtual-server/mass_upgrade.cgi")>-1||t.indexOf("virtual-server/save_newips.cgi")>-1||t.indexOf("virtual-server/letsencrypt.cgi")>-1||t.indexOf("virtual-server/migrate.cgi")>-1||t.indexOf("virtual-server/save_mail.cgi")>-1||t.indexOf("virtual-server/mass_delete_domains.cgi")>-1||t.indexOf("virtual-server/delete_domain.cgi")>-1||t.indexOf("virtual-server/unscript_install.cgi")>-1||t.indexOf("virtual-server/mass_uninstall.cgi")>-1||t.indexOf("virtual-server/clone.cgi")>-1||t.indexOf("virtual-server/fix_symlinks.cgi")>-1||t.indexOf("virtual-server/disable_domain.cgi")>-1||t.indexOf("virtual-server/delete_databases.cgi")>-1||t.indexOf("virtual-server/move.cgi")>-1||t.indexOf("virtual-server/enable_domain.cgi")>-1||t.indexOf("virtual-server/transfer.cgi")>-1||t.indexOf("virtual-server/mass_disable.cgi")>-1||t.indexOf("virtual-server/rename.cgi")>-1||t.indexOf("virtual-server/save_dbname.cgi")>-1||t.indexOf("virtual-server/mass_enable.cgi")>-1||t.indexOf("virtual-server/save_frame.cgi")>-1||t.indexOf("virtual-server/check.cgi")>-1||t.indexOf("virtual-server/save_newchroot.cgi")>-1||t.indexOf("virtual-server/enable_dkim.cgi")>-1||t.indexOf("virtual-server/save_proxy.cgi")>-1||t.indexOf("virtual-server/save_dbpass.cgi")>-1||t.indexOf("virtual-server/save_dbhosts.cgi")>-1||t.indexOf("virtual-server/unalias.cgi")>-1||t.indexOf("virtual-server/save_newautoconfig.cgi")>-1||t.indexOf("virtual-server/quotacheck.cgi")>-1||t.indexOf("virtual-server/unsub.cgi")>-1||t.indexOf("virtual-server/save_domdkim.cgi")>-1||t.indexOf("virtual-server/fix_modphp.cgi")>-1||t.indexOf("virtual-server/connectivity.cgi")>-1||t.indexOf("virtual-server/all_webmin.cgi")>-1||t.indexOf("virtualmin-support/send_ticket.cgi")>-1||t.indexOf("virtualmin-support/enable_login.cgi")>-1||t.indexOf("virtualmin-support/disable_login.cgi")>-1||t.indexOf("server-manager/create.cgi")>-1||t.indexOf("server-manager/mass.cgi")>-1||t.indexOf("server-manager/manual_image.cgi")>-1||t.indexOf("server-manager/save_limits.cgi")>-1||t.indexOf("server-manager/upgrade.cgi")>-1||t.indexOf("server-manager/empty.cgi")>-1||t.indexOf("server-manager/save_pass.cgi")>-1||t.indexOf("server-manager/create_image.cgi")>-1||t.indexOf("server-manager/restore.cgi")>-1||t.indexOf("server-manager/clone.cgi")>-1||t.indexOf("server-manager/scan.cgi")>-1||t.indexOf("server-manager/add.cgi")>-1||t.indexOf("server-manager/gcescan.cgi")>-1||t.indexOf("server-manager/create_gceattach.cgi")>-1||t.indexOf("server-manager/ec2scan.cgi")>-1||t.indexOf("server-manager/create_domain.cgi")>-1||t.indexOf("server-manager/restore_domain.cgi")>-1||t.indexOf("server-manager/create_ec2attach.cgi")>-1||t.indexOf("server-manager/newami.cgi")>-1||t.indexOf("server-manager/move_disk.cgi")>-1||t.indexOf("server-manager/convert_image.cgi")>-1||t.indexOf("server-manager/save_vcpus.cgi")>-1||t.indexOf("server-manager/boot.cgi")>-1||t.indexOf("server-manager/delete_backuplogs.cgi")>-1||t.indexOf("server-manager/mass_script.cgi")>-1||t.indexOf("server-manager/save_ec2address.cgi")>-1||t.indexOf("server-manager/mass_move.cgi")>-1||t.indexOf("server-manager/delete_ec2attach.cgi")>-1||t.indexOf("server-manager/move.cgi")>-1||t.indexOf("server-manager/backup.cgi")>-1||t.indexOf("server-manager/create_dimage.cgi")>-1||t.indexOf("server-manager/massupload.cgi")>-1||t.indexOf("server-manager/delete_volumes.cgi")>-1||t.indexOf("server-manager/delete_ec2_snapshots.cgi")>-1||t.indexOf("server-manager/download.cgi")>-1||t.indexOf("server-manager/create_gdisk.cgi")>-1||t.indexOf("server-manager/failover.cgi")>-1||t.indexOf("server-manager/create_dkvolume.cgi")>-1||t.indexOf("server-manager/upload.cgi")>-1||t.indexOf("server-manager/transfer.cgi")>-1||t.indexOf("server-manager/delete_gceattach.cgi")>-1||t.indexOf("server-manager/reset.cgi")>-1||t.indexOf("server-manager/find.cgi")>-1||t.indexOf("server-manager/create_volume.cgi")>-1||t.indexOf("server-manager/create_gsnapshot.cgi")>-1||t.indexOf("server-manager/create_gimage.cgi")>-1||t.indexOf("server-manager/exec_vbackup.cgi")>-1||t.indexOf("server-manager/unpause.cgi")>-1||t.indexOf("server-manager/pause.cgi")>-1||t.indexOf("server-manager/create_ec2_snapshot.cgi")>-1||t.indexOf("server-manager/delete_addresses.cgi")>-1||t.indexOf("server-manager/exec_vsync.cgi")>-1||t.indexOf("server-manager/create_address.cgi")>-1||t.indexOf("cluster-usermin/upgrade.cgi")>-1||t.indexOf("cluster-usermin/install.cgi")>-1||t.indexOf("cluster-usermin/update.cgi")>-1||t.indexOf("ldap-useradmin/batch_exec.cgi")>-1||t.indexOf("ldap-useradmin/mass_delete_user.cgi")>-1||t.indexOf("usermin/upgrade.cgi")>-1||t.indexOf("usermin/update.cgi")>-1||t.indexOf("cpan/download.cgi")>-1||t.indexOf("cpan/install.cgi")>-1||t.indexOf("burner/save_profile.cgi")>-1||t.indexOf("burner/burn.cgi")>-1||t.indexOf("bind8/mass_create.cgi")>-1||t.indexOf("bind8/mass_rcreate.cgi")>-1||t.indexOf("bind8/mass_delete.cgi")>-1||t.indexOf("bind8/mass_update.cgi")>-1||t.indexOf("bind8/zone_dnssecmigrate_dt.cgi")>-1||t.indexOf("bind8/mass_rdelete.cgi")>-1||t.indexOf("bind8/enable_zonekey.cgi")>-1||t.indexOf("bind8/enable_zonedt.cgi")>-1||t.indexOf("bind8/disable_zonedt.cgi")>-1||t.indexOf("webalizer/save_log.cgi")>-1||t.indexOf("bacula-backup/restore.cgi")>-1||t.indexOf("bacula-backup/backup.cgi")>-1||t.indexOf("bacula-backup/gbackup.cgi")>-1||t.indexOf("bacula-backup/label.cgi")>-1||t.indexOf("bacula-backup/mount.cgi")>-1||t.indexOf("cluster-software/install_pack.cgi")>-1||t.indexOf("updown/download.cgi")>-1||t.indexOf("software/install_pack.cgi")>-1||t.indexOf("software/do_install.cgi")>-1||t.indexOf("software/apt_upgrade.cgi")>-1||t.indexOf("software/rhn_check.cgi")>-1||t.indexOf("software/yum_upgrade.cgi")>-1||t.indexOf("software/urpmi_upgrade.cgi")>-1||t.indexOf("software/csw_upgrade.cgi")>-1||t.indexOf("software/ports_upgrade.cgi")>-1||t.indexOf("webmin/letsencrypt.cgi")>-1||t.indexOf("webmin/delete_webmincron.cgi")>-1||t.indexOf("webmin/test_sendmail.cgi")>-1||t.indexOf("package-updates/update.cgi")>-1||t.indexOf("custom/run.cgi")>-1||t.indexOf("custom/sql.cgi")>-1||t.indexOf("virtualmin-init/save.cgi")>-1||t.indexOf("virtualmin-init/mass.cgi")>-1||t.indexOf("backup-config/save.cgi")>-1||t.indexOf("squid/init_cache.cgi")>-1||t.indexOf("squid/clear.cgi")>-1||t.indexOf("squid/chown.cgi")>-1||t.indexOf("ldap-client/check.cgi")>-1||t.indexOf("sendmail/del_mailqs.cgi")>-1||t.indexOf("sendmail/flushq.cgi")>-1||t.indexOf("init/mass_start_stop.cgi")>-1||t.indexOf("init/mass_launchd.cgi")>-1||t.indexOf("init/mass_systemd.cgi")>-1||t.indexOf("init/mass_upstarts.cgi")>-1||t.indexOf("init/mass_rcs.cgi")>-1||t.indexOf("init/save_services.cgi")>-1||t.indexOf("ldap-server/create.cgi")>-1||t.indexOf("change-user/change.cgi")>-1||t.indexOf("virtualmin-slavedns/save.cgi")>-1||t.indexOf("proc/trace.cgi")>-1||t.indexOf("proc/run.cgi")>-1||t.indexOf("proc/kill_proc_list.cgi")>-1||t.indexOf("fsdump/backup.cgi")>-1||t.indexOf("fsdump/restore.cgi")>-1||t.indexOf("webmin_search.cgi")>-1||t.indexOf("security-updates/update.cgi")>-1||t.indexOf("virtualmin-mailrelay/save.cgi")>-1||t.indexOf("cluster-copy/exec.cgi")>-1||t.indexOf("cron/exec_cron.cgi")>-1||t.indexOf("virtualmin-registrar/import.cgi")>-1||t.indexOf("virtualmin-registrar/save_ns.cgi")>-1||t.indexOf("virtualmin-registrar/transfer.cgi")>-1||t.indexOf("virtualmin-registrar/renew.cgi")>-1||t.indexOf("virtualmin-registrar/create.cgi")>-1||t.indexOf("htaccess-htpasswd/search.cgi")>-1||t.indexOf("acl/makedn.cgi")>-1||t.indexOf("acl/cert_issue.cgi")>-1||t.indexOf("acl/maketables.cgi")>-1||t.indexOf("acl/schema.cgi")>-1||t.indexOf("filter/move.cgi")>-1||t.indexOf("fetchmail/check.cgi")>-1||t.indexOf("servers/find.cgi")>-1||t.indexOf("cluster-cron/exec.cgi")>-1||t.indexOf("raid/mkfs.cgi")>-1||t.indexOf("lvm/pvmove.cgi")>-1||t.indexOf("lvm/mkfs.cgi")>-1||t.indexOf("ppp-client/init.cgi")>-1||t.indexOf("fdisk/mkfs.cgi")>-1||t.indexOf("fdisk/tunefs.cgi")>-1||t.indexOf("fdisk/fsck.cgi")>-1||t.indexOf("spam/deleteall_awl.cgi")>-1||t.indexOf("quota/check_quotas.cgi")>-1||t.indexOf("virtualmin-awstats/generate.cgi")>-1||t.indexOf("postfix/flushq.cgi")>-1||t.indexOf("/webmin/upgrade.cgi")>-1||t.indexOf("sysstats/display_all.cgi")>-1)?1:0}function unbuffered_header_processor_allow_scroll(){var e=["webmin_search.cgi","display_all.cgi"];return Test.arrContains(e,v___location_file)?0:1}function unbuffered_header_processor(e,t){if(t){var i=e,a=$(i.target),n=i.target.action,s=$(quirks.active_element()).attr("name"),_=$.trim(quirks.active_element().innerText),r=quirks.active_element().value;a.find('input[name="'+s+'"]')&&a.find('input[name="'+s+'"]').val()==(_||r)||$("").attr({type:"hidden",name:s,value:_||r}).appendTo(a);var o=Test.strContains(a.attr("enctype"),"multipart/form-data"),l=o?new FormData(a[0]):a.serialize();if(o||(l=Test.strContains(l,s+"=")?l:l+"&"+s+"="+r),$("input:file:visible").val())return v___theme_force_buffered=1,void a.submit()}var c=0,d=0,h=t?n:e,p=0,f=$('div[data-dcontainer="1"] > .panel.panel-default').clone();progress.start(),set_onbeforeunload_status(1,1),progressive_request=$.ajax({xhr:function(){var e=new window.XMLHttpRequest;return e.addEventListener("progress",function(e){var t=e.target.responseText,i=$(t).filter('div[data-dcontainer="1"]').html();if(Test.strContains(t,v___page_signin_form))return v___available_session=0,void progressive_request.abort();if(!!i&&d++,0===p&&(window.history.pushState(null,"",e.currentTarget.responseURL+(Test.strContains(e.currentTarget.responseURL,"?")?"&":"?")+$__theme_navigation),p=1,$(window).on("popstate.unbuffered",function(){$('.container-fluid[data-dcontainer="1"]').html(f),$(this).unbind("popstate.unbuffered"),setTimeout(function(){get_pjax_event_end_funcs(0)},40)})),d>3&&!c)i&&($('div[data-dcontainer="1"]').html(i),c++,unbuffered_header_processor_allow_scroll()&&($(".__page").hasScrollBar()?$(".__page").scrollTop($(".__page")[0].scrollHeight):$(".__page").scrollTop(0)),$(".__page").addClass("progressing"),get_pjax_event_end(!1,e.target));else if(c){var a=extract_content(t,'
    ',"
    ",0);a&&$('div[data-dcontainer="1"]').find(".panel-body").html(a),unbuffered_header_processor_allow_scroll()&&$(".__page").scrollTop($(".__page")[0].scrollHeight)}},!1),e},type:get_pjax_type(a||h),url:h,processData:!t||!o,contentType:(!t||!o)&&"application/x-www-form-urlencoded; charset=UTF-8",data:!!t&&l,complete:function(e){$('div[data-dcontainer="1"]').html($(e.responseText).filter('div[data-dcontainer="1"]').html()),get_pjax_event_end(!1,e),unbuffered_header_processor_allow_scroll()&&$(".__page").scrollTop($(".__page")[0].scrollHeight),$(".__page").removeClass("progressing"),progress.end(),set_onbeforeunload_status(0,1),unbuffered_header_post(e),Core.curModuleFile("package-updates","update.cgi")&&information_update()}})}function check_selected_text(){return getSelection?getSelection().toString():document.selection?document.selection.createRange().text:""}function check_location_resource(e){return v___location_resource===v___location_prefix+e}function check_current_file(e){return v___location_file==e}browser.internet_explorer()>5&&browser.internet_explorer()<=11&&(setTimeout(function(){var e="

    "+theme_language("theme_xhred_browser_warning")+"

    ";theme_alert(theme_language("theme_xhred_global_warning"),e,!1,"md","danger",!1,"10 modal-ie-warning",0)},2e3),String.prototype.endsWith||(String.prototype.endsWith=function(e,t){var i=this.toString();("number"!=typeof t||!isFinite(t)||Math.floor(t)!==t||t>i.length)&&(t=i.length),t-=e.length;var a=i.lastIndexOf(e,t);return-1!==a&&a===t}),String.prototype.startsWith||String.prototype.startsWith||(String.prototype.startsWith=function(e,t){return t=t||0,this.indexOf(e,t)===t})),$.extend($.expr[":"],{containsi:function(e,t,i,a){return(e.textContent||e.innerText||"").toLowerCase().indexOf((i[3]||"").toLowerCase())>=0}}),Object.defineProperty(Array.prototype,"reOrder",{enumerable:!1,value:function(e,t){if(t>=this.length)for(var i=t-this.length;1+i--;)this.push(void 0);return this.splice(t,0,this.splice(e,1)[0]),this}}),jQuery.fn.simulateUserClick=function(){return this.each(function(){if("createEvent"in document){var e=this.ownerDocument,t=e.createEvent("MouseEvents");t.initMouseEvent("click",!0,!0,e.defaultView,1,0,0,0,0,!1,!1,!1,!1,0,null),this.dispatchEvent(t)}else this.click()})},function(e){e.fn.replaceTagName=function(t){for(var i=[],a=this.length;a--;){for(var n=document.createElement(t),s=this[a],_=s.attributes,r=_.length-1;r>=0;r--){var o=_[r];n.setAttribute(o.name,o.value)}n.innerHTML=s.innerHTML,e(s).after(n).remove(),i[a-1]=n}return e(i)}}(jQuery),jQuery.fn.selectText=function(){var e=document,t=this[0];if(e.body.createTextRange)(a=document.body.createTextRange()).moveToElementText(t),a.select();else if(window.getSelection){var i=window.getSelection(),a=document.createRange();a.selectNodeContents(t),i.removeAllRanges(),i.addRange(a)}},function(e){e.fn.replaceText=function(t,i,a){return this.each(function(){var n,s,_=this.firstChild,r=[];if(_)do{3===_.nodeType&&(s=(n=_.nodeValue).replace(t,i))!==n&&(!a&&/this.height()},$.fn.toggleCheckbox=function(){"checkbox"==$(this).attr("type")&&$(this).prop("checked",!$(this).is(":checked"))},jQuery.fn.confirmation=function(e,t){return e=$.extend({className:"btn-danger",timeout:2500},e),$(this).each(function(i,a){function n(){_.removeClass(e.className).data("confirmed",!1).find(".tmp_question").remove()}var s,_=$(a);_.html();_.data("confirmed",!1),_.on("click.confirm",function(i){i.preventDefault(),_.data("confirmed")?(t.call(_,i),n()):(_.data("confirmed",!0),_.append('?').addClass(e.className).bind("mouseout.confirm",function(){s=setTimeout(n,e.timeout)}).bind("mouseover.confirm",function(){clearTimeout(s)}))}).removeClass(e.className)}),$(this)},RegExp.quote=function(e){return e.replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1")},$(function(){var e,t=".blinking-default:not(.hidden)";setInterval(function(){0==e?($(t).css("opacity","1"),e=1):(e=1)&&($(t).css("opacity","0"),e=0)},900)});if(get_server_data("debug")){if("object"==typeof localStorage)try{localStorage.setItem("d41d8cd98f00",1),localStorage.removeItem("d41d8cd98f00"),$_v__ls__a=1}catch(e){Storage.prototype._setItem=Storage.prototype.setItem,Storage.prototype.setItem=function(){},$_v__ls__a=0}if(page_init(),$___________lrs_r_l=0,$___________left=v___available_navigation?1:0,"undefined"==typeof settings_mailbox_slash_delimiter&&(settings_mailbox_slash_delimiter=!0),"undefined"==typeof settings_right_reload&&(settings_right_reload=!0),"undefined"==typeof settings_right_default_tab_usermin&&(settings_right_default_tab_usermin="/"),"undefined"==typeof settings_right_virtualmin_default&&(settings_right_virtualmin_default="sysinfo.cgi"),"undefined"==typeof settings_right_cloudmin_default&&(settings_right_cloudmin_default="sysinfo.cgi"),"undefined"==typeof settings_font_family&&(settings_font_family=0),"undefined"==typeof settings_navigation_color&&(settings_navigation_color="blue"),"undefined"==typeof settings_background_color&&(settings_background_color="gainsboro"),"undefined"==typeof settings_hide_top_loader&&(settings_hide_top_loader=!1),"undefined"==typeof settings_show_night_mode_link&&(settings_show_night_mode_link=!0),"undefined"==typeof settings_theme_options_button&&(settings_theme_options_button=!0),"undefined"==typeof settings_leftmenu_button_refresh&&(settings_leftmenu_button_refresh=!1),"undefined"==typeof settings_cm_view_palette&&(settings_cm_view_palette="monokai"),"undefined"==typeof settings_cm_editor_palette&&(settings_cm_editor_palette="monokai"),"undefined"==typeof settings_side_slider_palette&&(settings_side_slider_palette="grey"),"undefined"==typeof settings_side_slider_enabled&&(settings_side_slider_enabled=!0),"undefined"==typeof settings_side_slider_fixed&&(settings_side_slider_fixed=!1),"undefined"==typeof settings_side_slider_sysinfo_enabled&&(settings_side_slider_sysinfo_enabled=!0),"undefined"==typeof settings_side_slider_notifications_enabled&&(settings_side_slider_notifications_enabled=!0),"undefined"==typeof settings_side_slider_favorites_enabled&&(settings_side_slider_favorites_enabled=!0),config_portable_module_filemanager_hide_actions="undefined"==typeof localStorage||"false"!=localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_hide_actions"),config_portable_module_filemanager_hide_toolbar="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_hide_toolbar"),config_portable_module_filemanager_hovered_toolbar="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_hovered_toolbar"),config_portable_module_filemanager_notification_type="undefined"!=typeof localStorage&&localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_notification_type")?localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_notification_type"):2,config_portable_module_filemanager_calculate_size="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_calculate_size"),config_portable_module_filemanager_switch_user="undefined"==typeof localStorage||"false"!=localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_switch_user"),config_portable_module_filemanager_remember_tabs="undefined"==typeof localStorage||"false"!=localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_remember_tabs"),config_portable_module_xsql_fit_content_screen_height="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_module_xsql_fit_content_screen_height"),"undefined"==typeof settings_hotkeys_active&&(settings_hotkeys_active=!0),"undefined"==typeof settings_button_tooltip&&(settings_button_tooltip=!0),"undefined"==typeof settings_hotkey_toggle_modifier&&(settings_hotkey_toggle_modifier="altKey"),"undefined"==typeof settings_hotkey_toggle_key_webmin&&(settings_hotkey_toggle_key_webmin="w"),"undefined"==typeof settings_hotkey_toggle_key_virtualmin&&(settings_hotkey_toggle_key_virtualmin="v"),"undefined"==typeof settings_hotkey_toggle_key_cloudmin&&(settings_hotkey_toggle_key_cloudmin="c"),"undefined"==typeof settings_hotkey_toggle_key_usermin&&(settings_hotkey_toggle_key_usermin="u"),"undefined"==typeof settings_hotkey_toggle_key_webmail&&(settings_hotkey_toggle_key_webmail="m"),"undefined"==typeof settings_hotkey_toggle_key_night_mode&&(settings_hotkey_toggle_key_night_mode="l"),"undefined"==typeof settings_hotkey_shell&&(settings_hotkey_shell="k"),"undefined"==typeof settings_hotkey_sysinfo&&(settings_hotkey_sysinfo="i"),"undefined"==typeof settings_hotkey_favorites&&(settings_hotkey_favorites="f"),"undefined"==typeof settings_hotkey_focus_search&&(settings_hotkey_focus_search="s"),"undefined"==typeof settings_hotkey_toggle_slider&&(settings_hotkey_toggle_slider="n"),"undefined"==typeof settings_hotkey_reload&&(settings_hotkey_reload="r"),"undefined"==typeof settings_global_passgen_format&&(settings_global_passgen_format="12|a-z,A-Z,0-9,#"),"undefined"==typeof settings_window_replace_timestamps&&(settings_window_replace_timestamps=!0),"undefined"==typeof settings_window_replaced_timestamp_format_full&&(settings_window_replaced_timestamp_format_full="LLLL"),"undefined"==typeof settings_window_replaced_timestamp_format_short&&(settings_window_replaced_timestamp_format_short="L, LTS"),"undefined"==typeof settings_leftmenu_vm_cm_dropdown_icons&&(settings_leftmenu_vm_cm_dropdown_icons=!0),"undefined"==typeof settings_hotkey_custom_1&&(settings_hotkey_custom_1=!1),"undefined"==typeof settings_hotkey_custom_2&&(settings_hotkey_custom_2=!1),"undefined"==typeof settings_hotkey_custom_3&&(settings_hotkey_custom_3=!1),"undefined"==typeof settings_hotkey_custom_4&&(settings_hotkey_custom_4=!1),"undefined"==typeof settings_hotkey_custom_5&&(settings_hotkey_custom_5=!1),"undefined"==typeof settings_hotkey_custom_6&&(settings_hotkey_custom_6=!1),"undefined"==typeof settings_hotkey_custom_7&&(settings_hotkey_custom_7=!1),"undefined"==typeof settings_hotkey_custom_8&&(settings_hotkey_custom_8=!1),"undefined"==typeof settings_hotkey_custom_9&&(settings_hotkey_custom_9=!1),"undefined"==typeof settings_side_slider_background_refresh_time?settings_side_slider_background_refresh_time=5:settings_side_slider_background_refresh_time=parseFloat(settings_side_slider_background_refresh_time),"undefined"==typeof settings_leftmenu_width&&(settings_leftmenu_width=260),"undefined"==typeof settings_sysinfo_real_time_status&&(settings_sysinfo_real_time_status=!0),"undefined"==typeof settings_sysinfo_real_time_timeout?settings_sysinfo_real_time_timeout=500:settings_sysinfo_real_time_timeout=parseFloat(settings_sysinfo_real_time_timeout),"undefined"==typeof settings_sysinfo_easypie_charts&&(settings_sysinfo_easypie_charts=!0),"undefined"==typeof settings_sysinfo_easypie_charts_size?settings_sysinfo_easypie_charts_size=172:settings_sysinfo_easypie_charts_size=parseInt(settings_sysinfo_easypie_charts_size),"undefined"==typeof settings_sysinfo_easypie_charts_width?settings_sysinfo_easypie_charts_width=2:settings_sysinfo_easypie_charts_width=parseInt(settings_sysinfo_easypie_charts_width),"undefined"==typeof settings_sysinfo_easypie_charts_scale?settings_sysinfo_easypie_charts_scale=8:settings_sysinfo_easypie_charts_scale=parseInt(settings_sysinfo_easypie_charts_scale),"undefined"==typeof settings_sysinfo_theme_updates&&(settings_sysinfo_theme_updates=!1),"undefined"==typeof settings_sysinfo_theme_patched_updates&&(settings_sysinfo_theme_patched_updates=!1),"undefined"==typeof settings_sysinfo_csf_updates&&(settings_sysinfo_csf_updates=!1),"undefined"==typeof settings_sysinfo_link_mini&&(settings_sysinfo_link_mini=!1),"undefined"==typeof settings_loader_top&&(settings_loader_top=!0),"undefined"==typeof settings_animation_left&&(settings_animation_left=!0),settings_animation_left?$settings_animation_left_slide_time=175:$settings_animation_left_slide_time=0,"undefined"==typeof settings_animation_tabs&&(settings_animation_tabs=!1),settings_animation_tabs?$settings_animation_tabs_slide_time=350:$settings_animation_tabs_slide_time=0,"undefined"==typeof settings_show_terminal_link&&(settings_show_terminal_link=!0),"undefined"==typeof settings_favorites&&(settings_favorites=!0),$_v__ls__a?_v__ls__a="":_v__ls__a=" hidden",$(".mobile-menu-toggler:visible").length&&set_side_slider_visibility(0),navigation_display(),v___available_navigation?(page_adjust(settings_leftmenu_width,0),navigation_lock_width()):$("head").append(''),$("html").on("dblclick","body",function(){1!=$(this).find(".container-fluid").css("opacity")&&page_display()}),$.support.pjax&&v___available_navigation){var $t_av__excluded_selectors=':not([target="_blank"]):not([href^="#"]):not([data-href^="#"]):not([data-toggle="collapse"]):not([href*="javascript:"]):not(.has-sub):not([data-has-sub-link]):not([onclick]):not([data-nref])';$(document).on("submit","form",function(e){e.preventDefault(),get_onbeforeunload_status()?get_onbeforeunload_message(e,this):get_pjax_action_submit(e,this)}),$(document).on("click","a"+$t_av__excluded_selectors,function(e){get_onbeforeunload_status()?(e.preventDefault(),get_onbeforeunload_message(e,this)):get_pjax_action_click(e,this)}),$(document).on("pjax:error",function(e,t,i,a,s){if("error"===i){var n=$.active;if(n&&($.active=n-1),Test.strContains(s.url,"/csf/index.cgi"))return void theme_reload()}}),$(document).on("pjax:start",function(e,t){get_server_data("loading",1),"number"==typeof set_server_tmp_var_timeout&&clearTimeout(set_server_tmp_var_timeout)}),$(document).on("pjax:beforeReplace",function(e,t,i){navigation_form_control(0),pjax.clear.modules(i)}),$(document).on("ready pjax:beforeSend",function(e,t,i){progress.start();var a=$(e.relatedTarget),s=a.attr("href");s=s||i.url.replace(v___location_origin,""),clicked_in_nav_menu=a.parent().is("[data-linked], .favorites-dcontainer, .menu-exclude.ui-sortable-handle")||"object"==typeof i.callback&&"reference"===i.callback[0],clicked_in_nav_menu&&((Test.strContains(s,"mysql")||Test.strContains(s,"postgresql"))&&get_bundle_sql(),Test.strContains(s,v___module_file_manager)&&get_bundle_file_manager(),Test.strContains(s,"csf")&&get_bundle_csf()),"object"==typeof i.callback&&"beforeSend"===i.callback[0]&&(i.callback[3]?setTimeout(function(){window[i.callback[1].apply(this,i.callback[2])]},i.callback[3]):window[i.callback[1].apply(this,i.callback[2])])}),$(document).on("pjax:success",function(e,t,i,a,s){"object"==typeof s.callback&&"success"===s.callback[0]&&(s.callback[3]?setTimeout(function(){window[s.callback[1].apply(this,s.callback[2])]},s.callback[3]):window[s.callback[1].apply(this,s.callback[2])])}),$(document).on("pjax:complete",function(e,t,i){setTimeout(function(){$(".container-fluid-loading").length||progress.end()},10),get_server_data("loading",0,1)}),$(document).on("ready pjax:end",function(e,t){0!==v___available_session&&(navigation_form_control(1),get_pjax_event_end(e,t))}),$(document).on("pjax:popstate",function(e,t){setTimeout(function(){get_pjax_event_end_funcs(0)},40)})}v___available_session&&($.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-get_theme_language=1",data:!1,dataType:"text",async:v___available_navigation,success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:(get_server_data("language-strings",JSON.parse(e)),"function"==typeof set_side_slider_labels&&set_side_slider_labels())}}),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-get_available_modules=1",data:!1,dataType:"text",async:v___available_navigation,success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:get_server_data("available-modules",JSON.parse(e))}}),theme_config("load")),$(function(){if(1===v___initial_load&&v___available_navigation&&(page_display(),navigation_display(),settings_sysinfo_real_time_status&&load.script(v___server_extensions_path+"/stats/stats",0,["stats.general.timeout = settings_sysinfo_real_time_timeout","stats.general.query()"])),bind_sameorigin(),time.tictac(),browser.safari(1)&&$("html").css("overflow","auto"),browser.safari()&&$(".__page").addClass("browser_safari"),!v___available_navigation&&$(".container-fluid").removeClass("col-lg-10 col-lg-offset-1").addClass("margined-top-15").parents("html").addClass("single_tab"),$("body").on("click","#quota-virtual-server-collapse a.ui_link, #quota-virtual-server-1-collapse a.ui_link, #bw-virtual-server-collapse a.ui_link, #bw-virtual-server-1-collapse a.ui_link",function(){var e=URI.parseQuery(URI($(this).attr("href")).query()).dom,t="virtualmin";$('.switch-toggle input:not([id="open_'+t+'"]):checked').length&&set_switch_position(t),setTimeout(function(){$("aside select").val()!=e&&get_navigation_menu_virtualmin(e)},300)}),$("body").on("click",".file-input-wrapper",function(){var e=$(this).prev('input[type="radio"]').add($(this).parent("td").prev("td").find('input[type="radio"]'));1===e.length&&e.prop("checked",!0)}),$("body").on("click",".--to-new-tab",function(){$(this).attr("target","_blank")}),$("body").on("click",".favorites-menu a.menu-exclude-link, .right_pane_favorites_link",function(){var e=Test.strContains($(this).attr("href"),"/virtual-server/")?"dom":!!Test.strContains($(this).attr("href"),"/server-manager/")&&"id",t=Test.strContains($(this).attr("href"),"gparent")?"gparent":e,i=URI.parseQuery(URI($(this).attr("href")).query())[t],a="dom"===e?"virtualmin":"id"===e?"cloudmin":"webmin",s=$('.switch-toggle input:not([id="open_'+a+'"]):checked').length;s&&set_switch_position(a),e?setTimeout(function(){$("aside select").val()!=i&&("dom"===e?get_navigation_menu_virtualmin(i):"id"===e&&get_navigation_menu_cloudmin(i))},300):s&&get_navigation_menu_webmin()}),$("body").on("click",function(e){var t=$("aside select");$(e.target).attr("class")&&0===$(e.target).attr("class").indexOf("select2")||t&&t.length>0&&t.hasClass("select2-hidden-accessible")&&t.select2("close")}),$("a").each(function(){$(this).find("img").length&&$(this).css("text-decoration","none")}),$("body").on("keydown",function(e){var t=e.keyCode?e.keyCode:e.which,i=String.fromCharCode(t).toLowerCase();!$('aside input[name="search"]').is(":focus")&&v___available_session&&($(".-shell-port-").hasClass("opened")||v___location_path!=v___location_prefix+"/server-manager/gvnc.cgi"&&v___location_path!=v___location_prefix+"/server-manager/login.cgi"&&v___location_path!=v___location_prefix+"/telnet/"&&v___location_path!=v___location_prefix+"/telnet/index.cgi"&&v___location_path!=v___location_prefix+"/stunnel/"&&v___location_path!=v___location_prefix+"/stunnel/index.cgi"&&($("input").is(":focus")||$("select").is(":focus")||$("textarea").is(":focus")||$(".modal.in").length||!i||!/[a-zA-Z0-9]/.test(i)||e.ctrlKey||e.altKey||e.metaKey||106===t||107===t||109===t||112===t||113===t||114===t||115===t||116===t||117===t||118===t||119===t||120===t||121===t||122===t||123===t||($(".dataTables_filter label input").length||$(".btn-accordion-filter").length?($(".btn-filter-top-right, .btn-accordion-filter").trigger("click"),$(".btn-filter-top-right .dataTable-mirror, .btn-accordion-filter .dataTable-mirror").focus().trigger("keyup")):setTimeout(function(){e.shiftKey&&"1"==i?$('aside input[name="search"]').focus().val("!"):$('aside input[name="search"]').focus().val(i)},1))))}),v___available_navigation&&($(document).ajaxSend(function(e,t,i){}).ajaxStop(function(){setTimeout(function(){0===v___available_session&&session.reauthenticate()},300)}).ajaxError(function(e,t){if(0===t.status){!$(".modal-connection-warning").length&&$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-error=1",data:!1,dataType:"text",error:function(e){var t=theme_language("theme_xhred_connection_error_details").replace("%server",location.host+v___location_prefix);theme_alert(theme_language("theme_xhred_connection_error"),t,!1,"md","danger","unplugged fa-lg","7 modal-connection-warning",0),setTimeout(function(){navigation_render_end(),navigation_detect(),reset_switch_position(),despinnerfy_buttons(),theme_shell_unlock()},200)}})}}),$.ajaxSetup({complete:function(e,t){(Test.strContains(e.responseText,v___page_signin_form)||e&&("auth-required=1"===e.getResponseHeader("Auth-type")||e.responseText&&e.responseText.indexOf("reset-fonts-grids-base")>-1&&e.responseText.indexOf("window.top.location = window.location;")>-1))&&session.reauthenticate()},beforeSend:function(e,t){t.url=navigation_trigger(t.url,1)}})),function(){if("function"==typeof Messenger.Message){var e,t,i,a={}.hasOwnProperty,s=function(e,t){function i(){this.constructor=e}for(var s in t)a.call(t,s)&&(e[s]=t[s]);return i.prototype=t.prototype,e.prototype=new i,e.__super__=t.prototype,e};e=jQuery,i='
    \n \n \n \n \n \n \n
    ',t=function(t){function a(){return a.__super__.constructor.apply(this,arguments)}return s(a,t),a.prototype.template=function(t){var s;return(s=a.__super__.template.apply(this,arguments)).append(e(i)),s},a}(Messenger.Message),Messenger.themes.air={Message:t},Messenger.options={extraClasses:"messenger-fixed messenger-on-bottom",theme:"air"}}}.call(this),v___available_navigation){0==v___user_level&&settings_side_slider_enabled&&settings_side_slider_fixed&&get_server_data("data-slider-fixed","1"),1===v___initial_load&&(console.log("Welcome to Authentic Theme "+(v___theme_version_git||v___theme_version)+"\nhttps://github.com/qooob/authentic-theme"),v___theme_navigation_active=$(".switch-toggle input:checked").attr("id"),v___theme_navigation_active=v___theme_navigation_active?v___theme_navigation_active.replace("open_",""):get_server_data("product"),setTimeout(function(){var e=function(){$t_uri_virtualmin&&(get_navigation_menu_virtualmin_summary(),get_default_virtualmin_content(!1)),$t_uri_cloudmin&&get_default_cloudmin_content(!1),$t_uri_virtualmin||$t_uri_cloudmin||get_default_content()};$.when(get_server_tmp_var("goto",0,e)).then(function(t,i,a){if(a.responseText&&!get_server_data("initial-wizard")){if(URI(a.responseText).hostname()!==URI(location.href).hostname())return void get_pjax_content(v___location_prefix+"/sysinfo.cgi");if(Test.strContains(a.responseText,"virtual-server")){var s=URI.parseQuery(URI(a.responseText).query()).dom;(!$t_uri_virtualmin||$t_uri_virtualmin&&s!=$('select[name="dom"]').val())&&(set_switch_position("virtualmin"),get_navigation_menu_virtualmin(s||!1))}else if(Test.strContains(a.responseText,"server-manager")){var n=URI.parseQuery(URI(a.responseText).query()).id;(!$t_uri_cloudmin||$t_uri_cloudmin&&n!=$('select[name="sid"]').val())&&(set_switch_position("cloudmin"),get_navigation_menu_cloudmin(n))}else $t_uri_webmin||3==v___user_level||(set_switch_position("webmin"),get_navigation_menu_webmin("webmin")),3==v___user_level&&!$t_uri_webmail&&Test.strContains(a.responseText,"mailbox")&&Core.moduleAvailable("mailbox")?(set_switch_position("webmail"),setTimeout(function(){get_navigation_menu_webmin("webmail")},10)):3!=v___user_level||$t_uri_usermin||Test.strContains(a.responseText,"mailbox")||(set_switch_position("usermin"),setTimeout(function(){get_navigation_menu_webmin("webmin")},10));get_pjax_content(a.responseText)}else e()})},20),$.each(theme_config("get_options"),function(e,t){localStorage.setItem(v___server_hostname+"-"+t,window[t])}),navigation_select_label(),setTimeout(function(){fetch_right_pane_favorites()},300)),$("body").on("focus",".sidebar-search",function(){navigation_init_autocomplete("c",!1)}),$("body").on("blur",".sidebar-search",function(){setTimeout(function(){navigation_init_autocomplete("c",!0)},150)});information_check();progress.configure(),navigator.userAgent.match(/(iPod|iPhone|iPad)/)&&$("#content").attr("style","-webkit-overflow-scrolling: touch !important; overflow-y: scroll !important;"),$('a[target="page"][href="link/"]').first().length&&$('a[target="page"][href="link/"]').first().attr("target","blank"),$("aside").on("click",".select2-container .select2-selection__arrow b",function(e){e.preventDefault(),e.stopPropagation()}),$("aside").on("click",'a[href*="/file/"], a[href*="history.cgi"]',function(e){e.preventDefault(),e.stopPropagation(),window.open($(this).attr("href"),"_blank")}),$("body").on("keydown",".sidebar-search",function(e){if(-1!==get_server_data("webmail")&&13==e.keyCode)return e.preventDefault(),!1}),$("body").on("click",".mobile-menu-toggler",function(e){$this=$(this),$("aside").hasClass("hidden-xs")?($(this).addClass("selected").find("button").addClass("btn-primary").removeClass("btn-default"),$(".__logo")&&($(".__logo").css("transform","translate(0px, 0px)"),setTimeout(function(){$(".__logo").transition({y:"-140px"},1.5*$settings_animation_left_slide_time)},1100)),$this.css("transform","translate(0px, 0px)"),$("aside").css("transform","translate(0px, 0px)"),$(".switch-toggle").css("display","none"),$("aside").removeClass("hidden-xs"),$("aside, .mobile-menu-toggler").transition({x:settings_leftmenu_width},2.5*$settings_animation_left_slide_time),$(".switch-toggle").css("display","table")):navigation_hide()}),$.each($('ul.navigation li.navigation_external a[href^="../servers/link.cgi/"]'),function(e,t){$(this).attr("href",v___location_href+$(this).attr("href").replace("../","").replace(/\/$/g,""))}),$("body").on("click",'.navigation a[target="page"], .user-links a[target="page"]',function(){navigation_hide()}),$("body").on("click",".navigation > li .navigation_external_link",function(e){e.preventDefault(),e.stopPropagation(),b=$(this),window.open(b.attr("href"),"_blank")}),$("body").on("click",".navigation > li:not('.sub-wrapper'):not('.menu-container'):not('.navigation_external'):not([data-linked])",function(e){if(e.preventDefault(),e.stopPropagation(),v___blocked_navigation=1,"undefined"==typeof $processing&&($processing=!1),!$processing){$processing=!0;var t=$("a",this).attr("href"),i=$("a",this).attr("target"),a=$(this);i&&$(".navigation > li > ul.sub > li").each(function(){$(this).removeClass("sub_active").find("span.current").remove()}),$.when($("#sidebar .navigation > li").each(function(){var e=$(this),t=e.find("a").is("[data-has-sub-link]");e.is(a)||(e.removeClass("active"),"#search"!=e.find("a").attr("href")&&t&&$(e.find("a").attr("href")).slideUp($settings_animation_left_slide_time))})).done(function(){a.hasClass("active")?a.removeClass("active"):"#hide"!=t&&!i&&a.addClass("active"),setTimeout(function(){$(t).is(":visible")&&"#hide"!=t&&!i?a.addClass("active"):a.removeClass("active"),$processing=!1},2*$settings_animation_left_slide_time>0?2*$settings_animation_left_slide_time:1),$(t).slideToggle($settings_animation_left_slide_time)}),"#search"==t&&$('#sidebar input[name="search"]').focus()}}),$("body").on("click",".navigation > li > ul.sub > li:not('.menu-container')",function(e){if(!e.target||!$(e.target).is("li")){var t=$(this);$(".navigation > li:not('.has-sub')").removeClass("sub_active").find("span.current-large").remove(),$(".navigation > li > ul.sub > li").each(function(){$(this).removeClass("sub_active").find("span.current").remove()}),$("#webmin_search_form").find('input[name="search"]').val(""),t.addClass("sub_active").append('')}}),$(".navigation > li > ul.sub").each(function(){""===$(this).attr("id")&&$(this).remove()}),$('.switch-toggle label[for^="reserve_empty"]').on("click",function(e){e.preventDefault()}),$("body").on("click",'a[data-refresh="true"]',function(e){e.preventDefault(),get_pjax_content(v___location_resource)}),$("body").on("click",function(e){$("ul.dropdown").is(e.target)||0!==$("ul.dropdown").has(e.target).length||0!==$(".open").has(e.target).length||$("ul.dropdown").removeClass("open")}),$(".switch-toggle").on("contextmenu","label",function(e){e.preventDefault();var t=$(this).attr("for").replace("open_","");if($(this).prev("input").is(":checked")){var i=v___location_href;set_server_tmp_var("goto",navigation_trigger(i,1)),setTimeout(function(){theme_open_new_tab(i)},200)}else if("virtualmin"===t||"cloudmin"===t){var a;a="cloudmin"===t?"/server-manager/index.cgi":"/virtual-server/index.cgi";var s=navigation_trigger(a,2);set_server_tmp_var("goto",navigation_trigger(s,1)),setTimeout(function(){theme_open_new_tab(s)},200)}else if("webmail"===t){n=v___location_prefix+"/mailbox/index.cgi?"+$__theme_navigation;set_server_tmp_var("goto",navigation_trigger(n,1)),setTimeout(function(){theme_open_new_tab(n)},200)}else{var n=v___location_prefix+"/sysinfo.cgi?"+$__theme_navigation;set_server_tmp_var("goto",navigation_trigger(n,1)),setTimeout(function(){theme_open_new_tab(n)},200)}}),$(".switch-toggle").on("click","input.dynamic",function(e){if(get_onbeforeunload_status()){e.preventDefault();var t=$(".switch-toggle input:checked").attr("id");get_onbeforeunload_message([],{href:"::switch::"+t})}else"open_thirdlane"!=$(this).attr("id")?(set_switch_position($(this).attr("id").replace("open_","")),"open_dashboard"!=$(this).attr("id")?get_navigation_and_content($(this).attr("id").replace("open_",""),0,0):get_pjax_content(v___location_prefix+"/sysinfo.cgi")):location.href=v___location_prefix+"/asterisk/index.cgi"}),navigation_init_select(),$("aside").mCustomScrollbar({axis:"y",theme:"minimal",scrollInertia:100,scrollButtons:!1,callbacks:{onScroll:function(){$(".mobile-menu-toggler").is(":visible")||($(".form-control.sidebar-search").blur(),$("aside select")&&$("aside select").length>0&&$("aside select").hasClass("select2-hidden-accessible")&&$("aside select").select2("close"))}}}),$(".loader").append('
    '),$("body").on("mouseover","#loader-close, #loader-close-sm",function(){$(this).find(".fa").removeClass("hidden")}).on("mouseout","#loader-close, #loader-close-sm",function(){$(this).find(".fa").addClass("hidden")}),$("body").on("click","#loader-close-sm > .fa",function(e){navigation_render_end()}),__shell_commands__i__=0,$(".form-control.sidebar-search").focus(function(e){$(".__logo").addClass("inited"),e.preventDefault(),e.stopPropagation(),__shell_commands__i__=0});var e=$("body").find(".-shell-port-"),t=e.find('input[data-command="true"]'),a=e.find("div[data-output]"),s=e.find(".-shell-port-container"),n=e.data("autocomplete");if($(window).keydown(function(i){var o=$("body").find(".-shell-port-").hasClass("opened");if(!o&&v___available_session&&(navigation_focus_search(i),theme_shortcuts(i)),38===i.keyCode&&(t.is(":focus")&&o||$(".form-control.sidebar-search").is(":focus"))&&i.preventDefault(),9===i.keyCode&&t.is(":focus")&&o){if(i.preventDefault(),!n)return;var _=t.val().trim().split(/\s+(?!-)/),r=_.length,l=_[0]&&-1===_[0].indexOf("-")?0:1,d=_[1]&&-1===_[1].indexOf(":")?0:1,c=t.val().endsWith(" "),p="service"===$.trim(_[0]),f="systemctl"===$.trim(_[0]),g=$.trim(_[0])&&$.trim(_[0]).startsWith("chown"),u=1!==_.length||!t.val().length||l||c?p||f?"services":g?"permissions":"lists":"commands";if(!$.trim(t.val()).length)return;var m=t.val(),h=e.find(".-shell-port-pwd").attr("data-pwd");if("services"===u){if("systemctl"===(u=p?"service":"systemctl")&&3!==_.length)return;m="service"==u?$.trim(_[1]):$.trim(_[2]),"service"===$.trim(_[0])&&(2===_.length&&c||3===_.length)&&(m=3===_.length?"::::"+$.trim(_[1])+"::::"+$.trim(_[2]):"::::"+$.trim(_[1]))}if(g){if(1===r&&!c)return void t.val($.trim(_[0])+" ");d&&$.trim(_[1])?c||_[2]?(u="lists",m=h+"/::::"+$.trim(_[2])):(u="groups",m=$.trim($.trim(_[1]).split(":")[1])):(u="users",m=$.trim(_[1]))}"lists"!==u||g||(m=h+"/::::"+$.trim(_[1])+"::::"+$.trim(_[0])+"::::"+$.trim(_[2])),$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-get_autocompletes=1&xhr-get_autocomplete_type="+u+"&xhr-get_autocomplete_string="+m,data:!1,dataType:"json",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var i=e.length;if(1===i)if("service"===u||"systemctl"===u||"lists"===u){var n=$.trim(_[0]),o=$.trim(_[0])+" "+$.trim(_[1]);"lists"===u?("cd"===n&&e[0].endsWith("/")||"cd"!==n)&&("cd"===n||"cat"===n?t.val(n+" "+e[0]):$.trim(_[2])?t.val(o+" "+e[0]):t.val(n+" "+e[0])):"service"!==n||2!==_.length&&3!==_.length?"systemctl"===n&&3===_.length&&t.val(n+" "+$.trim(_[1])+" "+e[0]):2===_.length?t.val(n+" "+e[0]+" "):3===_.length&&t.val($.trim(_[0])+" "+$.trim(_[1])+" "+e[0])}else g?d?c||_[2]?t.val($.trim(_[0])+" "+$.trim(_[1])+" "+e[0]):t.val($.trim(_[0])+" "+$.trim($.trim(_[1]).split(":")[0])+":"+e[0]+" "):t.val($.trim(_[0])+" "+e[0]+":"):t.val(e[0]+" ");else if(i>1){var r=""+$(".-shell-port-type").text()+" "+Convert.htmlEscape(t.val())+"\n";a.find("pre").append(r),a.find("pre").append(Convert.htmlEscape(e.join("\n")+"\n")),s.scrollTop(s[0].scrollHeight)}setTimeout(function(){t.focus().mousedown()},10)}},error:function(){}})}}),$(window).keyup(function(s){var n=$("body").find(".-shell-port-").hasClass("opened");if(n){var o=0,_=0,r=0,l=$(".form-control.sidebar-search"),d=$t_uri_cloudmin&&$('a[target="page"][href*="/server-manager/save_serv.cgi"][href*="shell=1"]').length,c=0,p=0;if(d)p=v___location_prefix+"/server-manager/shell.cgi";else{if(!Core.moduleAvailable("shell"))return;p=v___location_prefix+"/shell/index.cgi"}if((n||l.is(":focus"))&&8===s.keyCode&&(__shell_commands__i__=0),n?(o=$.trim(t.val()),_=1,r=1):(o=l.val(),_=void 0!==l.val(),r=0),(r||_&&(!o.trim()||o.trim().startsWith("!")))&&(38==s.keyCode||40==s.keyCode)){s.preventDefault(),s.stopPropagation(),void 0===localStorage.getItem(v___server_hostname+"-shell_commands")&&localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify({}));var f=JSON.parse(localStorage.getItem(v___server_hostname+"-shell_commands")),g=f?f.length:0;if(0===__shell_commands__i__&&!o&&40==s.keyCode)return;if(0===__shell_commands__i__&&o&&38==s.keyCode)return void(c=1);if(__shell_commands__i__=40==s.keyCode?++__shell_commands__i__:--__shell_commands__i__,__shell_commands__i__<0&&38===s.keyCode?__shell_commands__i__=g-1:__shell_commands__i__>g&&(__shell_commands__i__=0),f&&f[__shell_commands__i__%g]){if(!$.isEmptyObject(f)&&(__shell_commands__i__==g&&38===s.keyCode||__shell_commands__i__==g&&40===s.keyCode||c))return n?t.val("").focus():l.val("").focus(),void(__shell_commands__i__=0);if(n){var u=f[__shell_commands__i__%g].replace(/^!/,"");t.val(Convert.htmlUnEscape(u)).focus()}}return}if(_&&o.trim().startsWith("!")&&27==s.keyCode)return s.preventDefault(),s.stopPropagation(),void l.val("").focus();if(_&&o.trim().startsWith("!")&&13==s.keyCode&&(l.addClass("_shell_form_"),s.preventDefault(),s.stopPropagation(),1==Core.moduleAvailable("shell")||d)){t.val(o.trim().substring(1)).focus(),theme_shell_open(e);var m=$.Event("keyup");m.keyCode=13,t.trigger(m)}var h=e.find(".-shell-port-container"),v=e.find(".-shell-port-pwd"),b=v.attr("data-pwd"),y=$.trim(t.val()),k=0,x=s.keyCode?s.keyCode:s.which,w=s.altKey&&"l"==String.fromCharCode(s.which).toLowerCase();if(27===x)return void theme_shell_close(e);if(t.is(":focus")||check_selected_text()||(s.ctrlKey||s.altKey||s.shiftKey||s.metaKey||t.val(t.val()+String.fromCharCode(s.which).toLowerCase()),t.focus()),(y&&13===x||w)&&(Core.moduleAvailable("shell")||d)){if(1===v___shell_processing)return;v___shell_processing=1,("clear"==y||"reset"==y||"exit"==y||w)&&(a.find("pre").html(""),theme_shell_clear(t),"exit"==y&&theme_shell_close(e)),"cd ~"==y&&(k=y,y="cd "+v.attr("data-home"));var C=!1;if("cd /"==y&&(C="/"),"history -c"==y){localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify({}));O=""+$(".-shell-port-type").text()+" "+y+"\n";a.find("pre").append(O),theme_shell_clear(t),h.scrollTop(h[0].scrollHeight);var T='',S=new FormData($(T)[0]);$.ajax({type:"POST",url:p+"?stripped=1&stripped=2",data:S,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){Test.strContains(e,v___page_signin_form)&&(v___available_session=0)},error:function(e){}})}else if($.trim(y).startsWith("history -d")){var I=y.split(" ")[2];I&&I.length&&Test.numeric(I)&&$.ajax({type:"POST",url:v___location_prefix+"/index.cgi/?xhr-shell-pop="+I,data:!1,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){if("1"==e){var t=JSON.parse(localStorage.getItem(v___server_hostname+"-shell_commands"));localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify(t.filter(function(e,t){return t!==parseInt(I)-1})))}},error:function(e){}}),theme_shell_clear(t)}else if(y.startsWith("history")){theme_shell_clear(t);var j=JSON.parse(localStorage.getItem(v___server_hostname+"-shell_commands")),D=j?j.length:0,P=D?D.toString().length:0,O=""+$(".-shell-port-type").text()+" "+y+"\n";$.each($(j),function(e,t){var a=e.toString().length,s="";for(i=0;i '+(d?'':"")+' ',A=new FormData($(q)[0]);t.attr("readonly","true"),$.ajax({type:"POST",url:p+"?stripped=1&stripped=2",data:A,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var i=$(".-shell-port-type").text(),s=($(e).find("pre").length?$(e).find("pre"):$(e).filter("pre")).html().replace(/>>/g,">"+i),n=$(e).find('select[name="pcmd"] option').map(function(){return Convert.htmlEscape($(this).val())}).get().reOrder(-1,0).reverse();localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify(n)),newPwd=$(e).find('input[name="pwd"]').val(),a.find("pre").append(k?s.replace(new RegExp(y,"g"),k):s),v.text(C||(newPwd==v.attr("data-home")?"~":newPwd.split("/").filter(function(e){return""!=$.trim(e)}).slice(-1)[0])).attr("data-pwd",C||newPwd).attr("title",C||newPwd),theme_shell_adapt(),theme_shell_clear(t),h.scrollTop(h[0].scrollHeight),setTimeout(function(){v___shell_processing=0,__shell_commands__i__=0,t.removeAttr("readonly").focus()},100)}},error:function(e){}})}}}),$("body").on("keyup","#webmin_search_form",function(e){var t=$(this).find("input.sidebar-search"),i=t.val(),a=$("body").find(".-shell-port-");i&&13==e.keyCode&&(i.startsWith("!")?theme_shell_open(a,i):($(this).trigger("submit"),t.val("")))}),$("body").on("click","#right-side-tabs .right_pane_favorites_link",function(e){$(".favorites-menu-outer.hover + .favorites-menu-close").trigger("click")}),$("aside").on("click",".user-links > li.favorites",function(e){$(".favorites-menu-outer").addClass("hover")}),$("body").on("click","nav.favorites-menu li a",function(){}),$("body").on("click",".favorites-menu-close, nav.favorites-menu li a",function(){$(".favorites-menu-outer").removeClass("hover")}),$(document).on("keydown",function(e){"0px"==$(".favorites-menu-outer").css("left")&&27==e.keyCode&&$(".favorites-menu-outer").removeClass("hover")}),favicon=new Favico({animation:"none"}),0==v___user_level&&1==Core.moduleAvailable("status")){var o=localStorage.getItem(v___server_hostname+"-right-side-tab")?localStorage.getItem(v___server_hostname+"-right-side-tab"):"#right-side-tabs-sysinfo";$("body").append(' \t\t \t\t \t'),$('a[href="'+o+'"]:visible').length||$("#right-side-tabs ul.nav-tabs li a:visible").trigger("click"),$('#right-side-tabs .nav.nav-tabs a[data-toggle="tab"]').on("shown.bs.tab",function(e){var t=$(e.target).attr("href");localStorage.setItem(v___server_hostname+"-right-side-tab",t)}),$("body").on("click",".right-side-tabs-favorites-ctl",function(e){$(".favorites-menu-outer").hasClass("hover")?$(".favorites-menu-close").trigger("click"):$(".user-link.favorites").trigger("click")}),$("body").on("click",'#right-side-tabs a:not([data-toggle="collapse"]):not([role="tab"]):not(.list-group-item)',function(e){$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")}),$("body").on("click","#right-side-tabs .info-container .graph-container-fw",function(e){var t,i=Core.moduleAvailable("proc"),a=$(this).attr("class"),s=a.indexOf("cpu_")>-1?"cpu":a.indexOf("mem_")>-1?"mem":a.indexOf("virt_")>-1?"virt":"disk";"cpu"==s&&i?t=v___location_prefix+"/proc/index_cpu.cgi":"mem"!=s&&"virt"!=s||!i?"disk"==s&&Core.moduleAvailable("disk-usage")?t=v___location_prefix+"/disk-usage":"disk"==s&&Core.moduleAvailable("quota")&&(t=v___location_prefix+"/quota/list_users.cgi?dir=%2F"):t=v___location_prefix+"/proc/index_size.cgi",t&&get_pjax_content(t),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")}),$("body").on("click","#right-side-tabs .fa-dashboard",function(e){get_onbeforeunload_status()?(this.href=v___location_prefix+"/sysinfo.cgi",get_onbeforeunload_message(e,this)):get_pjax_content(v___location_prefix+"/sysinfo.cgi"),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")}),$("body").on("click","#right-side-tabs [data-click-about]",function(e){theme_update_notice(0),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")})}else get_server_data("data-slider-fixed","0"),$(".right-side-tabs-toggler").addClass("hidden");$(".right-side-tabs .tab-pane").each(function(){$(this).css("height",$(window).height()-92)}),$(".right-side-tabs").on("mouseover",".list-group-item",function(e){$(this).find(".fa.fa-trash-o").removeClass("hidden"),!$(this).hasClass("opacity-0_3")&&$(this).find(".fa-clear-all").removeClass("hidden")}).on("mouseout",".list-group-item",function(e){$(this).find(".fa.fa-trash-o").addClass("hidden"),$(this).find(".fa-clear-all").addClass("hidden")}),$(".right-side-tabs").on("click","[data-port-href]",function(e){e.preventDefault(),e.stopPropagation(),open($(this).data("port-href"))}),$("body").on("click",'a[data-id^="csf_"], a[data-type^="csf_"]',function(e){get_bundle_csf()}),$("body").on("click",'a[href*="mysql"], a[href*="postgresql"]',function(e){get_bundle_sql()}),$(".right-side-tabs").on("click",'a.list-group-item[data-type="csf_deny"]',function(e){e.preventDefault(),e.stopPropagation(),$(e.target).is(".fa.fa-trash-o")||$(e.target).is(".fa-clear-all")||$(e.target).is("[data-port-href]")||(get_bundle_csf(),$("body").append(' \t\t\t\t\t\t'),$("form#csf_temporary_ip_entries").submit().remove(),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click"))}),$(".right-side-tabs").on("click contextmenu","a.list-group-item",function(e){if(e.preventDefault(),"contextmenu"==e.type)return $(this).find(".fa-clear-all").trigger("click"),e.preventDefault(),void e.stopPropagation();if($(e.target).is(".fa.fa-trash-o")||$(e.target).is(".fa-clear-all")||$(e.target).is("[data-port-href]")){if($(e.target).is(".fa-clear-all"))return $(this).addClass("opacity-0_3"),$(this).find(".fa-clear-all").addClass("hidden"),void slider_mark_notification_read($(this).attr("id"),$(this).data("type"),1,1);$(this).animate({opacity:"0"},$settings_animation_left_slide_time,function(){$(this).remove(),localStorage.removeItem(v___server_hostname+"-notifications_"+$(this).attr("id")+"_"+$(this).data("type")),slider_add_no_notifications()})}else $(this).attr("href")&&$(this).attr("href").length&&"undefined"!=$(this).attr("href")&&"csf_deny"!=$(this).attr("data-type")?($(this).addClass("opacity-0_3"),$(this).find(".fa-clear-all").addClass("hidden"),slider_mark_notification_read($(this).attr("id"),$(this).data("type"),1,1),$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click"),get_pjax_content($(this).attr("href"))):($(this).addClass("opacity-0_3"),slider_mark_notification_read($(this).attr("id"),$(this).data("type"),1,1))}),$(".right-side-tabs-dismiss i.fa-reload").click(function(e){information_update()}),$(".right-side-tabs-dismiss i.fa-clear-all").click(function(e){slider_mark_group_notifications_read(!1)}),$(".right-side-tabs-dismiss i.fa-trash").click(function(e){$(".right-side-tabs .list-group-item:not(.no-notifications)").animate({opacity:"0"},$settings_animation_left_slide_time,function(){$(this).remove(),slider_remove_all_notifications(),slider_add_no_notifications()})}),$("body").on("click",".right-side-tabs-toggler:not(.hidden)",function(e){$(this).hasClass("opened")?($(this).removeClass("opened"),$(this).animate({right:"0"},$settings_animation_left_slide_time),$(".right-side-tabs").animate({right:"-302"},$settings_animation_left_slide_time)):($(this).addClass("opened"),$(this).animate({right:"300"},$settings_animation_left_slide_time),$(".right-side-tabs").animate({right:"0"},$settings_animation_left_slide_time))}),$(".right-side-tabs .tab-pane").mCustomScrollbar({axis:"y",theme:"minimal",scrollInertia:100,scrollButtons:!1}),settings_button_tooltip&&$("body").tooltip({selector:'li[data-toggle="tooltip"], li > a[data-toggle="tooltip"].menu-exclude-link, label[data-toggle="tooltip"]',container:"body",html:!0,delay:{show:800,hide:30}}),$("body").on("click",".user-link.palette-toggle",function(e){theme_toggle_night_mode()}),$("body").on("click",".user-link.ported-console",function(t){theme_shell_check_available()&&theme_shell_open(e)}),slider_add_no_notifications(),slider_check_notifications()}$("body").on("click","#headln2c > .favorites:not(.dummy), .xcustom-favorites:not(.dummy)",function(e){e.preventDefault();var t=URI(v___location).resource();if($(this).hasClass("fa-star-o")){$(this).removeClass("fa-star-o").addClass("fa-star text-warning");var i=$("#headln2c > span[data-main_title]").text(),a=$(".has-sub.active").text().trim(),s=$(".sub_active").text().trim(),n="",o="";($t_uri_virtualmin||$t_uri_cloudmin)&&(n=$("aside .ui_select option:selected").text()),$('body[class^="'+v___module_file_manager+'"]').length&&(o=(o=URI.parseQuery(URI(v___location).query()).path)?"["+o+"]":"[/]"),favorites_add(t,(n.length?n+" - ":"")+(a.length?a+"/":"")+(s.length?s+(i.trim().length?": ":""):"")+i.trim()+(o.length?" "+o:""),$t_uri_virtualmin?"virtualmin":$t_uri_cloudmin?"cloudmin":"webmin"),favorites_save()}else $(this).addClass("fa-star-o").removeClass("fa-star text-warning"),favorites_remove(t)}),1===v___initial_load&&favorites_init(),$("#favorites-menu .favorites-menu-content").on("mouseover","li:not(.exclude) span.f__c, li:not(.exclude) span.f__c small",function(){$(this).find("small").removeClass("hidden")}).on("mouseleave","li:not(.exclude) span.f__c, li:not(.exclude) span.f__c small",function(){$(this).find("small").addClass("hidden")}),$("#favorites-menu .favorites-menu-content").on("mouseover","li:not(.exclude) small",function(){$(this).find(".fa-times").removeClass("fa-times").addClass("fa-times-circle"),$(this).animate({"font-size":"0.7em","margin-top":"-2px","margin-left":"-1px"},160)}).on("mouseleave","li:not(.exclude) small",function(){$(this).find(".fa-times-circle").removeClass("fa-times-circle").addClass("fa-times"),$(this).animate({"font-size":"0.6em","margin-top":"-1px","margin-left":"0"},80)}),$("#favorites-menu .favorites-menu-content").on("click","li:not(.exclude) small .fa-times-circle",function(e){e.preventDefault(),e.stopPropagation(),favorites_remove($(this).parents("a").attr("href"))}),$(document).on("keydown",function(e){"0px"==$(".favorites-menu-outer").css("left")&&27==e.keyCode&&$(".favorites-menu-outer").removeClass("hover")}),$("body").on("shown.bs.modal",".modal.in",function(){$(this).focus()}),$("body").on("click",".module-help",function(e){popover_visibility_position($(this))}),$("body").on("click",function(e){$(e.target).is(".close-popover-trigger")&&$(e.target).parent().parent().popover("hide");var t=".showpass-popover";$(t).length&&$(t).each(function(){$(this).is(e.target)||0!==$(this).has(e.target).length||0!==$(".popover").has(e.target).length||$(this).popover("hide")})}),$('body:not(".mobile-menu-toggler")').on("click",function(e){$(e.target).is('.wbm-sm, input[name="product-switcher"], label[for*="open_"], span, .sidebar-search, .select2-selection__rendered, .select2-selection')||navigation_hide()}),$("body").on("change",'input[type="checkbox"], input[type="radio"]',function(e){var t=$(this).parents("tr.ui_checked_columns");t.length&&t.find("input:first").is($(this))&&($(this).is(":checked")?t.addClass("hl-aw"):t.removeClass("hl-aw"),"function"==typeof __r____changed&&__r____changed())}),$("body").on("click",".ui_link, .ui_link_replaced",function(){$.each($('input[type="checkbox"]'),function(){$(this).is(":checked")?$(this).parents("tr.ui_checked_columns").addClass("hl-aw"):$(this).parents("tr.ui_checked_columns").removeClass("hl-aw"),"function"==typeof __r____changed&&__r____changed()})}),$("body").on("click",'#extended_sysinfo-1 span[data-entry="nf_seen"]',function(e){e.preventDefault();var t=$(this),i=$('form[action*="seen_newfeatures.cgi"]');$.ajax({type:"GET",url:i.attr("action"),data:!1,statusCode:{200:function(){t.parents(".panel.panel-default").remove()}}})}),$("body").on("click",'#extended_sysinfo-1 span[data-entry="right_upok"]',function(e){e.preventDefault();$(this);var t=$('form[action*="package-updates/update.cgi"]');t.attr("method","POST"),$("").attr({type:"submit",value:1}).appendTo(t),$('input[name="u"]').appendTo(t),t.submit()}),$("body").on("click","a#atclearcache",function(e){set_onbeforeunload_status(0,0),Object.keys(localStorage).forEach(function(e){/^allowed_trigger|^notifications_|^sysinfo_/.test(e)&&localStorage.removeItem(v___server_hostname+"-"+e)}),$(".right-side-tabs-dismiss .fa-trash").trigger("click"),$(".right-side-tabs-dismiss .fa-refresh").trigger("click");var t=$(this);spinnerfy_buttons(t,[1.5,-33,"small",1e3])}),$("body").on("click",function(e){$(e.target).is('select[name="settings_navigation_color"], select[name="settings_background_color"], select[name="settings_side_slider_palette"], input[name="settings_side_slider_fixed"], label[for^="settings_side_slider_fixed"], div.aradio')||$(".right-side-tabs-toggler").hasClass("hidden")||!$(".right-side-tabs-toggler").hasClass("opened")||$(e.target).parents("#right-side-tabs").is("#right-side-tabs")||$(e.target).is(".btn-menu-toggler")||$(e.target).is(".fa-bell")||$(e.target).is("li.user-link.favorites")||$(e.target).is(".badge.badge-danger")||$(".right-side-tabs-toggler:not(.hidden) .btn-menu-toggler").trigger("click")}),$("body").on("click",".authentic_update:not(.disabled)",function(e){e.preventDefault(),e.stopPropagation();var t="1"==$(this).data("stable")?1:0;theme.update(t)}),$("body").on("click",'a[data-href="#theme-info"]',function(){theme_update_notice(0)}),$("body").on("hide.bs.modal","#update_notice",function(){$(this).hasClass("r")?($("body").append('
    '),$("div.update_notice_overlay").animate({opacity:1},560,function(){setTimeout(function(){theme_reload()},100)})):($("#content").animate({"margin-left":___________content_initial_},280),$("aside").animate({"margin-left":0},280,function(){$(".right-side-tabs, .right-side-tabs-toggler").removeClass("pointer-events-none bg-filter-grayscale-opacity50"),$(".container-fluid").removeClass("bg-filter-blur-grayscale-opacity50")})),$("#update_notice").remove()}).on("show.bs.modal","#update_notice",function(){$("#update_notice").length;$(this);var e=$("aside").css("left");___________content_initial_=$("#content").css("margin-left"),________version_date_obj=$(this).find(".modal-body > h4:first-child"),________version_curr_text=________version_date_obj.text().split(/\s+/)[1],________version_first_text=$(".version_separator:last").text(),________multi_in_branch=$(".version_separator").length,_____version__x=________version_first_text+"..."+________version_curr_text,__release_time=v___theme_version_git.slice(-4,-2)+":"+v___theme_version_git.slice(-2),_____release_date_=________version_date_obj.text().match(/\(([^)]+)\)/),_____release_date=!!_____release_date_&&_____release_date_[1],__release_date_time=_____release_date+(__release_time.length>2?", "+__release_time:"");var t=$(".version_separator"),i=theme_language("theme_xhred_global_development_version");$.each(t,function(){$(this).attr("target","_blank")}),setTimeout(function(){$(".container-fluid").addClass("bg-filter-blur-grayscale-opacity50")},0),$("#content").animate({"margin-left":0},450),$("aside").animate({"margin-left":e},450),$(".right-side-tabs, .right-side-tabs-toggler").addClass("pointer-events-none bg-filter-grayscale-opacity50");var a=$(this).find(".modal-body h4"),s=$(this).find(".modal-body h4:first");if(!$(this).find(".modal-body h4:first .diffctl").length){_=new RegExp(RegExp.quote(________version_curr_text),"g");________multi_in_branch&&(a.replaceText(_,""+_____version__x+""),a.replaceText(/Version/,"Versions"));var n=$(this).find('.modal-body h4:contains("patch")').length;if(a.length&&n){var o=parseFloat($(this).find('.modal-body a[href*="authentic-theme/releases"]:first').text().match(/-?(?:\d+(?:\.\d*)?|\.\d+)/)[0]);s.append('
    "+theme_language("theme_xhred_global_committed_on")+": "+__release_date_time+'" class="btn btn-transparent diffctl text-dark text-force-link-hover" href="https://github.com/qooob/authentic-theme/compare/'+o+'...master">
    '),s.after(' '+i+"")}else s.append('
    "+theme_language("theme_xhred_global_released_on")+": "+__release_date_time+'" class="btn btn-transparent diffctl changelogctl text-dark text-force-link-hover" href="https://github.com/qooob/authentic-theme/blob/master/CHANGELOG.md">
    ').append(''+________version_curr_text+"")}var _=new RegExp(RegExp.quote("("+_____release_date+")"),"g");a.replaceText(_,"");var r=[];$.each($(this).find('li span:contains("Fixed bugs")'),function(){var e=$(this),t=$(this).parent("li"),i=t.parent("ul"),a=t.find("a:not(.bctl)"),s=a.length;________multi_in_branch?(r.push(a),1===i.find("li").length&&(i.prev("hr").prev("a").remove(),i.prev("hr").remove(),i.addClass("no-data")),t.remove()):(e.html([e.text().slice(0,6),s+" ",e.text().slice(6)].join("")),t.find("a:first").before(''),t.find("a.bctl").click(function(e){a.toggleClass("hidden"),t.find("a.bctl i").toggleClass("fa-minus-square-o")}),a.addClass("obj-popup hidden"))}).promise().done(function(){if(________multi_in_branch&&!$(".bctl").length){$(".modal-body h4[data-development]").prev("hr").before('
    • Fixed bugs
    '),$(".modal-body span[data-bugs-container]").append(r);function e(e,t){return parseInt($(t).text().replace("#",""))'),t.find("a.bctl").click(function(e){i.toggleClass("hidden"),t.find("a.bctl i").toggleClass("fa-minus-square-o")}),i.addClass("obj-popup hidden");var s=$("div[data-bugs]"),n=s.find("a:not(.bctl)").length;!n&&s.prev(".hr-dashed").remove(),!n&&s.remove()}var o=$(".modal#update_notice h4 span");if(Test.strContains(o.text(),"...")&&Test.strContains(o.text(),"patch")){var _=parseInt(o.text().split("...")[1].substr(-1,1));_&&$.each($(".version_separator:not(.version_dev)"),function(e,t){e+1!=_?$(this).addClass("hidden"):$(this).text($(this).text()+"-"+theme_language("theme_xhred_global_release").toLowerCase())})}})}),$("body").on("click contextmenu",'a[data-href*="/webmin/edit_webmincron.cgi"]',function(e){e.preventDefault(),e.stopPropagation();var t=Core.moduleAvailable("virtual-server")?"virtual-server":"system-status";theme_messenger(''+theme_language("theme_xhred_sysinfo_update_start")+'.   ',1800,"info","sysinfoRecollect",0),$("body").find("#system-status").find('h3 > a[data-refresh="system-status"]').addClass("disabled btn-inverse").removeClass("btn-success"),$.ajax({type:"GET",url:v___location_prefix+"/"+t+"/recollect.cgi",data:!1,dataType:"text",success:function(e){Test.strContains(e,v___page_signin_form)?v___available_session=0:(get_pjax_content(v___location_prefix+"/sysinfo.cgi",["success",theme_messenger,[''+theme_language("theme_xhred_sysinfo_update_end"),4,"success","sysinfoRecollect"],0]),information_update())},error:function(e){theme_messenger(''+theme_language("theme_xhred_sysinfo_update_failed"),20,"error","sysinfoRecollect")}})}),$("body").on("click",".csf-submit",function(e){e.preventDefault();var t=$(this).data("id");$("#"+t).submit()}),$("body").on("click",".inline-row input",function(e){$(this).is(":checked")?$(this).parents(".gl-icon-container").addClass("highlighted"):$(this).parents(".gl-icon-container").removeClass("highlighted")}),$("body").on("click contextmenu","div.icons-container, div.small-icons-container",function(e){if("click"===e.type&&$(e.target).is(".gl-icon-select")&&!v___available_navigation)e.preventDefault(),$(this).trigger("contextmenu");else if("contextmenu"===e.type){e.preventDefault(),$(this).find("input").is(":checked")?($(this).find("input").prop("checked",!1),$(this).removeClass("highlighted")):$(this).find("input").length&&($(this).find("input").prop("checked",!0),$(this).addClass("highlighted"));var t=$(e.target).is(".icon_link")?$(e.target).parent(".gl-icon-container").find(".fa-select, .fa-selected"):$(e.target).is(".gl-icon-select")?$(e.target):$(e.target).is("img")?$(e.target).parent("a").parent(".gl-icon-container").find(".fa-select, .fa-selected"):$(e.target).find(".fa-select, .fa-selected");t.hasClass("fa-select")?t.removeClass("fa-select").addClass("fa-selected"):t.removeClass("fa-selected").addClass("fa-select")}"function"==typeof db_check_selected&&db_check_selected()}),$("body").on("click",".row.icons-row.vertical-align .icons-container, .row.icons-row.vertical-align .small-icons-container",function(){$(this).hasClass("forged-xx-skip")}),__is_shifted=!1,__is_tabbed=!1,$(document).on("keyup keydown",function(e){var t=e.keyCode?e.keyCode:e.which;__is_shifted=e.shiftKey,__is_tabbed=9==t}),$("body").on("change",".onchange_form_submit_triggger",function(e){e.preventDefault(),$(this).parent("form").submit()}),$("body").on("click",'button.ui_form_end_submit[type="button"]:not(.disabled)',function(){var e=$(this).next('input[type="submit"].hidden'),t=$(this).parent(".btn-group").next('input[type="submit"].hidden');e.length||(e=t);var i=e.parent(),a=(i.parent("tr").find("form"),e.parents("form"));if(!a.length)return(a=e.closest("form")).length||(a=i.prev("form")),a.length||(a=i.prev().prev("form")),a.length||(a=i.prev().prev().prev("form")),a.append(a.nextUntil(i)),void $.each(i.find("select, input"),function(){$("").attr({type:"hidden",name:$(this).attr("name")?$(this).attr("name"):$(this).attr("id"),value:$(this).val()}).appendTo(a)}).promise().done(function(){a.submit()});$("").attr({type:"hidden",name:e.attr("name")?e.attr("name"):e.attr("id"),value:$.trim(e.val())}).appendTo(a),e.trigger("click")}),$("body").on("click",'.ui_form_end_submit:not(.disabled), .page_footer_submit:not(.disabled):not([href*="javascript:history"])',function(){var e=!1,t=!1;($(this).parents('form[action="fetch.cgi"]').length||$(this).parents('form[action="download.cgi"]').length&&!Core.curModule("cpan"))&&(e=1e3,t=1),Core.curModule("csf")?spinnerfy_buttons($(this),[2,-29,"small",t]):spinnerfy_buttons($(this),!1,e,t)}),$("body").on("dblclick",'.mppopup a[onclick*="fileclick("], .mppopup a[onclick*="parentdir("]',function(e){e.preventDefault()});var _=0,r=null;$("body").on("dblclick",'.mppopup a[onclick*="select("]',function(e){$(".mppopup button[data-mppopup_confirm]").trigger("click")}),$("body").on("click",'.mppopup a[onclick*="fileclick("], .mppopup a[onclick*="parentdir("]',function(e){if(e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation(),_++,$data_mppopup_value.val($v__mpp__g_ol),1===_)r=setTimeout(function(){if(_=0,"undefined"==typeof $v__mpp__g_gp&&($v__mpp__g_gp=0),$v__mpp__g_gp){var e=chooser_get_link($v__mpp__g_op);chooser_get(e)}else chooser_control($v__mpp__g_ol,0,0);$v__mpp__g_gp=0},240);else if(clearTimeout(r),_=0,$v__mpp__g_olt){var t=chooser_get_link($v__mpp__g_op);chooser_get(t)}else chooser_control($v__mpp__g_ol,1,1)}),$("body").on("click",".mppopup button[data-mppopup_confirm]",function(){chooser_control($data_mppopup_value.val(),1,1)}),$("body").on("show.bs.modal",".mppopup",function(){v__mpp__ml_t__e=0,$data_mppopup_value=$(".mppopup input[data-mppopup_value]"),$('.mppopup input[data-role="tagsinput"]').tagsinput({onTagExists:function(e,t){t.hide().fadeIn(),v__mpp__ml_t__e=1}})}),$("body").on("shown.bs.modal",".mppopup",function(){var e=$("body .mppopup").find(".modal-head");$("body .mppopup").find(".modal-body"),$("body .mppopup").find(".modal-body table"),e.find(".mppopup_filter > input");setTimeout(function(){$(".mppopup_filter_input").animate({opacity:1},$settings_animation_tabs_slide_time),$(".mppopup_filter_input").focus()},0)}),$("body").on("hidden.bs.modal",".mppopup",function(){refInput.removeClass("refInputData"),$('.mppopup input[data-role="tagsinput"]').tagsinput("destroy"),$("body .mppopup").remove(),$("button[data-mmclick].disabled, input[data-mmclick].disabled").removeClass("disabled").removeAttr("disabled")}),$("body").on("click",".mppopup_multi_done",function(e){refInput.val($.trim($('.mppopup input[data-role="tagsinput"]').val().replace(/,/g," "))),$('.mppopup span[aria-hidden="true"]').trigger("click")}),$("body").on("keyup",".mppopup_filter_input",function(e){var t=e.which,i=$(".mppopup table tbody tr:visible"),a=i.find("td:first-child a");if(!$(".mppopup .breadcrumbx").length){if(13!=t||1!==i.length||e.shiftKey){if(13==t&&1===i.length&&e.shiftKey){a.trigger("click").trigger("dblclick");var s=$(".mppopup .mppopup_multi_done:visible");s.length&&setTimeout(function(){s.trigger("click")},240)}}else a.trigger("click");$(".mppopup table tbody tr.noresults").length||$(".mppopup table tbody").append(''+theme_language("theme_xhred_global_no_results_found")+"");var n=$(".mppopup table tbody tr:visible:not(.noresults)"),o=$(".mppopup table tbody tr.noresults");n.length?o.addClass("hidden"):o.removeClass("hidden")}}),$("body").on("click","button[data-mmclick]:not(.disabled), input[data-mmclick]:not(.disabled)",function(e){e.preventDefault(),e.stopPropagation(),refInput=chooser_get_target($(this),1);var t=$(this),i=refInput.val(),a=encodeURIComponent(i),s=$(this).attr("data-mmclick").match("window.open\\(['\"]*(.*?)(\\s*['\"]*,.*?)"),n=s[1].match(/(\w+\.[a-z]{3,4})/gi)[0].replace(".cgi","");if(t.addClass("disabled").attr("disabled","disabled"),s[1]){var o=s[1].replace("encodeURIComponent(ifield.value)","refInputCurrValSafe");o=o.replace('"+"',"").replace('"+',"").replace("refInputCurrValSafe",a);function _(e,t,a,s,o){var _;_=o?' ":' ";var r=' ";$("body").append(r),refInput.addClass("refInputData"),$("body .mppopup").modal("show")}function r(e){e[1].startsWith("/")?$v__mpp__g_op=e[1]:$v__mpp__g_op="/"+e[1]}$.ajax({type:"POST",url:o,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var t=e,i=e.match(')<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/<\/body>|<\/html>/gi,""),i=$(t).filter(".table").html(),a=$(t).filter(".table").prev("b").html();_(t=chooser_breadcrumbs(a)+''+i+"
    ",0,0,refInput,0)}}});else if($.isArray(i))r(i),$.ajax({type:"POST",url:$v__mpp__g_op,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))v___available_session=0;else{var t=e.replace(/<(!doctype|script|link|meta)\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/<\/body>|<\/html>/gi,"");_(t=''+$(t).filter("table").html()+"
    ",0,0,refInput,1)}}});else{if($.isArray(i)&&-1===i[1].indexOf("&multi=1"))return;var a=t,s=$(a).filter("table").html();_(''+s+"
    ",0,0,refInput,0)}}}})}else $(this).removeClass("disabled"),$(this).attr("onclick",$(this).attr("data-mmclick")).removeAttr("data-mmclick"),$(this).trigger("click")}),$("body").on("click",".generate-password-key",function(e){var t=theme_password_generator();$("body").append('');var i=new Clipboard(".tmp-clipboard-obj");$(".tmp-clipboard-obj").trigger("click"),$(".tmp-clipboard-obj").remove(),i.destroy(),theme_messenger(''+theme_language("theme_xhred_password_generator_new_success").replace("%password",' '+Convert.htmlEscape(t)+" "),10,"success","newGeneratedPassword")}),$("body").on("click",'aside li[data-linked] a[href="'+v___location_prefix+'/shell/"], aside a[href="'+v___location_prefix+'/server-manager/shell.cgi"], aside a[href*="shell=1"]',function(e){e.preventDefault(),e.stopPropagation(),$(".user-link.ported-console:visible").trigger("click")}),$("body").on("change",'form[action*="save_log.cgi"] select[name="idx"]',function(e){var t=$("button.ui_submit.ui_form_end_submit");t.first().trigger("click"),t.addClass("disabled")}),$("body").on("keydown",'form[action*="save_log.cgi"] input[name="filter"], form[action*="save_log.cgi"] input[name="lines"]',function(e){if(13==e.keyCode){e.preventDefault();var t=$("button.ui_submit.ui_form_end_submit");t.first().trigger("click"),t.addClass("disabled")}}),$("aside").on("click",".__logout-link",function(e){progress.start(),get_server_tmp_var("goto",0)}),$("body").on("click",'button, input[type="submit"], a',function(e){v___page_activeElement=this}),$("body").on("click","._c__op_d",function(e){if($(e.target).is(this)){var t=$(this).find(".opener_trigger").first()[0];t&&t.click()}}),$(window).on("resize",function(){page_resized(),theme_shell_adapt()}),setTimeout(function(){window.onbeforeunload=function(){if(get_onbeforeunload_status())return progress.end(),!0;window.setTimeout(function(){v___available_navigation?"csf"===v___module&&(window.location=v___location_prefix?v___location_prefix+"/":"/"):progress.start()},0),window.onbeforeunload=null},$(function(){v___available_navigation||progress.end()})},100),theme_alert_charset(),favorites_detect(),page_render(0),setTimeout(function(){v___initial_load=0},1e3)})} \ No newline at end of file