From f14e4bc82deeef0bc4a26e937fdd28aace714deb Mon Sep 17 00:00:00 2001 From: Ilia Rostovtsev Date: Wed, 14 Nov 2018 14:54:33 +0300 Subject: [PATCH] Add support for new announcement system --- authentic-lib.pm | 38 ++++++++++++------- authentic.pm | 7 +++- sysinfo.cgi | 2 +- theme.info | 2 +- unauthenticated/css/bundle.min.css | 2 +- .../css/palettes/nightrider.min.css | 2 +- unauthenticated/js/bundle.min.js | 20 +++++----- 7 files changed, 44 insertions(+), 29 deletions(-) diff --git a/authentic-lib.pm b/authentic-lib.pm index bfbd8a5fb..4ac763d68 100644 --- a/authentic-lib.pm +++ b/authentic-lib.pm @@ -340,18 +340,23 @@ sub print_sysinfo_link sub get_sysinfo_warning { - my (@info) = @_; + my ($info_ref) = @_; my $returned_data = ''; # Show notifications first - @info = - sort {($b->{'type'} eq 'warning') <=> ($a->{'type'} eq 'warning')} @info; - $returned_data .= '
'; - foreach my $info (@info) { - if ($info->{'type'} eq 'warning') { - $returned_data .= replace("ui_submit ui_form_end_submit", - "btn-tiny ui_submit ui_form_end_submit", - &ui_alert_box($info->{'warning'}, $info->{'level'} || 'warn', undef, 1)); + if (ref($info_ref)) { + @{$info_ref} = + sort {($b->{'type'} eq 'warning') <=> ($a->{'type'} eq 'warning')} @{$info_ref}; + $returned_data .= '
'; + foreach my $info (@{$info_ref}) { + if ($info->{'type'} eq 'warning') { + $returned_data .= replace("ui_submit ui_form_end_submit", + "btn-tiny ui_submit ui_form_end_submit", + &ui_alert_box($info->{'warning'}, $info->{'level'} || 'warn', + undef, 1, + $info->{'desc'} || undef + )); + } } } return $returned_data; @@ -370,6 +375,7 @@ sub get_extended_sysinfo $info->{'type'} ne 'link' && $info->{'module'} ne 'mailbox' && $info->{'module'} ne 'system-status' && + $info->{'type'} ne 'warning' && $a->{'type'} ne 'warning' && $b->{'type'} ne 'warning') { @@ -383,14 +389,15 @@ sub get_extended_sysinfo } if ($info->{'id'} && $charts_not_supported eq 'no') { - my $open = ($info->{'open'} || $info->{'id'} eq 'domain') ? ' in' : ($theme_config{'settings_sysinfo_expand_all_accordions'} eq 'true' ? ' in' : ''); $returned_sysinfo .= ' -
{'id'} . '" data-sorter="' . $info->{'module'} . '" class="panel ' . + ($info->{'level'} ? (' panel-' . ($info->{'level'} ne 'warn' ? $info->{'level'} : 'warning') . '') : + 'panel-default') . + '' . ( $theme_config{'settings_animation_tabs'} ne 'false' ? '' : ' disable-animations' @@ -447,7 +454,10 @@ sub get_extended_sysinfo
-
'; +
'; if ($info->{'id'} ne 'plugin_virtualmin-notes' && $info->{'id'} ne 'acl_logins') { $returned_sysinfo .= @@ -3156,7 +3166,7 @@ sub get_xhr_request "csf_deny" => csf_temporary_list(), "collect_interval" => get_module_config_data('system-status', 'collect_interval'), "extended_si" => get_extended_sysinfo(\@info, undef), - "warning_si" => get_sysinfo_warning(@info), }; + "warning_si" => get_sysinfo_warning(\@info), }; print convert_to_json(\@updated_info); } elsif ($in{'xhr-search-in-file'} eq '1') { set_user_level(); diff --git a/authentic.pm b/authentic.pm index 88279de00..916b2fb45 100644 --- a/authentic.pm +++ b/authentic.pm @@ -803,7 +803,7 @@ sub theme_ui_hr sub theme_ui_alert_box { - my ($msg, $class, $style, $new_line) = @_; + my ($msg, $class, $style, $new_line, $desc_to_title) = @_; my ($rv, $type, $tmsg, $fa); if ($class eq "success") { @@ -816,6 +816,10 @@ sub theme_ui_alert_box $type = 'alert-danger', $tmsg = ($theme_text{'theme_global_error'} . '!'), $fa = 'fa-bolt'; } + if ($desc_to_title) { + $tmsg = $desc_to_title; + } + $rv .= '
' . "\n"; $rv .= ' ' . $tmsg . ''; $rv .= ($new_line ? '
' : ' ') . "\n"; @@ -1170,6 +1174,7 @@ sub theme_header_redirect_download ($delay ? $delay . "000" : 0) . ');'; print "\n"; print $script . "\n"; + if ($message) { print $message . "\n"; } diff --git a/sysinfo.cgi b/sysinfo.cgi index 6adab86d3..db25dddc9 100755 --- a/sysinfo.cgi +++ b/sysinfo.cgi @@ -146,7 +146,7 @@ if ($has_stats) { print '' . "\n"; # Print System Warning - print get_sysinfo_warning(@info); + print get_sysinfo_warning(\@info); print_sysstats_panel_end(); diff --git a/theme.info b/theme.info index d15b109f7..cc47f796d 100644 --- a/theme.info +++ b/theme.info @@ -1,7 +1,7 @@ desc=Authentic Theme longdesc=Webmin/Usermin/Virtualmin/Cloudmin theme based on Bootstrap and Font Awesome (https://github.com/authentic-theme/authentic-theme) version=19.20-beta6 -mversion=51 +mversion=52 depends=1.894 1.742 webmin=1 usermin=1 diff --git a/unauthenticated/css/bundle.min.css b/unauthenticated/css/bundle.min.css index b31e9ac0e..d8dd6f513 100644 --- a/unauthenticated/css/bundle.min.css +++ b/unauthenticated/css/bundle.min.css @@ -62,4 +62,4 @@ table.dataTable{clear:both;max-width:none !important;margin-top:6px !important;m * Copyright Ilia Rostovtsev * Licensed under MIT (https://github.com/authentic-theme/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-0_85x{font-size:.85em !important;vertical-align:0 !important}.fa-1_15x{font-size:1.20em !important;vertical-align:-8% !important}.fa-1_25x{font-size:1.33em !important;vertical-align:-7% !important}.fa-1_50x{font-size:1.50em !important;vertical-align:-5% !important}.fa-rotate-45{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.fa-rotate-315{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.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;width:auto}#content.__page.fvscroll{overflow-y:scroll}html[data-slider-fixed='0']:not([data-uri*="syslog"]):not([data-post*="log"]) #content.__page{min-width:fit-content}.progressing:not(.static):not(.__page){pointer-events:none !important}.__page.progressing:not(.static):not(.__page){overflow:hidden !important}.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}.table.table-transparent th,.table.table-transparent td{background-color:transparent !important;border:0 !important}.table.table-resizable thead tr th:not(:last-child):not(.nonresizable){border-right:1px dotted rgba(134,134,134,0.36) !important}.table.table-resizable thead tr th.nonresizable,.table.table-resizable thead tr th:last-child{pointer-events:none}.table.table-resizable.resizing,.table.table-resizable th::before{cursor:col-resize;user-select:none}.table.table-resizable th{position:relative}.table.table-resizable th::before{content:'';display:inline-block;height:100%;position:absolute;right:-5px;top:0;width:15px}.table.table-resizable th:last-of-type::before{display:none}.table.table-resizable td{max-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}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}body.loading-bg aside .sidebar-search{pointer-events:none}html:not([data-theme="white"]) aside .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-active,html:not([data-theme="white"]) aside .fancytree-container .fancytree-node.fancytree-active{background-color:rgba(215,215,215,0.06)}#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:11px;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:text-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 .user-link{margin-bottom:2px}#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;font-weight:500}#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.fa-dashboard,#sidebar ul li:not(.user-link) .fa.scaled2{font-size:16px;margin-right:-3px;margin-left:-1px}html[data-theme="white"] #sidebar{background:#fff}html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active>a:after,html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).has-sub>a:after{font-size:12px;top:10px;right:18px}html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active>a:after{right:16px}html[data-theme="white"] #sidebar{box-shadow:0 0 1px rgba(151,151,151,.27)}html[data-theme="white"] .switch-mins label{color:#fff}html[data-theme="white"] .switch-mins input:checked+label{color:#222;background:#fefefe}html[data-theme="white"] #sidebar .form-group .form-control.sidebar-search{color:#0a0a0a}html[data-theme="white"] #sidebar li:not(.menu-title):not(.menu-container){text-shadow:none}html[data-theme="white"] #sidebar li:not(.menu-container):not(.sub-wrapper):not(.has-sub) a:not(.navigation_module_trigger){color:#333 !important}html[data-theme="white"] aside .fancytree-container.fancytree-treefocus span.fancytree-node:not(.fancytree-active):hover,html[data-theme="white"] aside .fancytree-container .fancytree-node.fancytree-active span.fancytree-title,html[data-theme="white"] aside .fancytree-container.fancytree-treefocus span.fancytree-node:hover .fancytree-title,html[data-theme="white"] #sidebar ul>li.sub_active a span,html[data-theme="white"] #sidebar ul.user-html>li.user-html-string{color:#0b46ab !important}html[data-theme="white"] aside .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-active,html[data-theme="white"] aside .fancytree-container .fancytree-node.fancytree-active{background-color:#d7d7d747;border-right:3px solid rgba(230,55,22,0.9)}html[data-theme="white"] aside span.fancytree-node span.fancytree-expander:after,html[data-theme="white"] aside span.fancytree-title,html[data-theme="white"] .select2-selection--single span,html[data-theme="white"] .select2-selection span,html[data-theme="white"] #sidebar .user-link .a,html[data-theme="white"] #sidebar .user-link .text-danger,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container):not(.has-sub) a,html[data-theme="white"] #sidebar .user-link .fa,html[data-theme="white"] #sidebar li a.navigation_module_trigger,html[data-theme="white"] #sidebar li.has-sub a{color:#333 !important}html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active{background-color:rgba(0,0,0,.05)}html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).sub_active a{color:#333 !important}html[data-theme="white"] .form-group .form-control.sidebar-search{border-bottom:1px solid #999 !important}html[data-theme="white"] #sidebar ul.sub>li:not(.menu-container).sub_active:before,html[data-theme="white"] #sidebar ul.sub li:before{background:rgba(24,24,24,.35)}html[data-theme="white"] #sidebar ul.sub>li>a:before{color:rgba(24,24,24,.70)}html[data-theme="white"] #sidebar ul.user-links li:not(.menu-container):not(.sub-wrapper){border:1px solid #ccc;-webkit-box-shadow:none;box-shadow:none}html[data-theme="white"] #sidebar .form-group i.fa.fa-search{color:rgba(0,0,0,.70)}html[data-theme="white"] #sidebar .form-control::-webkit-input-placeholder{color:rgba(0,0,0,.60)}html[data-theme="white"] #sidebar .form-control:-moz-placeholder{color:rgba(0,0,0,.60)}html[data-theme="white"] #sidebar .form-control::-moz-placeholder{color:rgba(0,0,0,.60)}html[data-theme="white"] #sidebar .form-control:-ms-input-placeholder{color:rgba(0,0,0,.60)}html[data-theme="white"] #sidebar .form-control:focus::-webkit-input-placeholder{color:rgba(0,0,0,.75)}html[data-theme="white"] #sidebar .form-control:focus:-moz-placeholder{color:rgba(0,0,0,.75)}html[data-theme="white"] #sidebar .form-control:focus::-moz-placeholder{color:rgba(0,0,0,.75)}html[data-theme="white"] #sidebar .form-control:focus:-ms-input-placeholder{color:rgba(0,0,0,.75)}html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).sub_active{border-left:4px solid rgba(230,55,22,0.9)}html[data-theme="white"] .mobile-menu-toggler{border-right:2px solid rgba(26,26,26,.42)}html[data-theme="white"] .mobile-menu-toggler>.btn-primary{border:1px solid rgba(254,254,254,.99);background-color:rgba(254,254,254,.99) !important;color:#555 !important}html[data-theme="white"] .mobile-menu-toggler>.btn.btn-menu-toggler:active i{color:#999 !important}html[data-theme="white"] #sidebar .switch-mins a{background-color:rgba(254,254,254,.99)}html[data-theme="white"] #sidebar .loading-sm{border:1px solid #fff;border-top:1px solid #000}html[data-theme="white"] #sidebar .loader-close.sm{color:rgba(230,230,230,.75)}html[data-theme="white"] #sidebar .loader-close.sm>.fa:hover{color:rgba(240,240,240,.98)}html[data-theme="white"] .loader-close .fa{color:#333 !important}html[data-theme="white"] .loader-close>.fa:hover{color:#111 !important}html[data-theme="white"] .loading-container .loading-path{stroke:rgba(25,25,25,.75);stroke-width:.3}html[data-theme="white"] .autocomplete-selected,html[data-theme="white"] .select2-dropdown:not(.select2-content) .select2-results ul li:active,html[data-theme="white"] .select2-dropdown:not(.select2-content) .select2-results ul li:focus,html[data-theme="white"] .select2-dropdown:not(.select2-content) .select2-results ul li:hover,html[data-theme="white"] .select2-container--default .select2-dropdown:not(.select2-content) .select2-results__option--highlighted[aria-selected]:active,html[data-theme="white"] .select2-container--default .select2-dropdown:not(.select2-content) .select2-results__option:hover,html[data-theme="white"] .select2-container--default .select2-dropdown:not(.select2-content) .select2-results__option:focus,html[data-theme="white"] .select2-container--default .select2-dropdown:not(.select2-content) .select2-results__option[aria-disabled="true"],html[data-theme="white"] .select2-container--default .select2-dropdown:not(.select2-content) .select2-results__option[aria-selected="true"]{background-color:rgba(30,30,30,.14) !important}html[data-theme="white"] .favorites-menu-close{background:#eee}html[data-theme="white"] .favorites-menu-close .favorites-menu-bar{background:rgba(20,20,20,1)}html[data-theme="white"] .favorites-menu-outer.hover{background:rgba(232,232,232,.87)}html[data-theme="white"] .menu-exclude.exclude.favorites-title{color:#333}html[data-theme="white"] nav.favorites-menu li>span:not(.f__c),html[data-theme="white"] nav.favorites-menu li a{color:rgba(15,15,15,.95)}html[data-theme="white"] nav.favorites-menu li a:not(.disabled):hover{color:rgba(1,1,1,1)}html[data-theme="white"] #sidebar .user-link .fa:hover,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) a i:hover,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container):hover a i,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container):hover a,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) a:hover,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container):hover span,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container):hover a,html[data-theme="white"] .select2-selection__rendered .menu-status-label.pointer-events-none{color:#333 !important}html[data-theme="white"] .select2-selection__rendered:hover .menu-status-label,html[data-theme="white"] .select2-selection__rendered .menu-status-label:hover{color:#fff !important}html[data-theme="white"] .select2-selection__rendered .menu-status-label:hover,html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container) a:hover{color:#333 !important}html[data-theme="white"] .select2-dropdown,html[data-theme="white"] .select2-selection--single,html[data-theme="white"] .select2-selection{border:1px solid #999 !important}html[data-theme="white"] .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#555 transparent transparent transparent}html[data-theme="white"] .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #555 transparent}html[data-theme="white"] .top-aprogress:before{background-color:crimson}html[data-theme="white"] .select2-dropdown,html[data-theme="white"] .autocomplete-suggestions{background-color:rgba(255,255,255,.98) !important}html[data-theme="white"] aside .mCSB_dragger_bar{-webkit-filter:invert(100%);filter:invert(100%)}#system-status .panel-title>.extra_documentation_links{font-size:13px;line-height:initial;display:block;margin-top:-4px !important;margin-right:-11px !important;padding:2px 8px 4px 9px;color:#555;background-color:#fff95}#system-status .panel-title>.extra_documentation_links i{font-size:11px}#system-status .table.margined-top-25{margin-top:25px !important}#system-status .panel-title{font-size:18px;line-height:15px;text-align:left}_::-moz-progress-bar,body:last-child #system-status .panel-title{line-height:13px;padding-bottom:2px}.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;overflow:hidden;height:11px;display:inline-flex;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,.graph-container>.graph>.bar.red{font-size:9px;line-height:11px;position:relative;display:block;max-width:100%;height:11px;padding-left:2px;-webkit-transition:all 1s ease-in-out;-moz-transition:all 1s ease-in-out;-o-transition:all 1s ease-in-out;transition:all 1s 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);cursor:default}.graph-container>.graph>.bar.red+.bar.red{border-left:2px solid red}.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%'],.graph-container>.graph>.bar.green{border-right:2px solid #4ccb4c;background-color:#4cae4c}.graph-container>.graph>.bar.green+.bar.green{border-left:2px solid #4ccb4c}.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%'],.graph-container>.graph>.bar[style^='width:86%'],.graph-container>.graph>.bar[style^='width:87%'],.graph-container>.graph>.bar[style^='width:88%'],.graph-container>.graph>.bar[style^='width:89%'],.graph-container>.graph>.bar[style^='width:90%'],.graph-container>.graph>.bar.yellow{border-right:2px solid #f0ad4e;background-color:#d58512}.graph-container>.graph>.bar.yellow+.bar.yellow{border-left:2px solid #f0ad4e}.graph-container>.graph>.bar[style^='width:0%']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width: 0%']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width:0']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width: 0']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width:-']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width: -']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar.gray{border-right:2px solid #ddd;background-color:#f0f0f0}.graph-container>.graph>.bar[style^='width:-']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width: -']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar.gray{color:#aaa}.graph-container>.graph>.bar.gray+.bar.gray{border-left:2px solid #ddd}.graph-container>.graph>.bar.red{color:#fff;border-right:2px solid red;background-color:#d91212}.graph-container>.graph strong[data-first]+strong{margin-left:-24px;min-width:24px;text-align:right;padding-right:4px}.graph-container>.graph strong[data-first]{min-width:44px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.graph-container>.graph>.bar,.graph-container>.graph>.bar.gray{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:not(.fa2-collapse-right){display:none}#right-side-tabs #right-side-tabs-favorites.active+div+.right-side-tabs-dismiss .fa-stack{display:inline}#right-side-tabs #right-side-tabs-favorites.active+div+.right-side-tabs-dismiss i.fa-cog,#right-side-tabs #right-side-tabs-favorites.active+div+.right-side-tabs-dismiss i.fa-star-o{display:inline-block}#right-side-tabs #right-side-tabs-notifications.active+.right-side-tabs-dismiss i.fa-trash,#right-side-tabs #right-side-tabs-notifications.active+.right-side-tabs-dismiss i.fa-clear-all,#right-side-tabs #right-side-tabs-notifications.active+.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}_::-webkit-full-page-media,_:future,:root #right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings{margin-top:1.5px}#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.fa2-collapse-right,.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.fa2-collapse-right{font-size:1.4em;margin-top:3px;display:none;margin-left:12px;margin-right:5px}html[data-slider-fixed="0"] .right-side-tabs-dismiss i.fa2-collapse-right:before{content:'\f004'}@media all and (min-width:1366px){.right-side-tabs-dismiss i.fa2-collapse-right{display:inline-block}.right-side-tabs-dismiss i.fa2-collapse-right+i.fa-reload{margin-left:1px}}.right-side-tabs-dismiss i.fa2-collapse-right.hidden+i.fa-reload{margin-left:10px}.right-side-tabs-dismiss i.fa-dashboard{font-size:1.94em;margin-top:3px}.right-side-tabs-dismiss i.fa-reload{font-size:1.5em;line-height:24%;margin-top:3px;margin-left:12px;vertical-align:middle}@-moz-document url-prefix(){.right-side-tabs-dismiss i.fa2-collapse-right{margin-top:1px}.right-side-tabs-dismiss i.fa-reload{line-height:20px !important;margin-top:2px}.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.fa-settings{font-size:1.66em;margin-top:4px}.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 .tooltip>.tooltip-arrow,.right-side-tabs .tooltip>.tooltip-inner{margin-top:-7px}.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}#extended_sysinfo .panel-default>.panel-heading+.panel-collapse>.panel-body{border-color:#666 !important}.right-side-tabs[data-background-style='grey'] #extended_sysinfo a,.right-side-tabs[data-background-style='grey'] #extended_sysinfo .panel-title-status,.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}.badge-custom[data-stats]{margin-right:3px;margin-bottom:3px}[data-stats] .status-error{line-height:6px;display:inline-block;max-height:10px;margin-top:-2px;vertical-align:middle}.badge-custom.xs,#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)}#status_services-status-1-collapse .panel-body .table-responsive table thead tr th:first-child{padding-left:4px !important}#status-virtual-server-1-collapse .panel-body .table-responsive table tbody tr td:last-child{text-align:center !important}#status_services-status-1-collapse .panel-body .table-responsive table thead tr th:not(:first-child):not(:last-child),#status_services-status-1-collapse .panel-body .table-responsive table tbody tr td:not(:first-child):not(:last-child){text-align:center}#status_services-status-1-collapse .panel-body .table-responsive table thead tr th:last-child,#status_services-status-1-collapse .panel-body .table-responsive table tbody tr td:last-child{padding-left:4px !important}#status_services-status-1-collapse .panel-body .table-responsive table tbody tr td:last-child{padding-left:8px !important}.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='0'] .right-side-tabs{z-index:100004}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}.pagination>.active,.btn:not(.btn-menu-toggler){-webkit-filter:saturate(1.25) hue-rotate(4deg);filter:saturate(1.25) hue-rotate(4deg)}.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>.btn-menu-toggler{margin-left:-1px;opacity:1;border:1px solid #386386 !important;background-color:#3b6383 !important}@media(max-width:1080px){.mobile-menu-toggler.visible-xs{display:block !important}}@media(max-width:1080px){aside.hidden-xs{display:none !important}}aside{z-index:10002;backface-visibility:hidden}html[data-navigation-collapsed="1"] .jsPanel{z-index:10000 !important}aside select{visibility:hidden}aside [data-collapse-trigger]{font-size:11px !important}html[data-navigation-collapsed="1"] aside [data-collapse-trigger]:before{content:'\f005'}@media(max-width:1080px){aside [data-collapse-trigger-container]{display:none !important}a[data-trigger="navigaton_pinned"]{pointer-events:none;opacity:.5;cursor:not-allowed}}aside .select2{margin-top:4px;margin-bottom:4px}.select2-container{z-index:10002}.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-dropdown:not(.select2-content) .select2-results ul li:active,.select2-dropdown:not(.select2-content) .select2-results ul li:focus,.select2-dropdown:not(.select2-content) .select2-results ul li:hover{color:#333 !important;background:#bfcbd9 !important}.__page .select2-content.select2-selection.select2-selection--single span,.__page .select2-content.select2-selection.select2-selection span{color:#333 !important}.__page .select2-content.select2-selection--single,.__page .select2-content{border:1px solid #e8e8e8 !important}.__page .select2-content-container.select2-container--open .select2-selection__arrow b{border-color:transparent transparent #999 transparent !important}.__page .select2-content .select2-selection__arrow b{border-color:#444 transparent transparent transparent !important}.__page .select2{margin-top:1px;margin-bottom:1px}.select2-dropdown.select2-content{border-color:#66afe9 !important;background-color:rgba(255,255,255,.99) !important}.select2-dropdown.select2-content:not(.select2-dropdown--above){border-top-color:#e8e8e8 !important}.select2-dropdown.select2-content.select2-dropdown--above{-webkit-box-shadow:1px -1px 4px rgba(50,50,50,.40);box-shadow:1px -1px 4px rgba(50,50,50,.40);margin-top:2px}.select2-dropdown.select2-content .select2-search{border-bottom:1px solid rgba(55,55,55,.12) !important}.select2-dropdown.select2-content .select2-search input{border-color:#dedede !important}.__page .select2-content.heighter-34{padding:4px 0}.__page .select2-content.heighter-34 .select2-selection__arrow b{margin-top:1px}.select2-dropdown.select2-content.h34 .select2-search input{height:23px;padding:2px 3px 4px 3px}.__page .select2-content.heighter-28{padding:2px 0 !important}.__page .select2-content .select2-selection__arrow b{border-width:6px 3px 0 3px;margin-left:-1px;margin-top:-1px}.__page .select2-content-container.select2-container--open .select2-content .select2-selection__arrow b{border-width:0 3px 6px 3px}.select2-dropdown.select2-content.h28 .select2-search input{height:22px}.select2.select2-content-container.select2-container--open .select2-content,.select2.select2-content-container.select2-container--focus .select2-content{border:1px solid #66afe9 !important}.select2-container--default .select2-content .select2-results__option--highlighted[aria-selected]:active,.select2-container--default .select2-content .select2-results__option:hover,.select2-container--default .select2-content .select2-results__option:focus,.select2-container--default .select2-content .select2-results__option[aria-disabled='true'],.select2-container--default .select2-content .select2-results__option[aria-selected='true']{background-color:#f3f3f3 !important}.select2-container--default .select2-content .select2-results__option.select2-results__option--highlighted:active,.select2-container--default .select2-content .select2-results__option.select2-results__option--highlighted{background-color:#538dc7 !important;color:#fafafa !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 .sub-wrapper .sub#cat_webmin a i.fa-file-manager{display:none}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;pointer-events:none}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}#system-status .alert{padding:8px 10px}.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)}html[data-theme='gunmetal'] .bg-filter-blur-grayscale-opacity50,.bg-filter-blur-grayscale-opacity50{filter:opacity(50%) blur(1px) grayscale(100%) !important;-webkit-filter:opacity(50%) blur(1px) grayscale(100%) !important}html[data-theme='gunmetal'] .bg-filter-blur2-grayscale75-opacity75,.bg-filter-blur2-grayscale75-opacity75{filter:opacity(75%) blur(2px) grayscale(75%) !important;-webkit-filter:opacity(75%) blur(2px) grayscale(75%) !important}html[data-theme='gunmetal'] .bg-filter-blur2-grayscale100-opacity75,.bg-filter-blur2-grayscale100-opacity75{filter:opacity(75%) blur(2px) grayscale(100%) !important;-webkit-filter:opacity(75%) blur(2px) 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);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 .data-cnt,.piechart canvas{position:absolute;top:0;left:0}.piechart .percent{font-size:1.8em;position:absolute;z-index:2;top:36px;left:38px;display:inline-block;pointer-events:none;color:#777}.piechart .percent:after{font-size:.9em;margin-left:.1em;content:'%'}.piechart .label{font-size:9px;position:absolute;z-index:3;right:-145px;bottom:-125px;overflow:hidden;text-transform:uppercase;pointer-events:none;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:32px;-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:32px}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 !important}th.pointer-events-none[aria-controls^="DataTable"]{background:none !important}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:5px 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}@-moz-document url-prefix(){.ui_form_end_buttons .btn.ui_form_end_submit{line-height:12px;padding:4px 12px 6px 12px !important}.ui_form_end_buttons .btn.ui_form_end_submit>.fa-1_25x{line-height:14px}.ui_form_end_buttons .btn-group.end_submits .ui_form_end_submit{line-height:10px;padding:6px 12px !important}.opener_table_style+.ui_form_end_buttons .btn-group.end_submits .ui_form_end_submit{line-height:11px;padding:6px 12px !important}.ui_form_end_buttons .btn.btn-lg.page_footer_submit{line-height:19px;padding:6px 12px !important}@supports(animation:calc(0s)){.ui_form_end_buttons .btn.ui_form_end_submit{line-height:12px;padding:4px 12px 6px 12px !important}.ui_form_end_buttons .btn.ui_form_end_submit>.fa-1_25x{line-height:14px}.ui_form_end_buttons .btn-group.end_submits .ui_form_end_submit{line-height:10px;padding:6px 12px !important}.opener_table_style+.ui_form_end_buttons .btn-group.end_submits .ui_form_end_submit{line-height:11px;padding:6px 12px !important}.ui_form_end_buttons .btn.btn-lg.page_footer_submit{line-height:19px;padding:6px 12px !important}}}::-moz-progress-bar,body:last-child .bootbox .modal-footer .btn{padding:5px 8px 7px 8px}_::-moz-progress-bar,body:last-child .ui_form_end_submit:not(.heighter-28):not(.heighter-28-force){min-height:32px;max-height:32px;padding:5px 12px 5px 12px !important}_::-moz-progress-bar,body:last-child #atsettings .btn:not(.btn-xxs):not(.btn-tiny):not(.ui_link_replaced):not(.heighter-28):not(.heighter-28-force){line-height:19px;padding:5px 12px 6px 12px !important}::-moz-progress-bar,body:last-child .opener_table_style+.ui_form_end_buttons .btn-group.end_submits .ui_form_end_submit,::-moz-progress-bar,body:last-child .ui_form_end_submit:not(.heighter-28):not(.heighter-28-force){padding:4px 12px 5px 12px !important}.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-tiny.ui_form_end_submit span{display:inline-block;margin-top:-2px !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}.btn-primary{color:#fff !important;border-color:#2a5c87 !important;background-color:#2671b3 !important}.btn-primary:not(.btn-menu-toggler):hover,.btn-primary:not(.btn-menu-toggler):focus,.btn-primary:not(.btn-menu-toggler):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}.cke_dialog_ui_button_ok,.btn-success{color:#fff !important;border-color:#2c8828 !important;background-color:#349e30 !important}.cke_dialog_ui_button_ok:hover,.cke_dialog_ui_button_ok:focus,.cke_dialog_ui_button_ok:active,.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 !important;border-color:#474747 !important;background-color:#5c5c5c !important}.btn-grey:hover,.btn-grey:focus,.btn-grey:active,.btn-grey.active,.open .dropdown-toggle.btn-grey{color:#fff !important;border-color:#474747 !important;background-color:#4a4a4a !important}.btn-grey:active,.btn-grey.active,.open .dropdown-toggle.btn-grey{background-image:none !important}.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 !important;background-color:#5c5c5c !important}.btn-grey .badge{color:#5c5c5c !important;background-color:#fff !important}.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-default:hover:focus,.btn-default:hover.focus,.btn-default:focus,.btn-default.focus{border-color:#66afe9 !important}.btn-lg,.btn-group-lg>.btn{line-height:15px;height:34px;padding:8px 14px !important}.btn.btn-xxs.btn-round,.btn.btn-xs.btn-round,.btn.btn-sm.btn-round,.btn.btn-lg.btn-round,.btn.btn-round{border-radius:50%;padding:6px !important}.btn.btn-xxs.btn-round{padding:0 !important}.btn.btn-xs.btn-round{padding:1px !important}.btn.btn-sm.btn-round{padding:5px !important}.btn.btn-lg.btn-round{padding:8px !important}.btn-34{line-height:10px;height:32px}.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;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:16px;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}button.btn-default.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}button.btn-default.chooser_button{margin-top:1px !important}html[data-uri*='cluster-cron/edit.cgi'] button.btn-default.chooser_button{margin-top:-2px !important}.ui_buttons_row .ui_form_end_submit{margin-top:1px}td>select+input{margin:0 !important}form.ui_form>input,form.ui_form>select,form.ui_form>select+.select2,form.ui_form>input+input,form.ui_form>input+select{margin-right:3px !important}.ui_table_end_submit_right{float:right !important;margin-top:-35px !important}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,.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:3px 12px 5px 12px !important}_::-moz-progress-bar,body:last-child body[class*='webminlog'] textarea#anno+br+.ui_form_end_submit,_::-moz-progress-bar,body:last-child .chooser_button+.ui_form_end_submit:not(.heighter-34-force),_::-moz-progress-bar,body:last-child select[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force),_::-moz-progress-bar,body:last-child input[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force),_::-moz-progress-bar,body:last-child input[style*='height: 28px']+.ui_form_end_submit:not(.heighter-34-force),_::-moz-progress-bar,body:last-child .heighter-28+.btn-group>.btn:not(.heighter-34-force){font-size:94% !important;height:28px;min-height:28px;max-height:28px;margin-top:0}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;background-color:transparent !important}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:not(.opener_container_opened)[id]:before,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}.fa-lg.fa-bell{vertical-align:-13%}.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;border-left:transparent !important}.btn.btn-menu-toggler:active,.btn.btn-menu-toggler:focus,.btn.btn-menu-toggler:hover,.btn.btn-menu-toggler{border-color:transparent !important}.panel-heading .header{width:100%}.panel-heading .header a.btn{line-height:19px;height:32px !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.chooser_button{width:40px;height:28px;margin-left:-8px;padding:3px 10px 6px 11px !important}form.ui_form>input+button.chooser_button,form.ui_form>select+button.chooser_button,form.ui_form>input+input+button.chooser_button,form.ui_form>input+select+button.chooser_button,.heighter-34+button.chooser_button,input+button.chooser_button.heighter-34,form.ui_form>input+input+button.chooser_button{margin-left:-7px}@-moz-document url-prefix(){.heighter-34+button.chooser_button,input+button.chooser_button.heighter-34,form.ui_form>input+input+button.chooser_button{margin-left:-6px}}button.chooser_button[style*='width: 100%'],button.chooser_button[style*='width:100%']{float:right}button.date_chooser_button{padding:3px 10px 6px 10px !important}button.chooser_button .fa{font-size:11px;line-height:21px;vertical-align:top !important;pointer-events:none}button.chooser_button .fa-user-o,button.chooser_button .fa-group-o{font-size:15px;line-height:19px;opacity:.8}button.chooser_button .fa-group-o{font-size:17px}button.chooser_button .fa.fa-world{font-size:12px}button.date_chooser_button .fa-calendar{font-size:12px;line-height:26px;opacity:.8}[disabled]+.chooser_button{cursor:not-allowed;pointer-events:none;opacity:.65;-webkit-box-shadow:none;box-shadow:none;filter:alpha(opacity=65)}.heighter-34+.chooser_button ~ button,.heighter-34+.chooser_button{line-height:18px !important;height:32px !important;min-height:32px !important;max-height:32px !important}.heighter-34+.chooser_button+button.ui_form_end_submit,.heighter-34+.chooser_button ~ button{font-size:14px !important;line-height:10px !important;margin-top:1px}.heighter-34+.chooser_button+button.ui_form_end_submit i,.heighter-34+.chooser_button ~ button i{margin-top:-1px}html[data-script-name*='/usermin/list_sessions.cgi'] input[name='user']{margin-bottom:1px !important}html[data-script-name*='/virtual-server/transfer_form.cgi'] input[name='newttl']{vertical-align:bottom !important}body.apache input[style*="margin-top: 2px"]:not(.ui_textbox)+.chooser_button{margin-top:-2px !important}body.apache .chooser_button+input[style*="margin-top: 2px"]:not(.ui_textbox)+.chooser_button{margin-top:-1px !important}html[data-uri*='/virtual-server/import_form.cgi'] .container-fluid input[name='user'],html[data-uri*='/virtual-server/import_form.cgi'] .container-fluid input[name='group'],html[data-uri*='config.cgi?virtual-server'] .container-fluid input[name='vpopmail_user'],html[data-uri*='config.cgi?virtual-server'] .container-fluid input[name='vpopmail_group'],html[data-uri*='fetchmail'] .container-fluid input[type='submit'].btn.heighter-28+input[name='user'],html[data-uri*='updown'] .container-fluid .col_value>input[name='user'],html[data-uri*='updown'] .container-fluid .awradio+input[name='group']{vertical-align:middle}input[name='hours_mto'],input[name='hours_mfrom'],input[name='min']{margin-left:2px}.file_chooser_button_attached{position:absolute;margin-top:11px !important;margin-left:-28px}.file_chooser_button_attached_input{margin-left:-4px !important}.file_chooser_button_attached.fa-address-book-o{font-size:13px !important;margin-top:8px !important;opacity:.71}span+input+.file_chooser_button_attached.fa-address-book-o{margin-top:6px !important}button.chooser_button:hover,button.chooser_button:focus,button.chooser_button:active,button.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,.chooser_button:hover i,.chooser_button_emulate:hover,.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,html[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}body.lvm .tab-content>.tab-pane.active>div.row.icons-row,body[class^='servers'] .icons-row{margin-top:4px !important}.block{display:block}.inline-block{display:inline-block}.loading-sm{position:absolute;top:92px;left:45%;width:24px;height:24px;margin:0;-webkit-animation:progress 360ms linear infinite;animation:progress 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;margin-top:-12px;margin-bottom:-12px}.mCSB_dragger .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,.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+a.opener_trigger{vertical-align:20%}.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{font-family:'Authentic';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{font-family:'Authentic';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{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.050);box-shadow:inset 0 1px 1px rgba(0,0,0,.050)}.panel-collapse .panel-body{-webkit-box-shadow:none;box-shadow:none}.table>tbody>tr>td.opener_container,.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#e9e9e9}.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}.w-auto{width:auto}.w-25p{width:25%}.w-100p{width:100%}.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--4{margin-left:-4px !important}.margined-left--5{margin-left:-5px !important}.margined-left--10{margin-left:-10px !important}.margined-left-3{margin-left:3px !important}.margined-right-2{margin-right:2px !important}.margined-left-1{margin-left:1px !important}.margined-left-2{margin-left:2px !important}.margined-left-4{margin-left:4px !important}.margined-right--2{margin-right:-2px !important}.margined-right--3{margin-right:-3px !important}.margined-right--4{margin-right:-4px !important}.margined-right--5{margin-right:-5px !important}.margined-right-1{margin-right:1px !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--1{margin-right:-1px !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--3-5{margin-top:-3.5px !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-2{margin-bottom:2px !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}.margined-bottom--8{margin-bottom:-8px !important}.margined-bottom--10{margin-bottom:-10px !important}.pd-lf-2{padding-left:2px !important}.pd-rt-2{padding-right:2px !important}.pd-rt-4{padding-right:4px !important}.pd-lf-rt-6{padding-left:6px !important;padding-right:6px !important}.pd-lf-10{padding-left:10px !important}.pd-rt-10{padding-right:10px !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}.br-2{border-radius:2px !important}.br-4{border-radius:4px !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:32px;vertical-align:baseline !important}.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:middle;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:16px !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:16px !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,.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}.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:5px 12px 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):not(.atscontent):not(.smaller){color:#333;background-color:#fff !important}html:not([data-background-style='nightRider']) pre#CSFajax,.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-ng .CodeMirror,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:10003;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:10002;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:#ebf2fc}html:not([data-background-style='nightRider']) body[data-uri^="/settings-user.cgi"] #content.__page form .sub_table_container.table-hardcoded tr:hover td,html:not([data-background-style='nightRider']) body[data-uri^="/config.cgi?"] #content.__page form .sub_table_container.table-hardcoded tr:hover td,html:not([data-background-style='nightRider']) body[data-uri^="/uconfig.cgi?"] #content.__page form .sub_table_container.table-hardcoded tr:hover td{background-color:#ebf2fc !important}body[data-uri^="/filemin/config.cgi?"] #content.__page .sub_table_container tr:hover td{background-color:#ebf2fc !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}.tmp_spinner_theme_version{margin-top:-10px}.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;letter-spacing:-0.2px}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.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:25px}@media screen and (-webkit-min-device-pixel-ratio:0){tr.thead b,.table-title b,.panel-body form+table.table-hardcoded>tbody>tr.thead>td b{line-height:27px}}tr.thead,.table-title,.panel-body form+table.table-hardcoded>tbody>tr.thead>td{font-size:16px !important;height:32px;padding:2px 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}.table-title{border-bottom:1px solid #eaeaea !important}.col_header.opener_table_cell_style_small{background-color:#f6f6f6 !important}tr.thead td b{font-size:16px !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_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-lighter-slight{color:#bbb}.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'}.tooltip{z-index:999999999999}.font-family-default{font-family:'Roboto'}body,html{height:100%;margin:0;padding:0}html[data-current-product='usermin'] .ui_grid_table.table-hardcoded.table.table-striped.table-condensed.table-subtable,html[data-current-product='usermin'] .ui_buttons_table.table-hardcoded.table.table-striped.table-condensed.table-subtable{border:none !important}html[data-current-product='usermin'] table.ui_grid_table tr.ui_grid_row,html[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}img[src$='images/blue.gif'],img[src$='images/red.gif']{-webkit-filter:saturate(1.10) brightness(1.2) contrast(.7) hue-rotate(-10deg);filter:saturate(1.10) brightness(1.2) contrast(.7) hue-rotate(-10deg);max-height:3px !important}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#CSFlognum:not([data-encoding]):not([data-no-appearance]):not([multiple]),select.ui_select:not([data-encoding]):not([data-no-appearance]):not([multiple]),select:not([data-encoding]):not([data-no-appearance]):not([multiple]){padding-right:20px;padding-left:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 -144 1008 1008'%3E%3Cg transform='matrix(1 0 0 -1 0 864)'%3E%3Cpath fill='black' d='M504 108l-252 454h504z'/%3E%3C/g%3E%3C/svg%3E");background-size:12px 12px,12px 12px,0 0;background-position:calc(100% - 2px) calc(100% - 8px);background-repeat:no-repeat}select#CSFlognum:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus,select.ui_select:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus,select:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 -144 1008 1008'%3E%3Cg transform='matrix(1 0 0 -1 0 864)'%3E%3Cpath fill='dimgray' d='M504 612l252 -454h-504z'/%3E%3C/g%3E%3C/svg%3E")}select:not([data-encoding]):not([data-no-appearance]):not([multiple]).heighter-34{background-position:calc(100% - 2px) calc(100% - 10px)}select.input-sm:not(.heighter-34){padding:2px 4px 3px 4px;line-height:10px}[data-uri*="settings-backgrounds.cgi"] button.file_chooser_button_preview,[data-uri*="settings-logos.cgi"] button.file_chooser_button_preview{display:inline;width:40px;height:28px;margin-right:0 !important;margin-bottom:3px !important;margin-left:2px}[data-uri*="settings-backgrounds.cgi"] button.file_chooser_button_preview i,[data-uri*="settings-logos.cgi"] button.file_chooser_button_preview i{font-size:12px;pointer-events:none}[data-uri*="settings-backgrounds.cgi"] .ui_form_end_buttons td .btn,[data-uri*="settings-logos.cgi"] .ui_form_end_buttons td .btn{margin-top:4px}[data-uri*="settings-backgrounds.cgi"] .ui_form_end_buttons td:first-child .btn,[data-uri*="settings-logos.cgi"] .ui_form_end_buttons td:first-child .btn{margin-left:2px}[data-uri*="settings-backgrounds.cgi"] .ui_form_end_buttons td:last-child,[data-uri*="settings-logos.cgi"] .ui_form_end_buttons td:last-child{padding-right:0 !important}[data-uri*="settings-backgrounds.cgi"] .ui_form_end_buttons td:last-child .btn:first-child,[data-uri*="settings-logos.cgi"] .ui_form_end_buttons td:last-child .btn:first-child{margin-right:-4px}[data-uri*="settings-backgrounds.cgi"] .ui_form_end_buttons td:last-child .btn:last-child,[data-uri*="settings-logos.cgi"] .ui_form_end_buttons td:last-child .btn:last-child{margin-right:-2px}[data-uri*="webmin/edit_themes.cgi"] form[action*="settings.cgi"] .ui_form_end_buttons td:first-child .btn-group{margin-left:2px}[data-uri*="webmin/edit_themes.cgi"] form[action*="settings.cgi"] .ui_form_end_buttons td:last-child .btn-group{margin-right:-3px}.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:32px;max-height:32px}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}.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}.postgresql[data-uri*='view_table.cgi'] .long-table-wrapper ~ a[class^='select_'],.mysql[data-uri*='view_table.cgi'] .long-table-wrapper ~ a[class^='select_']{margin-top:4px}.postgresql[data-uri*='view_table.cgi'] .long-table-wrapper+.ui_form_end_buttons>buttons,.mysql[data-uri*='view_table.cgi'] .long-table-wrapper+.ui_form_end_buttons>buttons{margin-top:4px}form[action="view_table.cgi"] .ui_form_end_buttons button{padding-top:4px !important;padding-bottom:6px !important;line-height:20px}.th-server-sort em{font-size:14px;font-weight:400;line-height:20px}.th-server-sort a{color:#333}.th-server-sort a>img{zoom:90%;margin-left:6px;opacity:.4}.th-server-sort a>img[src$='grey.gif']{opacity:1}.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:60px;padding-left:6px;resize:vertical;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}textarea[rows='1'],textarea[rows='2'],textarea[rows='3'],textarea[rows='4'],textarea[rows='5'],textarea[rows='6'],textarea[rows='7'],textarea[rows='8'],textarea[rows='9'],textarea[rows='10']{height:60px}.opener_container textarea[rows='5'],textarea[rows='5'][name='dname'],textarea[rows='20']{height:120px}textarea[name*='list_from'],body[data-uri*="feedback_form.cgi"] textarea[cols="70"],textarea[name='keydata'][rows='20'],textarea[name='keyline'][rows='10'],textarea[name='private']{height:260px}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:8px 15px 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:23px;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)}.panel-heading-loading .favorites.dummy{visibility:hidden}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'],.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;height:28px !important;max-height:28px !important;padding-top:0 !important;padding-bottom:2px !important}_::-moz-progress-bar,body:last-child select.ui_select:not(.heighter-34)+button[type='button'],_::-moz-progress-bar,body:last-child input[onclick*='ajaxterm'],_::-moz-progress-bar,body:last-child .chooser_button+input,_::-moz-progress-bar,body:last-child .form-control.ui_textbox+input,_::-moz-progress-bar,body:last-child .table-hardcoded tbody tr td .submitter,_::-moz-progress-bar,body:last-child select+input[type='button'],_::-moz-progress-bar,body:last-child .heighter-28:not(.ui_form_end_submit):not(.select2-content),_::-moz-progress-bar,body:last-child .heighter-28-force,_::-moz-progress-bar,body:last-child .ui_form_end_submit.heighter-28-force,_::-moz-progress-bar,body:last-child .ui_form_end_submit.heighter-28{font-size:13px !important;line-height:17px !important;height:28px !important;min-height:28px !important;max-height:28px !important;padding-top:0 !important;padding-bottom:2px !important}form .table-hardcoded .heighter-34[style*='28px'][style*='2px']+.chooser_button{margin-top: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]{vertical-align:middle !important}.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:32px !important;min-height:32px !important;max-height:32px !important}label+select,label+input[type='text']{max-width:40%}.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):not(.chooser_button),form>.heighter-34:not(.btn-lg):not(.ui_form_end_submit):not(.chooser_button){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,.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:32px;margin-top:3px !important}form[action*='send_mail.cgi'] textarea+input[onclick*='chooser']+.file_chooser_button_attached{margin-top:10px !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,.8)}.favorites-menu-close:hover .favorites-menu-bar{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{z-index:11006;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}.btn-squiare-headln2{width:38px;padding-left:10px !important}.btn-squiare-headln2 i{font-size:17px;line-height:21px}#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;vertical-align:baseline}#headln2c span[data-main_title]{font-size:23px;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:23px;vertical-align:middle}.-helper,.-helper.__helper,.cursor-pointer,.cursor-pointer a.ui_link{cursor:pointer !important}.cursor-alias{cursor:alias !important}.cursor-na{cursor:not-allowed !important}.overflow-hidden{overflow:hidden}.sub_table_container.table-hardcoded tr,.sub_table_container.table-hardcoded td{cursor:default}.cursor-default{cursor:default !important}label.checkbox+span+.chooser_button,label.radio+span+.chooser_button{margin-left:-1px}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{display:inline-block;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 ._c__op_r>td>.opener_table_style .opener_shown .table-hardcoded tbody tr td.col_header[colspan='2'],.opener_table_style ._c__op_r>td>.opener_table_style{padding:2px !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:32px;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:30px;height:32px;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:18px;padding-left:12px;background:#f5f5f5 !important}._c__op_d{line-height:22px !important;height:32px;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}html[data-script-name*='virtual-server/edit_user.cgi'] #content>div>div>div.panel-body>form>table.table.table-striped.table-hover.table-condensed.opener_table_style.opener_table_style_small{border-bottom:1px solid #e8e8e8 !important}html[data-script-name*='virtual-server/edit_user.cgi'] #content>div>div>div.panel-body>form>table.table.table-striped.table-hover.table-condensed.opener_table_style.opener_table_style_small .opener_shown{margin-bottom:1px !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)}.display-grid{display:grid}.hidden-force,.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}.top-aprogress{position:absolute;z-index:99999999 !important;top:0;overflow:hidden;width:100%;height:2px;background-color:transparent}.top-aprogress:before{position:absolute;display:block;height:2px;content:'';animation:taprogress 3.5s forwards,taswing 4s forwards infinite;animation-delay:0s,4s;background-color:#e8433f}@keyframes taprogress{0%{width:0}100%{width:100%}}@keyframes taswing{0%{left:0}25%{left:100%}75%{left:-100%}100%{left:0}}body[data-progress='0'] .top-aprogress body[data-progress='0'] .top-aprogress:before{display:none !important}.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:progress 400ms linear infinite;animation:progress 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']):not([data-module*='custom']) .col_header b{font-size:16px !important;font-weight:normal !important;line-height:26px !important;display:inline-block;width:100%;height:32px;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'] .panel-heading .btn-accordion-filter{display:none !important}html[data-script-name*='settings-user.cgi'] .panel-body.inner table>tbody>tr>td:first-child{width:60% !important}html[data-script-name*='settings-user.cgi'] .btn-group.end_submits{margin-top:-12px}.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:not(.btn-round),button.btn:not(.btn-round),.csf-container input[type='submit']:not(.btn-round),.csf-container button.input:not(.btn-round),input[type='submit']:not(.btn-round){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'],.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.messenger-on-top,ul.messenger.messenger-fixed.messenger-on-bottom{bottom:13px;left:58%}html[data-slider-fixed='1'] ul.messenger.messenger-fixed.messenger-on-top,html[data-slider-fixed='1'] ul.messenger.messenger-fixed.messenger-on-bottom{bottom:13px;left:49%}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}html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-top,html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-bottom{left:50%}@media(max-width:1080px){html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-top,html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-bottom,html[data-navigation-collapsed="0"] ul.messenger.messenger-fixed.messenger-on-top,html[data-navigation-collapsed="0"] ul.messenger.messenger-fixed.messenger-on-bottom{left:50%}}@media(max-width:960px){html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-top,html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-bottom,html[data-navigation-collapsed="0"] ul.messenger.messenger-fixed.messenger-on-top,html[data-navigation-collapsed="0"] ul.messenger.messenger-fixed.messenger-on-bottom{left:8%}}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%}.messenger-on-top.messenger-on-right .messenger-message-inner i{top:32%;left:4%}.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}@-moz-document url-prefix(){.file-manager .container-fluid .btn-group.pull-right>.btn-group>button.btn-inverse,.file-manager .container-fluid .btn-group.pull-right>button.btn-inverse{padding:5px 8px 7px 8px}.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:5px 10px 7px 10px !important}.file-manager .container-fluid .btn-group.pull-right button.btn-danger{padding:5px 8px 7px 8px !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(1)+.tree-view+.row+.row>.col-sm-7{margin-top:-7px !important;margin-bottom:2px !important}.file-manager .container-fluid .tab-content .row:nth-child(1)+.tree-view+.row+.row>.col-sm-5{margin-top:-3px !important;margin-bottom:3px !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 .table-striped>tbody>tr td:nth-child(1),.file-manager .container-fluid .table-striped>thead>tr th:nth-child(1){width:10px !important;min-width:10px !important;max-width:10px !important;padding-right:0 !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:10vw !important}.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 a[href*="download"],.file-manager .container-fluid .ui_checked_columns td img,.file-manager .container-fluid .ui_checked_columns td label,.file-manager .container-fluid .ui_checked_columns{cursor:context-menu !important}.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 #__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 #__f__c__m{padding-top:0}.file-manager #__f__c__m li[data-block]+.divider{margin-top:0}.file-manager #__f__c__m li[data-block]{display:inline-block;width:42px;text-align:center}.file-manager #__f__c__m li[data-block] i{font-size:17px}.file-manager #__f__c__m li[data-block] a{padding:10px 10px 10px 8px !important}.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%;color:#555}.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}.file-manager form[name='chmod'] input[name='t_total']{width:53px}.file-manager form[name='chmod'] input[name='t_total']::-webkit-inner-spin-button,.file-manager form[name='chmod'] input[name='t_total']::-webkit-outer-spin-button{padding-right:4px;-webkit-appearance:none}.file-manager select[name='config_portable_module_filemanager_default_sort'] option[disabled]{font-weight:700;font-style:italic}.file-manager[data-uri*='config.cgi'] textarea[name='bookmarks']{height:25vh}.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:3px;right:85px}.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:-4px;left:1px;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.jsPanel-btn-close{margin-top:-12px}.jsPanel-controlbar .jsPanel-btn .jsglyph-close{margin-right:5px}.jsPanel-controlbar .jsPanel-btn-minimize{margin-top:-3px}.jsPanel-controlbar .jsPanel-btn-save{margin-top:-9px;margin-right:37px}::-moz-progress-bar,body:last-child .jsPanel-controlbar .jsPanel-btn-save{margin-top:-8px}.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-mode-select],.file-manager .jsPanel div[data-encoding-label]{margin-top:-13px;margin-right:13px}.file-manager .jsPanel div[data-mode-select]{margin-right:1px}div[data-mode-select-single-mode]{position:absolute;right:40px;margin-top:-24px}.xqcontent-forced div[data-mode-select-single-mode]{margin-top:-29px}body[class*="custom"] div[data-mode-select-single-mode]{margin-top:-23px}.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}form[action='upload_html.cgi'] .file-input-wrapper{margin-top:0;margin-bottom:-1px}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:not(.no-hover)>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:not(.no-hover)>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:not(.no-hover)>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):not(.no-hover)>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:not(.no-hover)>tbody>tr:hover td:not([colspan='2']),#atsettings>form>div>table>tbody>tr>td>table:not(.no-hover)>tbody>tr.atshover:hover td div,#atsettings>form>div>table>tbody>tr>td>table:not(.no-hover)>tbody>tr.atshover:hover td,html:not([data-background-style='nightRider']) .table-hover:not(.no-hover):not(.opener_table_style)>tbody>tr.ui_checked_columns:hover,html:not([data-background-style='nightRider']) .table-hover:not(.no-hover):not(.opener_table_style)>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}.table.no-hover:not(.table-striped) tr:hover{background-color:transparent !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:1px 20px 3.5px 20px}.file-manager .tooltip-inner{max-width:100%}.file-manager #headln2r .btn-group>a.btn{padding:5px 12px 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 #headln2l a{line-height:17px}.file-manager[data-uri*='config.cgi'] #headln2l a{display:none}.file-manager #upload-form{width:100%;height:140px;border:3px dashed #e3e3e3;background-color:#f5f5f5;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.file-manager #upload-form p{font-size:14px;line-height:135px;width:100%;height:100%;text-align:center;color:#444}.file-manager #upfiles{position:absolute;width:100%;height:100% !important;margin:0;padding:0;opacity:0;outline:0}.file-manager .ui_checked_columns:hover>.ui_checked_checkbox:nth-child(1)+td>a:before{font-family:'Authentic';font-size:16px;position:absolute;margin-top:0;margin-left:-37px;content:'\f0f7';cursor:pointer;opacity:.64;color:#333}@-moz-document url-prefix(){.file-manager .ui_checked_columns:hover>.ui_checked_checkbox:nth-child(1)+td>a:before{margin-top:-1px}}.file-manager .data-content-container>[data-tree-view]>.cspinner.centered-initial{position:absolute;top:48%;left:46.5%}.file-manager .data-content-container>.data-table .tree-view:not(.hidden)+.row{min-height:351px;margin-left:250px}.file-manager .data-content-container>[data-tree-view],.file-manager .data-content-container>.data-table .tree-view{position:absolute;overflow:hidden;width:260px;height:262px;min-height:320px;margin-top:6px}.file-manager .data-content-container>[data-tree-view]{border:1px solid #eee;border-top-width:2px}.file-manager .data-content-container>[data-tree-view]{margin-top:29px}.file-manager .data-content-container>.data-table .tree-view{pointer-events:none}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter{position:absolute;width:260px;margin-top:266px}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter input{font-size:12px;width:100%;max-height:23px;padding-top:2px;padding-left:26px;padding-right:30px;padding-bottom:3px;border:1px solid #eee;background-color:#fff}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter.hidden-content .filter_fancytree_clear{display:none}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter.hidden-content input{border-top-color:transparent}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter.hidden-content input::-moz-placeholder{color:transparent}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter.hidden-content input::-webkit-input-placeholder{color:transparent}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter.hidden-content input:-ms-input-placeholder{color:transparent}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle,.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear{position:absolute;top:5px;letter-spacing:3px}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle:hover,.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear:hover{color:#94b2d4}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear{left:6px}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle{right:5px}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .clear_delimiter{font-size:14px;position:absolute;top:-2px;right:-2px;cursor:default;letter-spacing:21px;opacity:.80;color:#ccc;pointer-events:none}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear .clear_delimiter{left:14px;right:initial}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle:hover .clear_delimiter,.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear:hover .clear_delimiter{color:#ccc}.file-manager .data-content-container>[data-tree-view] .fancytree-loading-node+.fancytree-icon{visibility:hidden}.file-manager .data-content-container>[data-tree-view] .fancytree-loading-node{position:absolute;margin-top:2px;margin-left:6px}.file-manager ul.fancytree-container{font-size:13px;padding-top:2px;border-style:none;background-color:transparent}.file-manager ul.fancytree-container mark{padding-right:0;padding-left:0}.file-manager span.fancytree-node{border-radius:0}.file-manager span.fancytree-title{color:#222}.file-manager span.fancytree-node.fancytree-active{background-color:#f5f5f5}.file-manager .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-active{border-color:transparent;background-color:transparent}.file-manager span.fancytree-node span.fancytree-expander:after,.file-manager span.fancytree-node.fancytree-active span.fancytree-icon:after,.file-manager span.fancytree-node span.fancytree-icon:after{font-family:'Authentic';font-size:14px}.file-manager span.fancytree-node span.fancytree-icon:after{content:'\f031'}.file-manager span.fancytree-node.fancytree-expanded span.fancytree-icon:after,.file-manager span.fancytree-node.fancytree-active span.fancytree-icon:after{content:'\f030'}.file-manager span.fancytree-node.fancytree-has-children span.fancytree-expander:after{content:'\f088'}.file-manager span.fancytree-node.fancytree-expanded.fancytree-has-children span.fancytree-expander:after{content:'\f085'}.file-manager .fancytree-ext-childcounter span.fancytree-childcounter,.file-manager .fancytree-ext-filter span.fancytree-childcounter{font-size:9px;font-size:8.5px;line-height:8px;position:absolute;top:-4px;right:-6px;min-width:8px;height:9px;padding:0 2px 0 2px;text-align:center;vertical-align:initial;color:#fff;border:1px solid gray;border-radius:10px;background:#777}.file-manager .fancytree-statusnode-nodata{text-align:center}.file-manager .fancytree-statusnode-nodata .fancytree-title{margin-left:0}.file-manager .fancytree-statusnode-nodata span.fancytree-expander,.file-manager .fancytree-statusnode-nodata span.fancytree-icon{display:none}.file-manager span.fancytree-expander{margin-top:1px}.file-manager .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-focused{border-color:transparent;background-color:#f5f5f5}.file-manager table.fancytree-ext-table.fancytree-treefocus tbody tr.fancytree-focused span.fancytree-title{outline:0}.file-manager .fancytree-container.fancytree-treefocus span.fancytree-node:hover{background-color:#eaf2fb}.file-manager .mCS-autoHide>.mCustomScrollBox ~ .mCSB_scrollTools{opacity:1 !important}body[data-uri^="/filemin/config.cgi?"] #content.__page .table-subtable tr td .sub_table_container{width:99.94% !important}body[data-uri^="/filemin/config.cgi?"] #content.__page .sub_table_container tr:first-child td{padding-bottom:3px !important}[cancel-preparing-download]:hover,{filter:contrast(250%);-webkit-filter:contrast(250%)}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:-34px}.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:-87px}.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}pre>i.label-transparent-15{font-weight:300;font-style:unset;display:inline-block;width:100%;padding:.31%;border-radius:unset}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:8px 15px 7px 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:not(.no-hover):not(.opener_table_style) ._c__op_r:hover,.table-hover:not(.no-hover):not(.opener_table_style) ._c__op_d:hover,.table-hover:not(.no-hover):not(.opener_table_style) ._c__op_r,.table-hover:not(.no-hover):not(.opener_table_style) ._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:not(.no-hover):not(.opener_table_style) tr[bgcolor='#ffffff']._c__op_r+tr[bgcolor='#feffff']:hover{background-color:#fff !important}.xcontent-force-no-styling .awobject{margin-left:2px}.col_value.col_header .fa.-helper{right:20px;margin-top:-25px}.xcontent-force-no-styling .col_value.col_header .fa.-helper{margin-top:-30px}.xcontent-force-no-styling .fa.-helper{font-size:16px !important;right:21px;margin-top:-25px}.fa.-helper{position:absolute;z-index:999;right:15px;margin-top:-20px}html[data-script-name*='settings-editor_read.cgi'] .badge.label-default{margin-top:-5px}html[data-script-name*='settings-editor_read.cgi'] .fa.-helper{margin-top:-21px}html[data-script-name*='settings-editor_read.cgi'] #content .CodeMirror+.ui_form_end_buttons .btn{margin-left:-2px !important}html[data-script-name*='settings-editor_read.cgi'] #content .CodeMirror+.ui_form_end_buttons td:last-child .btn{margin-right:-1px !important}.fa.-helper:hover{color:#333}.col_value.col_header .fa.fa-wrap-text.-helper,.fa.fa-wrap-text.-helper{right:43px;font-size:18px !important}.popover.popover-wider,.popover._helper{z-index:10001;max-width:320px}.popover._helper .popover-content table+h5{margin-top:20px}.popover._helper .popover-content h5{margin-bottom:-5px;letter-spacing:-0.1px}.popover.module-help{opacity:0}.pointer-events-none{pointer-events:none;cursor:not-allowed !important}.pointer-events-auto{pointer-events:auto !important}.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}.thead.container-resizeable-head{color:#333;border-color:#eaeaea;border-bottom:1px solid #eaeaea;border-top:1px solid #eaeaea;background-color:#f6f6f6;line-height:0;padding:10px 5px !important}.thead.container-resizeable-head>.db_editor_collapse{margin-top:-7px !important;pointer:default}.thead.container-resizeable-head+div{margin-top:1px !important}.table-resizable .ui_checked_checkbox{vertical-align:top}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}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}body[class*='postgresql'] form[action*='edit_tpriv.cgi'] #db,body[class*='mysql'] form[action*='edit_tpriv.cgi'] #db{min-height:32px}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'] .chooser_button{margin-top:6px !important}form+script+a[href*='newdb_form.cgi']{margin-top:5px}form[action='change_users.cgi'] a[href*='edit_user.cgi?']:not([href*='edit_user.cgi?new'])>i{color:#d80a0a}.font-weight-light{font-weight:300 !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:bold !important}.text-decoration-none{text-decoration:none !important}.text-left{text-align:left !important}.text-right{text-align:right !important}.z-index-10001{z-index:10001}.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:9px;left:8px}.btn-accordion-filter input,.btn-filter-top-right input{max-width:80px;padding:1px 2px 3px 2px;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}.awobject+a.help_popup{vertical-align:initial !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:32px}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*='trace.cgi'] pre{margin-top:4px}_::-moz-progress-bar,body:last-child.proc[data-uri*='edit_proc.cgi?'] select.heighter-28+button{height:28px !important;min-height:28px !important;max-height:28px !important}@-moz-document url-prefix(){body[class*='proc'] .panel-body>.btn:not(.btn-xxs):not(.btn-tiny):not(.ui_link_replaced){padding:4px 12px 6px 12px}}body[class*='proc'][data-uri*='index_search.cgi'] #files{width:50% !important}.btn-group.end_submits+select.ui_select{height:32px !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:32px}.ui_form_end_submit.heighter-28,.ui_form_end_submit.heighter-28-force{line-height:17px}b+select.ui_select:not(.heighter-34)+.ui_form_end_submit{line-height:17px}b+select.ui_select:not(.heighter-34)+.ui_form_end_submit span.cspinner_container{margin-top:3px}.btn-group>.ui_form_end_submit>i,.btn-group>.ui_form_end_submit>span:not(.label-transparent-35){display:inline-block;margin-top:0 !important}.btn-group>.ui_form_end_submit>span.label-transparent-35+span{margin-top:9px !important}html[data-uri*='syslog/save_log.cgi'] .container-fluid input[name='filter']+.btn-group{margin-top:1px}html[data-uri*='syslog/save_log.cgi'] .container-fluid form ~ [data-cm-viewer]+.ui_form{display:none}html[data-uri*='syslog/save_log.cgi'] .container-fluid form ~ [data-cm-viewer]{margin-bottom:6px}html[data-uri*='syslog/save_log.cgi'] .container-fluid form ~ [data-cm-viewer]+.ui_form+script+br{display:none}html[data-uri*='syslog/save_log.cgi'] .container-fluid .hidden.select2-hidden-accessible+.select2{display:none}html[data-uri*='syslog-ng/view_log.cgi'] .container-fluid form[action*='view_log.cgi']:first-child{margin-bottom:7px}html[data-uri*='syslog-ng/view_log.cgi'] .container-fluid form[action*='view_log.cgi']:first-child>input[name='filter']{vertical-align:top !important}.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/mass_aedit_form.cgi'] .panel-body .ui_form_end_buttons{margin-top:-12px !important}body[data-uri*='fsdump'] .panel-body select[name='fs']{vertical-align:top !important}body[class*='apache'] form[action*='search_virt.cgi']>input[name='what'],body[data-uri*='virtual-server/edit_newchroot.cgi'] .panel-body table .awobject.awcheckbox{vertical-align:middle}body[data-uri*='virtual-server/ratelimit.cgi'] .panel-body table .table-condensed tr td.td_tag{line-height:0}body[class*='postgresql'] form[action*='edit_dbase.cgi']>select[name='db'],body[class*='mysql'] form[action*='edit_dbase.cgi']>select[name='db']{vertical-align:bottom !important}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[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dd{padding-right:3px;padding-left:3px;border-right:1px solid #eee;border-left:1px solid #eee}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dd:last-child{border-bottom:1px solid #eee}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl{margin-top:4px;margin-bottom:4px;border-bottom-width:2px}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dt{font-size:16px;height:32px;padding:2px 10px;text-align:center;vertical-align:baseline;color:#282828;border:1px solid #f0f0f0;border-top-width:2px;border-top-color:#f0f0f0;background-color:#f6f6f6}body[data-uri*='usermin/edit_acl.cgi'] form[action*='save_acl.cgi'] .ui_grid_table tbody{border:1px solid #eee}body[data-uri*='usermin/edit_acl.cgi'] form[action*='save_acl.cgi'] .ui_grid_table tbody tr td{padding:1px 4px !important}body[class*='proftpd'] form[action*='save'] input[type='submit']{margin-top:10px !important}body[class*='proftpd'] .table-hardcoded .heighter-34+input[type='submit']{vertical-align:bottom}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*='proftpd'] .panel-body form .CodeMirror+br{display:none}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.custom .table-title b{line-height:24px}body.custom .xcontent-force-no-styling .col_value.col_header .fa.-helper{margin-top:-23px}body.custom table.ui_grid_table{background-color:#eee;margin-top:6px;margin-bottom:6px}body.custom table.ui_grid_table tr td:last-child{padding-right:5px !important}body.custom table.ui_grid_table tr,body.custom table.ui_grid_table tr td{padding-top:0 !important;padding-bottom:0 !important;display:contents}body.custom table.ui_grid_table tr td>form .table-responsive table table tr:last-child td{display:table-cell !important}body.custom table.ui_grid_table tr td>form,body.custom table.ui_grid_table tr td>form .table-responsive table td,body.custom table.ui_grid_table tr td>form .table-responsive table table,body.custom table.ui_grid_table tr td>form .table-responsive table td,body.custom table.ui_grid_table tr td>form .table-responsive table{padding:0 !important;margin:0 !important}body.custom table.ui_grid_table tr td>form{margin:1px !important}body.custom table.ui_grid_table tr td>form .table-responsive table textarea,body.custom table.ui_grid_table tr td>form .table-responsive table input{padding:0 3px !important;padding-bottom:3px !important;vertical-align:middle !important;margin-left:2px;font-weight:500;font-style:italic;text-align:center}body.custom table.ui_grid_table tr td>form .table-responsive table textarea{resize:none;height:28px;min-height:28px;padding-top:3px !important;padding-bottom:2px !important;text-align:left}body.custom table.ui_grid_table tr td>form .table-responsive table .chooser_button:not(.date_chooser_button){margin-top:2px !important;margin-left:-1px !important}body.custom table.ui_grid_table tr td>form .table-responsive table .chooser_button{vertical-align:top !important}body.custom table.ui_grid_table tr td>form .table-responsive table .date_chooser_button{vertical-align:middle !important}body.custom table.ui_grid_table tr td>form .table-responsive table tbody tr .col_label b{margin-left:10px;margin-right:2px}body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit{border-left:0;border-top:0;border-bottom:0;border-style:ridge;border-right-width:3px;font-weight:500;vertical-align:baseline;margin-right:5px;color:#444 !important;border-color:#e2e2e2 !important;background-color:#f6f6f6 !important;box-shadow:2px 2px 3px rgba(0,0,0,.12) !important}body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit:hover{color:#fff !important;background-color:#349e30 !important}body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit i.fa{margin-top:2px}body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit .cspinner_container .cspinner .cspinner-icon.dark{margin-top:4px;border-top-color:rgba(255,255,255,0.82);border-left-color:rgba(255,255,255,0.82)}body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit:hover i.fa:before{content:'\f02b'}body.custom table.ui_grid_table tr td:last-child .ui_link{float:right;margin-left:10px;margin-right:5px}body.custom table.ui_grid_table tr td>form .table.table-striped>tbody{border:0 !important}body.custom[data-uri*='index.cgi'] table.table-striped.dataTable tr td:last-child,body.custom:not([data-uri*='.cgi']) table.table-striped.dataTable tr td:last-child{white-space:nowrap;padding-right:10px !important;padding-left:3px !important}body.custom[data-uri*='index.cgi'] table.table-striped.dataTable tr td:first-child,body.custom:not([data-uri*='.cgi']) table.table-striped.dataTable tr td:first-child{white-space:nowrap;padding-right:7px !important}body[data-uri*='edit_cmd.cgi'].custom 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}iframe[src*='proxy.cgi']{height:75vh !important;min-height:75vh !important}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*='firewall6'] td[nowrap],body[class*='firewall'] td[nowrap]{white-space:normal}body[class*='firewall'] b+a+b._btn-links-top,body[class*='firewall6'] b+a+b._btn-links-top,body[class*='firewall'] style+b+b+a._btn-links-top,body[class*='firewall6'] style+b+b+a._btn-links-top{margin-left:-4px}body[class*='firewall'] form[action*="newchain.cgi"] input[name="chain"],body[class*='firewall6'] form[action*="newchain.cgi"] input[name="chain"]{vertical-align:bottom !important}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}body[class*='package-updates'] form[action*='update.cgi']>button[name$='_top']{margin-bottom:5px}td>textarea+br{line-height:21px !important}td>textarea+br+b,td>select+br,td>input+br{line-height:29px !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}.nav>li>a:hover,.nav>li>a:focus{background-color:#eee82}.nav-tabs>li>a:hover{border-color:transparent}.table>tbody>tr>td>label>img{margin-top:2px;margin-bottom:-2px}.sub_table_container td span>input,.table>tbody>tr>td{vertical-align:middle}.td_tag>img{margin-top:-2px}#content #system-status ._sync_sysinfo_cnt{margin-right:-20px;margin-top:-9px;border-color:transparent !important}html[data-script-name*='sysinfo.cgi'] #system-status table tr td,#content #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}html[data-level='3'] #system-status+#extended_sysinfo-1,html[data-level='3'] #system-status+#extended_sysinfo-1+br,html[data-level='3'] #system-status+#extended_sysinfo-1+br ~ br{display:none}@media all and (max-width:1600px){html[data-slider-fixed='1'][data-access-level='0'] #system-status .table{width:100%}html[data-slider-fixed='1'][data-access-level='0'] #system-status .table tr:hover{background-color:transparent !important}html[data-slider-fixed='1'][data-access-level='0'] #system-status .table tr td:nth-child(odd){display:inline-block;min-width:34%}html[data-slider-fixed='1'][data-access-level='0'] #system-status .table tr td:nth-child(even){display:inline-block;min-width:64%}html[data-slider-fixed='1'][data-access-level='0'] #system-status .table tr{display:block}}@media all and (max-width:1280px){html[data-slider-fixed='0'][data-access-level='0'] #system-status .table{width:100%}html[data-slider-fixed='0'][data-access-level='0'] #system-status .table tr:hover{background-color:transparent !important}html[data-slider-fixed='0'][data-access-level='0'] #system-status .table tr td:nth-child(odd){display:inline-block;min-width:34%}html[data-slider-fixed='0'][data-access-level='0'] #system-status .table tr td:nth-child(even){display:inline-block;min-width:64%}html[data-slider-fixed='0'][data-access-level='0'] #system-status .table tr{display:block}}.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}body[class*='server-manager'][data-uri$='server-manager/'] form[action*='mass.cgi'],body[class*='server-manager'][data-uri*='index.cgi'] form[action*='mass.cgi']{margin-top:3px}body[class*='server-manager'][data-uri$='server-manager/'] form[action*='index.cgi'] i.fa-check-circle-o:before,body[class*='server-manager'][data-uri*='index.cgi'] form[action*='index.cgi'] i.fa-check-circle-o:before{content:'\f004'}body[class*='server-manager'][data-uri$='server-manager/'] form[action*='index.cgi'] i.fa-search,body[class*='server-manager'][data-uri*='index.cgi'] form[action*='index.cgi'] i.fa-search{font-size:12px}#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}_::-moz-progress-bar,body[class*='webminlog'] input[name='ouser']{margin-top:3px}_::-moz-progress-bar,body:last-child[class*='webminlog'] textarea#anno+br+.ui_form_end_submit{margin-top:2px !important}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}html[data-webprefix*='servers/link.cgi/'] body.servers .container-fluid{pointer-events:none !important;filter:opacity(50%) blur(1px) grayscale(100%);-webkit-filter:opacity(50%) blur(1px) grayscale(100%)}html[data-webprefix*='servers/link.cgi/'] li.menu-exclude.ui-sortable-handle>a[href$='servers/?xnavigation=1'].menu-exclude-link,html[data-webprefix*='servers/link.cgi/'] a[href$='servers/?xnavigation=1'].right_pane_favorites_link,html[data-webprefix*='servers/link.cgi/'] aside li[data-linked] a[href$='servers/?xnavigation=1']{text-decoration:line-through;pointer-events:none;opacity:.40}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_acl.cgi'] .chooser_button{margin-top:-3px !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^='acl'] .table-hardcoded>tbody>tr>td.col_value>.table-hardcoded>tbody.border-global-color{border-color:#eee !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'] input[name='user'].heighter-34:not(.btn-lg):not(.ui_form_end_submit),body[class*='quota'] 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*='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}.mailboxes[data-uri*="view_mail.cgi"] .td_tag a.ui_link_replaced:first-child+a.ui_link_replaced,.mailbox[data-uri*="view_mail.cgi"] .td_tag a.ui_link_replaced:first-child+a.ui_link_replaced{display:none !important}form[action='list_mail.cgi'] input#user{margin-top:0 !important}form[action='mail_search.cgi'] input[name='search']{min-height:32px !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_global.cgi'] input:not([type='checkbox']):not([type='radio']),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_global.cgi'] tr:first-child input:not([type='checkbox']):not([type='radio']),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_global.cgi'] tr:first-child input:not([type='checkbox']):not([type='radio']),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_global.cgi'] tr:first-child input[type='submit'],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_global.cgi']:first-child,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:16px !important;vertical-align:middle !important}body[class*='fetchmail'] div>div>div.panel-body>form>table:nth-child(4)>tbody{border:0}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*='htaccess-htpasswd'] [name="search"]+button{margin-bottom:-2px !important}body[class^='htaccess'] input[name='dir']{vertical-align:middle}body[class*='webalizer'] td.td_tag img[src*='images/empty']{display:none}body[class*='virtual-server'][data-uri*='list_records.cgi'] button[name='manual']{float:right}body[class*='virtual-server'][data-uri*='list_records.cgi'] select[name='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}body[class*='quota'] input[name='user'],body[class*='quota'] input[name='group'],body[class*='useradmin'] input[name='username']{margin-top:3px !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*='package-updates'][data-uri*='view.cgi'] .table pre{padding:3px 3px 3px 6px;font-size:11.6px}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*='status'][data-uri*='edit_mon.cgi'] .tdhead{vertical-align:middle}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[data-uri="/virtual-server/"] form[action="search.cgi"]+script+form[action="domain_form.cgi"],body[data-uri="/virtual-server/index.cgi"] form[action="search.cgi"]+script+form[action="domain_form.cgi"]{margin-top:5px}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:not(.no-hover):not(.opener_table_style)>tbody>tr td,html:not([data-background-style='nightRider']) body[class*='postgresql'][data-uri*='view_table']:not(.csf):not(.backup-config) .table-striped:not(.no-hover):not(.opener_table_style)>tbody>tr td,html:not([data-background-style='nightRider']) body[class*='mysql'][data-uri*='backup_form']:not(.csf):not(.backup-config) .table-striped:not(.no-hover):not(.opener_table_style)>tbody>tr td,html:not([data-background-style='nightRider']) body[class*='postgresql'][data-uri*='backup_form']:not(.csf):not(.backup-config) .table-striped:not(.no-hover):not(.opener_table_style)>tbody>tr td{background-color:#fff !important}html:not([data-background-style='nightRider']) .table-hover.opener_table_style>tbody>tr:not(._c__op_r):hover{background-color:#fff}html:not([data-background-style='nightRider']) .table-hover.opener_table_style>tbody>tr._c__op_r:hover{background-color:#f9f9f9}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}.xqcontent-forced .table-responsive+.ui_form_end_buttons .btn{margin-left:2px}.xqcontent-forced .table-responsive+.ui_form_end_buttons .btn[data-form="submitter"]+.btn{margin-left:0}.datepicker{font-size:95%}.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:16px}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}body[data-module*='smart-status'] select[name='drive']+button.ui_form_end_submit,body[data-module*='smart-status'] select[name='drive']{font-size:14px !important;height:32px !important;min-height:32px}body[data-module*='fdisk'] .slider+input[name="S-text"]{margin-top:2px}body[data-module*='fdisk'] .slider+input[name="S-text"][readonly]{display:none}.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}.cke_dialog_background_cover{z-index:20000 !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}_::-moz-progress-bar,body:last-child .mppopup_string_done .btn-success{padding:2px 12px 3px 12px !important}.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-cmd+pre{display:inline-block;margin-top:-13px}html[data-level="3"] .-shell-port-container [data-shell-config]{display:none}.-shell-port-container [data-shell-config]{position:absolute;right:32px;top:30px;color:#ffffff50}.-shell-port-container [data-shell-config]>i{font-size:150%}.-shell-port-container [data-shell-config]:hover{color:#ffffff80;cursor:pointer}.modal-shell-config{z-index:999999}.modal-shell-config .modal-dialog{width:560px}.modal-shell-config table{margin-top:-8px !important;border:1px solid #aaaaaa50;margin-bottom:3px}.modal-shell-config table tr td{padding:4px}.progressing .-shell-port-close{pointer-events:auto !important}.-shell-port-container .-shell-port-close{position:absolute;z-index:11011;top:0;right:-90px;width:100px;height:100px;cursor:pointer;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:top right;transform-origin:top right;background-color:rgba(140,15,12,.95)}.-shell-port-container .-shell-port-close:before{font-family:'Authentic';font-size:12px;position:absolute;top:75px;right:58px;content:'\f0ec';-webkit-transform:rotate(135deg);transform:rotate(135deg);color:#ccc}.-shell-port-container .-shell-port-close:hover:before{color:#fff}_::-moz-progress-bar,body:last-child .-shell-port-container .-shell-port-close:before{top:77px}.-shell-port- .-shell-port-container{overflow:auto;height:100%;margin-top:-8px}.-shell-port- pre>b{display:inline-block;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}.session-reauthenticate-container-center{max-width:420px;margin:12% auto 0;padding:20px;border:1px solid #e6e6e6;background-color:#fff;box-shadow:-30px 30px 51px rgba(0,0,0,.2)}.session-reauthenticate-container-center:before{position:absolute;z-index:-1;top:0;left:0;width:100%;height:100%;content:'';opacity:.2;background-repeat:no-repeat;background-position:center center;background-size:contain;filter:grayscale(100%);-webkit-filter:grayscale(100%)}.session-reauthenticate-container-center [data-container-twofactor] input[type='number']{padding-top:1px;padding-right:2px;padding-bottom:1px}html[data-webprefix*='servers/link.cgi/'] .session-reauthenticate-container-center form .btn-success,html[data-webprefix*='servers/link.cgi/'] .session-reauthenticate-container-center form .form-group{display:none}.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}.session-reauthenticate>div>div.panel{background-color:rgba(255,255,255,.7)}@-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:rgba(51,51,51,.7);text-shadow:.25em 0 0 rgba(0,0,0,0),.5em 0 0 rgba(0,0,0,0)}60%{text-shadow:.25em 0 0 rgb(51,51,51,.7),.5em 0 0 rgba(0,0,0,0)}80%,100%{text-shadow:.25em 0 0 rgba(51,51,51,.7),.5em 0 0 rgba(51,51,51,.7)}}.progressing #headln2l,.progressing #headln2r,.progressing #headln2c .favorites{visibility:hidden;pointer-events:none}.progressing pre:not([data-xconsole]):empty:after{display:block;margin-top:-2px;content:' .';animation:dotsblack 1s steps(5,end) infinite}.progressing pre:not([data-xconsole]):empty{height:38px;max-height:38px}@keyframes dotsblack{0%,20%{color:rgba(0,0,0,0);text-shadow:.25em 0 0 rgba(0,0,0,0),.5em 0 0 rgba(0,0,0,0)}40%{color:rgba(255,255,255,.6);text-shadow:.25em 0 0 rgba(0,0,0,0),.5em 0 0 rgba(0,0,0,0)}60%{text-shadow:.25em 0 0 rgba(255,255,255,.6),.5em 0 0 rgba(0,0,0,0)}80%,100%{text-shadow:.25em 0 0 rgba(255,255,255,.6),.5em 0 0 rgba(255,255,255,.6)}}.progressing pre>i{visibility:hidden;-webkit-animation:3s fadeIn;animation:3s fadeIn;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@keyframes fadeIn{99%{visibility:hidden}100%{visibility:visible}}_::-moz-progress-bar,body:last-child input[type='password']:not(:placeholder-shown){font-size:8px !important}input[type='password'].use_input_warning_caps{padding-right:22px}.input_warning_caps{position:absolute;z-index:1000000;display:none;margin-top:3px;margin-top:3.5px;margin-left:-19px;color:rgba(165,34,34,.62)}.input_warning_caps.large{margin-top:5px;margin-top:5.5px;margin-left:-21px}.input_warning_caps:after{font-family:'Authentic';font-size:14px;content:'\f04a'}.input_warning_caps.visible{display:inline-block}.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}@keyframes colorify{0%{-webkit-filter:grayscale(100%);filter:grayscale(100%)}100%{-webkit-filter:grayscale(0);filter:grayscale(0)}}.colorify{-webkit-animation-name:colorify;animation-name:colorify;-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-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-sm{font-size:1.05em !important}.fa-sms{font-size:1.025em !important}.fa-smm{font-size:1.12em !important;vertical-align:-14%}.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}.fa-spin-fastest{-webkit-animation:fa-spin .5s infinite linear;animation:fa-spin .5s infinite linear}@-webkit-keyframes gradual{0%{-webkit-transform:rotate(0);transform:rotate(0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);animation-timing-function:cubic-bezier(.215,.61,.355,1)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-spin-gradual{-webkit-animation:gradual 1s infinite;animation:gradual 1s infinite}@-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 progress{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes progress{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 .versionSeparator{font-size:10px;display:inline-block;float:right;margin-top:-14px}.modal-dialog-update .versionSeparatorContainer{margin-top:-11px}.modal-dialog-update .versionSeparatorContainer>.versionSeparator{float:initial;margin-top:0}.modal-dialog-update .versionSeparatorContainer>.versionSeparator:not(:last-child):after{content:" "}.modal-dialog-update .versionSeparator+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 .versionSeparator+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 .versionSeparator .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+.versionSeparator+.no-data+.versionSeparator{margin-top:-9px}.modal-dialog-update .modal-body>h4:first-child+.versionSeparator+.no-data+.versionSeparator+hr{display:none}.modal-dialog-update [data-fixed-bugs] i.fa{display:block;margin-top:1px}.modal-dialog-update .bctl{vertical-align:initial}body[data-uri*='language'] .container-fluid .tooltip-inner,body[data-uri*='change-user'] .container-fluid .tooltip-inner,body[data-uri*='webmin/edit_lang.cgi'] .container-fluid .tooltip-inner{min-width:25vw}body[data-uri*='language'] .tooltip-inner i,body[data-uri*='change-user'] .tooltip-inner i,body[data-uri*='webmin/edit_lang.cgi'] .tooltip-inner i{white-space:nowrap}body[data-uri*='language'] .tooltip-inner p,body[data-uri*='change-user'] .tooltip-inner p,body[data-uri*='webmin/edit_lang.cgi'] .tooltip-inner p{margin:0 0 1px}body[data-uri*='language'] [name*='config_portable_theme'],body[data-uri*='change-user'] [name*='config_portable_theme'],body[data-uri*='webmin/edit_lang.cgi'] [name*='config_portable_theme']{margin-top:1px;margin-bottom:2px}body[data-uri*='language'] select[data-select='locales'][disabled],body[data-uri*='change-user'] select[data-select='locales'][disabled],body[data-uri*='webmin/edit_lang.cgi'] select[data-select='locales'][disabled]{width:161px;margin-top:1px;margin-right:3px;margin-bottom:2px}@-moz-document url-prefix(){body[data-uri*='language'] select[data-select='locales'][disabled],body[data-uri*='change-user'] select[data-select='locales'][disabled],body[data-uri*='webmin/edit_lang.cgi'] select[data-select='locales'][disabled]{width:156px}}body[data-uri*='language'] form[action*='change_lang.cgi'] .ui_form_end_buttons tbody tr:last-child td{padding-top:10px !important}.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}.ui_multi_select_row td:nth-child(2){text-align:center;vertical-align:middle !important}.ui_multi_select_row td:nth-child(2) button:focus,.ui_multi_select_row td:nth-child(2) button:hover,.ui_multi_select_row td:nth-child(2) button:active:focus,.ui_multi_select_row td:nth-child(2) button:active,.ui_multi_select_row td:nth-child(2) button{color:transparent !important}.ui_multi_select_row td:nth-child(2) button:after{font-family:'Authentic';font-size:14px;position:absolute;visibility:visible;margin-left:-11px;content:'\f076';color:#888}.ui_multi_select_row td:nth-child(2) button:hover:after{color:#0e437fcc}.ui_multi_select_row td:nth-child(2) button:first-child{margin-top:-42px}.ui_multi_select_row td:nth-child(2) button:last-child{margin-top:-10px !important;margin-left:7px !important}_::-moz-progress-bar,body:last-child .ui_multi_select_row td:nth-child(2) button:last-child{margin-left:10px !important}.ui_multi_select_row td:nth-child(2) button:last-child:after{content:'\f000'}.modal-list-users hr{margin-bottom:13px}@media(max-width:460px){body[data-uri*='sysinfo.cgi'] .col-xs-6,#content #system-status+.panel-group .col-xs-6,#content #system-status .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,html[data-slider-fixed='1'] #content #system-status+.panel-group .col-xs-6,html[data-slider-fixed='1'] #content #system-status .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,html[data-slider-fixed='1'] #content #system-status+.panel-group .col-md-3,html[data-slider-fixed='1'] #content #system-status+.panel-group .col-md-6,html[data-slider-fixed='1'] #content #system-status .col-md-3,html[data-slider-fixed='1'] #content #system-status .col-md-6{width:50%}html[data-slider-fixed='1'] body[data-uri*='sysinfo.cgi'] .col-xs-12,html[data-slider-fixed='1'] #content #system-status+.panel-group .col-xs-12,html[data-slider-fixed='1'] #content #system-status .col-xs-12{width:100%}}@media(min-width:768px){.modal-dialog.modal-dialog-update{width:660px;margin:30px auto}.modal-top-10{margin:10% auto}.modal-md{width:480px}}@media screen and (max-width:960px){.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:1080px){#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(pointer:coarse),(-moz-touch-enabled:1){.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide>.mCustomScrollBox ~ .mCSB_scrollTools{opacity:1 !important}aside .mCSB_scrollTools .mCSB_draggerContainer{left:6px;margin-top:-15px;margin-bottom:-15px}aside .mCSB_dragger .mCSB_dragger_bar{width:9px !important}.table-hardcoded .ui_grid_cell{padding-top:5px !important;padding-bottom:5px !important}}html[data-navigation-collapsed='1'] #content.__page{margin:0 !important}html[data-navigation-collapsed='1'] .autocomplete-suggestions{min-width:260px !important}@media screen and (max-width:1080px){.loader{margin:-20px 0 !important}.btn-hidden.hidden{display:inline-block !important}}html[data-navigation-collapsed='1'] .loader{margin:-20px 0 !important}html[data-navigation-collapsed='1'] .btn-hidden.hidden{display:inline-block !important}html[data-current-product='usermin'] body.plan .ui_form_end_buttons{margin-top:-12px !important}html[data-current-product='usermin'] body.forward .panel-body>._btn-links-top:nth-child(2){margin-left:-12px !important}html[data-uri*='forward/edit_alias.cgi'] select{margin-bottom:3px !important}html[data-uri*='forward/edit_alias.cgi'] input[type='submit']{vertical-align:inherit}html[data-uri*='software'] .container-fluid input[name='url'],html[data-uri*='software'] .container-fluid input[name='search']{vertical-align:bottom !important}html[data-uri*='software'] .container-fluid input#update,html[data-uri*='software'] .container-fluid input[onclick*='software/find.cgi']{margin-top:2px}html[data-uri*='software'] .container-fluid input#update{vertical-align:bottom !important}html[data-script-name*='software'][data-script-name$='tree.cgi'] .container-fluid input[name="filter"]{min-height:32px}body.time .container-fluid div[id="att_zone"] select+.select2,body.time .container-fluid div[id="att_zone"] select{min-width:35vh}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}}@media print{body,body *,body[data-uri*='mailbox/print_mail.cgi']{overflow-x:visible !important;overflow-y:visible !important}}tr .btn-hover-wash_off-in-row,tr .f__lnk_t_btn-el:not(.btn-dnwo){pointer-events:none;opacity:.42;filter:grayscale(100%);-webkit-filter:grayscale(100%)}tr:not(:hover) .f__lnk_t_btn-el:not(.btn-dnwo){color:#333 !important;border-color:#aaa !important;background-color:transparent !important}tr:not(:hover) .f__lnk_t_btn-el:not(.btn-dnwo).btn-hover-hide{visibility:hidden}tr:not(:hover) .f__lnk_t_btn-el:not(.btn-dnwo) ~ .btn{border-left-color:transparent !important}tr:hover .btn-hover-wash_off-in-row,tr:hover .f__lnk_t_btn-el:not(.btn-dnwo){visibility:visible;pointer-events:auto;opacity:1;filter:grayscale(0);-webkit-filter:grayscale(0)}.btn-hover-wash_off-in-row{background-color:transparent}tr .btn-hover-hide-in-row{visibility:hidden}tr:hover .btn-hover-hide-in-row{visibility:visible}tr:not(:hover) .btn-hover-wash_off-in-row:focus,tr:not(:hover) .btn-hover-wash_off-in-row:active,tr:not(:hover) .btn-hover-wash_off-in-row:hover,tr:not(:hover) .btn-hover-wash_off-in-row{color:#33333373 !important;border-color:#33333326 !important;background-color:transparent !important}tr:not(:hover) .btn-hover-wash_off-in-row:focus .cspinner_container .cspinner-icon,tr:not(:hover) .btn-hover-wash_off-in-row:active .cspinner_container .cspinner-icon,tr:not(:hover) .btn-hover-wash_off-in-row:hover .cspinner_container .cspinner-icon,tr:not(:hover) .btn-hover-wash_off-in-row .cspinner_container .cspinner-icon{border-top-color:#33333373 !important;border-left-color:#33333373 !important}@keyframes obj-fadein{0%{opacity:0}to{opacity:1}}.obj-fadein{animation-name:obj-fadein;animation-duration:.5s;animation-fill-mode:both}.btn-group.dropdown-editor_config_search{margin-left:-1px;z-index:10001}input+select+span+.btn-group.dropdown-editor_config_search{margin-left:-1px}b+select+span+.btn-group.dropdown-editor_config_search{margin-left:-4px}.select2-container--open+.btn-group.dropdown-editor_config_search{border-left-color:transparent;z-index:10000}.btn-group.dropdown-editor_config_search>.dropdown-toggle{width:36px;padding-left:9px !important;padding-top:4px !important;padding-bottom:6px !important}.btn-group.dropdown-editor_config_search>.dropdown-toggle>.fa{vertical-align:-15%}.btn-group.dropdown-editor_config_search li:first-child:not(.divider){padding:10px 10px 0 10px}.btn-group.dropdown-editor_config_search li:not(:first-child):not(.divider){padding:4px 10px 7px 10px}.btn-group.dropdown-editor_config_search li:last-child:not(.divider){padding:0 0 0 10px}.btn-group.dropdown-editor_config_search li.divider{padding-top:0;margin-top:4px}.btn-group.dropdown-editor_config_search li>span:hover{background-color:transparent}.btn-group.dropdown-editor_config_search [data-clear-search]{position:absolute;right:10px}.btn-group.dropdown-editor_config_search li input{width:100%;padding-right:30px}.btn-group.dropdown-editor_config_search li>span{display:inline-block;padding:0;white-space:initial}.btn-group.dropdown-editor_config_search ul [data-no-results-initial]:not(.showing-results){display:none}.btn-group.dropdown-editor_config_search [data-search-in-files-container]{display:grid}.btn-group.dropdown-editor_config_search [data-search-in-results-container] .mCSB_dragger{right:-7px}.btn-group.dropdown-editor_config_search .light [data-search-in-results-container] .mCSB_dragger{right:-12px}.btn-group.dropdown-editor_config_search [data-search-in-results-container]{max-height:25.3vh;display:block;overflow:auto}.btn-group.dropdown-editor_config_search [data-search-in-results-container]>span:first-child{margin-top:4px !important}.btn-group.dropdown-editor_config_search [data-search-in-results-container]+[data-search-stats]{display:flex;height:21px;margin-left:-10px;border-top:2px solid #75776d;font-size:12px;padding-left:2px;padding-top:2px}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results-container]+[data-search-stats]{background-color:#fff !important}.btn-group.dropdown-editor_config_search [data-search-in-results-container]+[data-search-stats] kbd{padding:0 2px 2px 2px;border:0;margin-left:3px;box-shadow:none;font-family:inherit;font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:50%}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results]{background-color:rgba(25,25,25,1)}.btn-group.dropdown-editor_config_search [data-search-in-results]{margin:10px 10px 5px 10px}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span{display:flow-root}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span{font-size:13px}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span>span:nth-child(3){display:inline-block;font-size:12px;padding-right:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span>span:nth-child(3){border-bottom:1px solid rgba(49,49,49,0.18);width:100%;padding-bottom:4px}.btn-group.dropdown-editor_config_search .light [data-search-in-results]>span span>span:nth-child(2){font-weight:500}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span:not(:first-child)>span:nth-child(1){padding-top:2px}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span>span:nth-child(1){font-size:12px;margin-right:10px}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span>span:nth-child(3) kbd{padding:2px 0 2px 0;background-color:rgba(68,63,63,0.88);border:0;box-shadow:none;font-size:12px;font-family:inherit}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span[data-no-results]{text-transform:uppercase;text-align:center;padding:4px 0 8px 0}.btn-group.dropdown-editor_config_search [data-search-in-files-button] i.fa{margin-right:6px;top:-0.5px;position:relative}.btn-group.dropdown-editor_config_search [data-search-in-files-button] i:not(.hidden)+.cspinner{display:none}.btn-group.dropdown-editor_config_search [data-search-in-files-button] i+.cspinner{left:-0.5px;top:.5px}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span>span:nth-child(1) a:hover{text-decoration:underline}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark>span span>span:nth-child(3){border-bottom:1px solid rgba(200,200,200,0.10)}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark{background-color:#272822}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark>span span{color:#d8d8d8}.btn-group.dropdown-editor_config_search [data-search-in-results].dark>span:first-child>span{margin-top:2px}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark>span span>span:nth-child(2){color:#fd971f}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark>span span>span:nth-child(1) a,html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark>span span>span:nth-child(1){color:#ddd}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search .light [data-search-in-results-container]+[data-search-stats]{background-color:transparent !important;border-top:2px solid #ddd;margin-left:-2px}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light{background-color:#fff}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light>span span>span:nth-child(3){color:#262;font-style:italic}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light>span span>span:nth-child(3) kbd{background-color:rgba(103,103,103,0.4);color:#333;border:1px solid #ccc;border-bottom:0}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light>span span>span:nth-child(2),html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light>span span>span:nth-child(1) a,html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light>span span>span:nth-child(1){color:#333}.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}.bottom_progresses{position:absolute;right:20px;bottom:10px}html[data-slider-fixed='1'] .bottom_progresses{right:320px}.bottom_progress{position:relative;display:inline-block;float:right;width:40px;height:150px;margin-left:15px;animation:1s ease-out 0s 1 slideInFromLeft;background-color:#68686866}.bottom_progress.no-animation{animation:none}.bottom_progress_horizontal{clear:right;width:100px;height:250px;margin-top:-69px;margin-right:75px !important;margin-bottom:-65px;margin-left:90px;transform:rotate(-90deg);animation:1s ease-out 0s 1 slideInFromLeftHorizontal}@keyframes slideInFromLeft{0%{transform:translateX(-360%)}100%{transform:translateX(0)}}@keyframes slideInFromLeftHorizontal{0%{transform:translateX(-360%) rotate(-90deg)}100%{transform:translateX(0) rotate(-90deg)}}.bottom_progress_level{position:absolute;bottom:0;width:40px;height:1%;-webkit-transition:all .7s ease-in-out;-moz-transition:all .7s ease-in-out;-o-transition:all .7s ease-in-out;transition:all .7s ease-in-out}.bottom_progress_lane{position:absolute;bottom:0;width:41px;height:100%;animation:Gradient 1s ease infinite;border-right:1px solid rgba(138,138,138,.35);background:linear-gradient(-45deg,rgba(54,54,54,.55),rgba(54,54,54,.75),rgba(54,54,54,.55),rgba(54,54,54,.75));background-size:400% 400%}@-webkit-keyframes Gradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}@-moz-keyframes Gradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}@keyframes Gradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}.bottom_progress_horizontal+.bottom_progress_horizontal{clear:none;margin-right:148px}.bottom_progress_level.success{background-color:#4bae4cba}.bottom_progress_level.danger{background-color:#c62e2eba}.bottom_progress_overlay{font-size:14px;font-weight:500;display:block;margin-top:60%;transform:rotate(90deg);color:#fffffff7}.bottom_progress_horizontal .bottom_progress_overlay{display:inline-block;width:220px;margin-top:115px;margin-left:-90px}.bottom_progress_horizontal .bottom_progress_overlay .bottom_progress_data{font-size:12px}.bottom_progress_horizontal .bottom_progress_percent{float:right}.bottom_progress_horizontal .bottom_progress_filename{font-family:monospace;font-size:14px;position:absolute;display:inline-block;overflow:hidden;width:240px;height:20px;margin-top:114px;margin-left:-50px;transform:rotate(90deg);text-align:center}.bottom_progress_horizontal .bottom_progress_filename>.fa{float:left;margin-top:4px;margin-left:3px}.bottom_progress_cancel{display:none;margin-top:240%;transform:rotate(90deg)}.bottom_progress_cancel:hover{color:#b40000a3}.bottom_progress:hover .bottom_progress_cancel{display:block}.bottom_progress_horizontal .bottom_progress_cancel{margin-top:182px;margin-right:-80px}.bottom_progresses .bottom_progress:not(.bottom_progress_horizontal){margin-bottom:8px !important} +[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-0_85x{font-size:.85em !important;vertical-align:0 !important}.fa-1_15x{font-size:1.20em !important;vertical-align:-8% !important}.fa-1_25x{font-size:1.33em !important;vertical-align:-7% !important}.fa-1_50x{font-size:1.50em !important;vertical-align:-5% !important}.fa-rotate-45{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.fa-rotate-315{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.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;width:auto}#content.__page.fvscroll{overflow-y:scroll}html[data-slider-fixed='0']:not([data-uri*="syslog"]):not([data-post*="log"]) #content.__page{min-width:fit-content}.progressing:not(.static):not(.__page){pointer-events:none !important}.__page.progressing:not(.static):not(.__page){overflow:hidden !important}.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}.table.table-transparent th,.table.table-transparent td{background-color:transparent !important;border:0 !important}.table.table-resizable thead tr th:not(:last-child):not(.nonresizable){border-right:1px dotted rgba(134,134,134,0.36) !important}.table.table-resizable thead tr th.nonresizable,.table.table-resizable thead tr th:last-child{pointer-events:none}.table.table-resizable.resizing,.table.table-resizable th::before{cursor:col-resize;user-select:none}.table.table-resizable th{position:relative}.table.table-resizable th::before{content:'';display:inline-block;height:100%;position:absolute;right:-5px;top:0;width:15px}.table.table-resizable th:last-of-type::before{display:none}.table.table-resizable td{max-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}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}body.loading-bg aside .sidebar-search{pointer-events:none}html:not([data-theme="white"]) aside .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-active,html:not([data-theme="white"]) aside .fancytree-container .fancytree-node.fancytree-active{background-color:rgba(215,215,215,0.06)}#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:11px;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:text-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 .user-link{margin-bottom:2px}#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;font-weight:500}#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.fa-dashboard,#sidebar ul li:not(.user-link) .fa.scaled2{font-size:16px;margin-right:-3px;margin-left:-1px}html[data-theme="white"] #sidebar{background:#fff}html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active>a:after,html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).has-sub>a:after{font-size:12px;top:10px;right:18px}html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active>a:after{right:16px}html[data-theme="white"] #sidebar{box-shadow:0 0 1px rgba(151,151,151,.27)}html[data-theme="white"] .switch-mins label{color:#fff}html[data-theme="white"] .switch-mins input:checked+label{color:#222;background:#fefefe}html[data-theme="white"] #sidebar .form-group .form-control.sidebar-search{color:#0a0a0a}html[data-theme="white"] #sidebar li:not(.menu-title):not(.menu-container){text-shadow:none}html[data-theme="white"] #sidebar li:not(.menu-container):not(.sub-wrapper):not(.has-sub) a:not(.navigation_module_trigger){color:#333 !important}html[data-theme="white"] aside .fancytree-container.fancytree-treefocus span.fancytree-node:not(.fancytree-active):hover,html[data-theme="white"] aside .fancytree-container .fancytree-node.fancytree-active span.fancytree-title,html[data-theme="white"] aside .fancytree-container.fancytree-treefocus span.fancytree-node:hover .fancytree-title,html[data-theme="white"] #sidebar ul>li.sub_active a span,html[data-theme="white"] #sidebar ul.user-html>li.user-html-string{color:#0b46ab !important}html[data-theme="white"] aside .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-active,html[data-theme="white"] aside .fancytree-container .fancytree-node.fancytree-active{background-color:#d7d7d747;border-right:3px solid rgba(230,55,22,0.9)}html[data-theme="white"] aside span.fancytree-node span.fancytree-expander:after,html[data-theme="white"] aside span.fancytree-title,html[data-theme="white"] .select2-selection--single span,html[data-theme="white"] .select2-selection span,html[data-theme="white"] #sidebar .user-link .a,html[data-theme="white"] #sidebar .user-link .text-danger,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container):not(.has-sub) a,html[data-theme="white"] #sidebar .user-link .fa,html[data-theme="white"] #sidebar li a.navigation_module_trigger,html[data-theme="white"] #sidebar li.has-sub a{color:#333 !important}html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).has-sub.active{background-color:rgba(0,0,0,.05)}html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).sub_active a{color:#333 !important}html[data-theme="white"] .form-group .form-control.sidebar-search{border-bottom:1px solid #999 !important}html[data-theme="white"] #sidebar ul.sub>li:not(.menu-container).sub_active:before,html[data-theme="white"] #sidebar ul.sub li:before{background:rgba(24,24,24,.35)}html[data-theme="white"] #sidebar ul.sub>li>a:before{color:rgba(24,24,24,.70)}html[data-theme="white"] #sidebar ul.user-links li:not(.menu-container):not(.sub-wrapper){border:1px solid #ccc;-webkit-box-shadow:none;box-shadow:none}html[data-theme="white"] #sidebar .form-group i.fa.fa-search{color:rgba(0,0,0,.70)}html[data-theme="white"] #sidebar .form-control::-webkit-input-placeholder{color:rgba(0,0,0,.60)}html[data-theme="white"] #sidebar .form-control:-moz-placeholder{color:rgba(0,0,0,.60)}html[data-theme="white"] #sidebar .form-control::-moz-placeholder{color:rgba(0,0,0,.60)}html[data-theme="white"] #sidebar .form-control:-ms-input-placeholder{color:rgba(0,0,0,.60)}html[data-theme="white"] #sidebar .form-control:focus::-webkit-input-placeholder{color:rgba(0,0,0,.75)}html[data-theme="white"] #sidebar .form-control:focus:-moz-placeholder{color:rgba(0,0,0,.75)}html[data-theme="white"] #sidebar .form-control:focus::-moz-placeholder{color:rgba(0,0,0,.75)}html[data-theme="white"] #sidebar .form-control:focus:-ms-input-placeholder{color:rgba(0,0,0,.75)}html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container).sub_active{border-left:4px solid rgba(230,55,22,0.9)}html[data-theme="white"] .mobile-menu-toggler{border-right:2px solid rgba(26,26,26,.42)}html[data-theme="white"] .mobile-menu-toggler>.btn-primary{border:1px solid rgba(254,254,254,.99);background-color:rgba(254,254,254,.99) !important;color:#555 !important}html[data-theme="white"] .mobile-menu-toggler>.btn.btn-menu-toggler:active i{color:#999 !important}html[data-theme="white"] #sidebar .switch-mins a{background-color:rgba(254,254,254,.99)}html[data-theme="white"] #sidebar .loading-sm{border:1px solid #fff;border-top:1px solid #000}html[data-theme="white"] #sidebar .loader-close.sm{color:rgba(230,230,230,.75)}html[data-theme="white"] #sidebar .loader-close.sm>.fa:hover{color:rgba(240,240,240,.98)}html[data-theme="white"] .loader-close .fa{color:#333 !important}html[data-theme="white"] .loader-close>.fa:hover{color:#111 !important}html[data-theme="white"] .loading-container .loading-path{stroke:rgba(25,25,25,.75);stroke-width:.3}html[data-theme="white"] .autocomplete-selected,html[data-theme="white"] .select2-dropdown:not(.select2-content) .select2-results ul li:active,html[data-theme="white"] .select2-dropdown:not(.select2-content) .select2-results ul li:focus,html[data-theme="white"] .select2-dropdown:not(.select2-content) .select2-results ul li:hover,html[data-theme="white"] .select2-container--default .select2-dropdown:not(.select2-content) .select2-results__option--highlighted[aria-selected]:active,html[data-theme="white"] .select2-container--default .select2-dropdown:not(.select2-content) .select2-results__option:hover,html[data-theme="white"] .select2-container--default .select2-dropdown:not(.select2-content) .select2-results__option:focus,html[data-theme="white"] .select2-container--default .select2-dropdown:not(.select2-content) .select2-results__option[aria-disabled="true"],html[data-theme="white"] .select2-container--default .select2-dropdown:not(.select2-content) .select2-results__option[aria-selected="true"]{background-color:rgba(30,30,30,.14) !important}html[data-theme="white"] .favorites-menu-close{background:#eee}html[data-theme="white"] .favorites-menu-close .favorites-menu-bar{background:rgba(20,20,20,1)}html[data-theme="white"] .favorites-menu-outer.hover{background:rgba(232,232,232,.87)}html[data-theme="white"] .menu-exclude.exclude.favorites-title{color:#333}html[data-theme="white"] nav.favorites-menu li>span:not(.f__c),html[data-theme="white"] nav.favorites-menu li a{color:rgba(15,15,15,.95)}html[data-theme="white"] nav.favorites-menu li a:not(.disabled):hover{color:rgba(1,1,1,1)}html[data-theme="white"] #sidebar .user-link .fa:hover,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) a i:hover,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container):hover a i,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container):hover a,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container) a:hover,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container):hover span,html[data-theme="white"] #sidebar ul.user-links li:not(.sub-wrapper):not(.menu-container):hover a,html[data-theme="white"] .select2-selection__rendered .menu-status-label.pointer-events-none{color:#333 !important}html[data-theme="white"] .select2-selection__rendered:hover .menu-status-label,html[data-theme="white"] .select2-selection__rendered .menu-status-label:hover{color:#fff !important}html[data-theme="white"] .select2-selection__rendered .menu-status-label:hover,html[data-theme="white"] #sidebar li:not(.sub-wrapper):not(.menu-container) a:hover{color:#333 !important}html[data-theme="white"] .select2-dropdown,html[data-theme="white"] .select2-selection--single,html[data-theme="white"] .select2-selection{border:1px solid #999 !important}html[data-theme="white"] .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#555 transparent transparent transparent}html[data-theme="white"] .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #555 transparent}html[data-theme="white"] .top-aprogress:before{background-color:crimson}html[data-theme="white"] .select2-dropdown,html[data-theme="white"] .autocomplete-suggestions{background-color:rgba(255,255,255,.98) !important}html[data-theme="white"] aside .mCSB_dragger_bar{-webkit-filter:invert(100%);filter:invert(100%)}#system-status .panel-title>.extra_documentation_links{font-size:13px;line-height:initial;display:block;margin-top:-4px !important;margin-right:-11px !important;padding:2px 8px 4px 9px;color:#555;background-color:#fff95}#system-status .panel-title>.extra_documentation_links i{font-size:11px}#system-status .table.margined-top-25{margin-top:25px !important}#system-status .panel-title{font-size:18px;line-height:15px;text-align:left}_::-moz-progress-bar,body:last-child #system-status .panel-title{line-height:13px;padding-bottom:2px}.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;overflow:hidden;height:11px;display:inline-flex;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,.graph-container>.graph>.bar.red{font-size:9px;line-height:11px;position:relative;display:block;max-width:100%;height:11px;padding-left:2px;-webkit-transition:all 1s ease-in-out;-moz-transition:all 1s ease-in-out;-o-transition:all 1s ease-in-out;transition:all 1s 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);cursor:default}.graph-container>.graph>.bar.red+.bar.red{border-left:2px solid red}.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%'],.graph-container>.graph>.bar.green{border-right:2px solid #4ccb4c;background-color:#4cae4c}.graph-container>.graph>.bar.green+.bar.green{border-left:2px solid #4ccb4c}.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%'],.graph-container>.graph>.bar[style^='width:86%'],.graph-container>.graph>.bar[style^='width:87%'],.graph-container>.graph>.bar[style^='width:88%'],.graph-container>.graph>.bar[style^='width:89%'],.graph-container>.graph>.bar[style^='width:90%'],.graph-container>.graph>.bar.yellow{border-right:2px solid #f0ad4e;background-color:#d58512}.graph-container>.graph>.bar.yellow+.bar.yellow{border-left:2px solid #f0ad4e}.graph-container>.graph>.bar[style^='width:0%']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width: 0%']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width:0']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width: 0']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width:-']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width: -']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar.gray{border-right:2px solid #ddd;background-color:#f0f0f0}.graph-container>.graph>.bar[style^='width:-']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar[style^='width: -']:not(.green):not(.red):not(.yellow),.graph-container>.graph>.bar.gray{color:#aaa}.graph-container>.graph>.bar.gray+.bar.gray{border-left:2px solid #ddd}.graph-container>.graph>.bar.red{color:#fff;border-right:2px solid red;background-color:#d91212}.graph-container>.graph strong[data-first]+strong{margin-left:-24px;min-width:24px;text-align:right;padding-right:4px}.graph-container>.graph strong[data-first]{min-width:44px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.graph-container>.graph>.bar,.graph-container>.graph>.bar.gray{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:not(.fa2-collapse-right){display:none}#right-side-tabs #right-side-tabs-favorites.active+div+.right-side-tabs-dismiss .fa-stack{display:inline}#right-side-tabs #right-side-tabs-favorites.active+div+.right-side-tabs-dismiss i.fa-cog,#right-side-tabs #right-side-tabs-favorites.active+div+.right-side-tabs-dismiss i.fa-star-o{display:inline-block}#right-side-tabs #right-side-tabs-notifications.active+.right-side-tabs-dismiss i.fa-trash,#right-side-tabs #right-side-tabs-notifications.active+.right-side-tabs-dismiss i.fa-clear-all,#right-side-tabs #right-side-tabs-notifications.active+.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}_::-webkit-full-page-media,_:future,:root #right-side-tabs #right-side-tabs-sysinfo.active+div+div+.right-side-tabs-dismiss .obj-settings{margin-top:1.5px}#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.fa2-collapse-right,.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.fa2-collapse-right{font-size:1.4em;margin-top:3px;display:none;margin-left:12px;margin-right:5px}html[data-slider-fixed="0"] .right-side-tabs-dismiss i.fa2-collapse-right:before{content:'\f004'}@media all and (min-width:1366px){.right-side-tabs-dismiss i.fa2-collapse-right{display:inline-block}.right-side-tabs-dismiss i.fa2-collapse-right+i.fa-reload{margin-left:1px}}.right-side-tabs-dismiss i.fa2-collapse-right.hidden+i.fa-reload{margin-left:10px}.right-side-tabs-dismiss i.fa-dashboard{font-size:1.94em;margin-top:3px}.right-side-tabs-dismiss i.fa-reload{font-size:1.5em;line-height:24%;margin-top:3px;margin-left:12px;vertical-align:middle}@-moz-document url-prefix(){.right-side-tabs-dismiss i.fa2-collapse-right{margin-top:1px}.right-side-tabs-dismiss i.fa-reload{line-height:20px !important;margin-top:2px}.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.fa-settings{font-size:1.66em;margin-top:4px}.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 .tooltip>.tooltip-arrow,.right-side-tabs .tooltip>.tooltip-inner{margin-top:-7px}.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}#extended_sysinfo .panel-default>.panel-heading+.panel-collapse>.panel-body{border-color:#666 !important}.right-side-tabs[data-background-style='grey'] #extended_sysinfo a,.right-side-tabs[data-background-style='grey'] #extended_sysinfo .panel-title-status,.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}.badge-custom[data-stats]{margin-right:3px;margin-bottom:3px}[data-stats] .status-error{line-height:6px;display:inline-block;max-height:10px;margin-top:-2px;vertical-align:middle}.badge-custom.xs,#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)}#status_services-status-1-collapse .panel-body .table-responsive table thead tr th:first-child{padding-left:4px !important}#status-virtual-server-1-collapse .panel-body .table-responsive table tbody tr td:last-child{text-align:center !important}#status_services-status-1-collapse .panel-body .table-responsive table thead tr th:not(:first-child):not(:last-child),#status_services-status-1-collapse .panel-body .table-responsive table tbody tr td:not(:first-child):not(:last-child){text-align:center}#status_services-status-1-collapse .panel-body .table-responsive table thead tr th:last-child,#status_services-status-1-collapse .panel-body .table-responsive table tbody tr td:last-child{padding-left:4px !important}#status_services-status-1-collapse .panel-body .table-responsive table tbody tr td:last-child{padding-left:8px !important}.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='0'] .right-side-tabs{z-index:100004}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}.pagination>.active,.btn:not(.btn-menu-toggler){-webkit-filter:saturate(1.25) hue-rotate(4deg);filter:saturate(1.25) hue-rotate(4deg)}.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>.btn-menu-toggler{margin-left:-1px;opacity:1;border:1px solid #386386 !important;background-color:#3b6383 !important}@media(max-width:1080px){.mobile-menu-toggler.visible-xs{display:block !important}}@media(max-width:1080px){aside.hidden-xs{display:none !important}}aside{z-index:10002;backface-visibility:hidden}html[data-navigation-collapsed="1"] .jsPanel{z-index:10000 !important}aside select{visibility:hidden}aside [data-collapse-trigger]{font-size:11px !important}html[data-navigation-collapsed="1"] aside [data-collapse-trigger]:before{content:'\f005'}@media(max-width:1080px){aside [data-collapse-trigger-container]{display:none !important}a[data-trigger="navigaton_pinned"]{pointer-events:none;opacity:.5;cursor:not-allowed}}aside .select2{margin-top:4px;margin-bottom:4px}.select2-container{z-index:10002}.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-dropdown:not(.select2-content) .select2-results ul li:active,.select2-dropdown:not(.select2-content) .select2-results ul li:focus,.select2-dropdown:not(.select2-content) .select2-results ul li:hover{color:#333 !important;background:#bfcbd9 !important}.__page .select2-content.select2-selection.select2-selection--single span,.__page .select2-content.select2-selection.select2-selection span{color:#333 !important}.__page .select2-content.select2-selection--single,.__page .select2-content{border:1px solid #e8e8e8 !important}.__page .select2-content-container.select2-container--open .select2-selection__arrow b{border-color:transparent transparent #999 transparent !important}.__page .select2-content .select2-selection__arrow b{border-color:#444 transparent transparent transparent !important}.__page .select2{margin-top:1px;margin-bottom:1px}.select2-dropdown.select2-content{border-color:#66afe9 !important;background-color:rgba(255,255,255,.99) !important}.select2-dropdown.select2-content:not(.select2-dropdown--above){border-top-color:#e8e8e8 !important}.select2-dropdown.select2-content.select2-dropdown--above{-webkit-box-shadow:1px -1px 4px rgba(50,50,50,.40);box-shadow:1px -1px 4px rgba(50,50,50,.40);margin-top:2px}.select2-dropdown.select2-content .select2-search{border-bottom:1px solid rgba(55,55,55,.12) !important}.select2-dropdown.select2-content .select2-search input{border-color:#dedede !important}.__page .select2-content.heighter-34{padding:4px 0}.__page .select2-content.heighter-34 .select2-selection__arrow b{margin-top:1px}.select2-dropdown.select2-content.h34 .select2-search input{height:23px;padding:2px 3px 4px 3px}.__page .select2-content.heighter-28{padding:2px 0 !important}.__page .select2-content .select2-selection__arrow b{border-width:6px 3px 0 3px;margin-left:-1px;margin-top:-1px}.__page .select2-content-container.select2-container--open .select2-content .select2-selection__arrow b{border-width:0 3px 6px 3px}.select2-dropdown.select2-content.h28 .select2-search input{height:22px}.select2.select2-content-container.select2-container--open .select2-content,.select2.select2-content-container.select2-container--focus .select2-content{border:1px solid #66afe9 !important}.select2-container--default .select2-content .select2-results__option--highlighted[aria-selected]:active,.select2-container--default .select2-content .select2-results__option:hover,.select2-container--default .select2-content .select2-results__option:focus,.select2-container--default .select2-content .select2-results__option[aria-disabled='true'],.select2-container--default .select2-content .select2-results__option[aria-selected='true']{background-color:#f3f3f3 !important}.select2-container--default .select2-content .select2-results__option.select2-results__option--highlighted:active,.select2-container--default .select2-content .select2-results__option.select2-results__option--highlighted{background-color:#538dc7 !important;color:#fafafa !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 .sub-wrapper .sub#cat_webmin a i.fa-file-manager{display:none}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;pointer-events:none}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}#system-status .alert{padding:8px 10px}.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)}html[data-theme='gunmetal'] .bg-filter-blur-grayscale-opacity50,.bg-filter-blur-grayscale-opacity50{filter:opacity(50%) blur(1px) grayscale(100%) !important;-webkit-filter:opacity(50%) blur(1px) grayscale(100%) !important}html[data-theme='gunmetal'] .bg-filter-blur2-grayscale75-opacity75,.bg-filter-blur2-grayscale75-opacity75{filter:opacity(75%) blur(2px) grayscale(75%) !important;-webkit-filter:opacity(75%) blur(2px) grayscale(75%) !important}html[data-theme='gunmetal'] .bg-filter-blur2-grayscale100-opacity75,.bg-filter-blur2-grayscale100-opacity75{filter:opacity(75%) blur(2px) grayscale(100%) !important;-webkit-filter:opacity(75%) blur(2px) 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);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 .data-cnt,.piechart canvas{position:absolute;top:0;left:0}.piechart .percent{font-size:1.8em;position:absolute;z-index:2;top:36px;left:38px;display:inline-block;pointer-events:none;color:#777}.piechart .percent:after{font-size:.9em;margin-left:.1em;content:'%'}.piechart .label{font-size:9px;position:absolute;z-index:3;right:-145px;bottom:-125px;overflow:hidden;text-transform:uppercase;pointer-events:none;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:32px;-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:32px}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 !important}th.pointer-events-none[aria-controls^="DataTable"]{background:none !important}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:5px 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}@-moz-document url-prefix(){.ui_form_end_buttons .btn.ui_form_end_submit{line-height:12px;padding:4px 12px 6px 12px !important}.ui_form_end_buttons .btn.ui_form_end_submit>.fa-1_25x{line-height:14px}.ui_form_end_buttons .btn-group.end_submits .ui_form_end_submit{line-height:10px;padding:6px 12px !important}.opener_table_style+.ui_form_end_buttons .btn-group.end_submits .ui_form_end_submit{line-height:11px;padding:6px 12px !important}.ui_form_end_buttons .btn.btn-lg.page_footer_submit{line-height:19px;padding:6px 12px !important}@supports(animation:calc(0s)){.ui_form_end_buttons .btn.ui_form_end_submit{line-height:12px;padding:4px 12px 6px 12px !important}.ui_form_end_buttons .btn.ui_form_end_submit>.fa-1_25x{line-height:14px}.ui_form_end_buttons .btn-group.end_submits .ui_form_end_submit{line-height:10px;padding:6px 12px !important}.opener_table_style+.ui_form_end_buttons .btn-group.end_submits .ui_form_end_submit{line-height:11px;padding:6px 12px !important}.ui_form_end_buttons .btn.btn-lg.page_footer_submit{line-height:19px;padding:6px 12px !important}}}::-moz-progress-bar,body:last-child .bootbox .modal-footer .btn{padding:5px 8px 7px 8px}_::-moz-progress-bar,body:last-child .ui_form_end_submit:not(.heighter-28):not(.heighter-28-force){min-height:32px;max-height:32px;padding:5px 12px 5px 12px !important}_::-moz-progress-bar,body:last-child #atsettings .btn:not(.btn-xxs):not(.btn-tiny):not(.ui_link_replaced):not(.heighter-28):not(.heighter-28-force){line-height:19px;padding:5px 12px 6px 12px !important}::-moz-progress-bar,body:last-child .opener_table_style+.ui_form_end_buttons .btn-group.end_submits .ui_form_end_submit,::-moz-progress-bar,body:last-child .ui_form_end_submit:not(.heighter-28):not(.heighter-28-force){padding:4px 12px 5px 12px !important}.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-tiny.ui_form_end_submit span{display:inline-block;margin-top:-2px !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}.btn-primary{color:#fff !important;border-color:#2a5c87 !important;background-color:#2671b3 !important}.btn-primary:not(.btn-menu-toggler):hover,.btn-primary:not(.btn-menu-toggler):focus,.btn-primary:not(.btn-menu-toggler):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}.cke_dialog_ui_button_ok,.btn-success{color:#fff !important;border-color:#2c8828 !important;background-color:#349e30 !important}.cke_dialog_ui_button_ok:hover,.cke_dialog_ui_button_ok:focus,.cke_dialog_ui_button_ok:active,.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 !important;border-color:#474747 !important;background-color:#5c5c5c !important}.btn-grey:hover,.btn-grey:focus,.btn-grey:active,.btn-grey.active,.open .dropdown-toggle.btn-grey{color:#fff !important;border-color:#474747 !important;background-color:#4a4a4a !important}.btn-grey:active,.btn-grey.active,.open .dropdown-toggle.btn-grey{background-image:none !important}.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 !important;background-color:#5c5c5c !important}.btn-grey .badge{color:#5c5c5c !important;background-color:#fff !important}.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-default:hover:focus,.btn-default:hover.focus,.btn-default:focus,.btn-default.focus{border-color:#66afe9 !important}.btn-lg,.btn-group-lg>.btn{line-height:15px;height:34px;padding:8px 14px !important}.btn.btn-xxs.btn-round,.btn.btn-xs.btn-round,.btn.btn-sm.btn-round,.btn.btn-lg.btn-round,.btn.btn-round{border-radius:50%;padding:6px !important}.btn.btn-xxs.btn-round{padding:0 !important}.btn.btn-xs.btn-round{padding:1px !important}.btn.btn-sm.btn-round{padding:5px !important}.btn.btn-lg.btn-round{padding:8px !important}.btn-34{line-height:10px;height:32px}.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;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:16px;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}button.btn-default.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}button.btn-default.chooser_button{margin-top:1px !important}html[data-uri*='cluster-cron/edit.cgi'] button.btn-default.chooser_button{margin-top:-2px !important}.ui_buttons_row .ui_form_end_submit{margin-top:1px}td>select+input{margin:0 !important}form.ui_form>input,form.ui_form>select,form.ui_form>select+.select2,form.ui_form>input+input,form.ui_form>input+select{margin-right:3px !important}.ui_table_end_submit_right{float:right !important;margin-top:-35px !important}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,.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:3px 12px 5px 12px !important}_::-moz-progress-bar,body:last-child body[class*='webminlog'] textarea#anno+br+.ui_form_end_submit,_::-moz-progress-bar,body:last-child .chooser_button+.ui_form_end_submit:not(.heighter-34-force),_::-moz-progress-bar,body:last-child select[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force),_::-moz-progress-bar,body:last-child input[style*='height: 28px']+.btn-group>.btn:not(.heighter-34-force),_::-moz-progress-bar,body:last-child input[style*='height: 28px']+.ui_form_end_submit:not(.heighter-34-force),_::-moz-progress-bar,body:last-child .heighter-28+.btn-group>.btn:not(.heighter-34-force){font-size:94% !important;height:28px;min-height:28px;max-height:28px;margin-top:0}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;background-color:transparent !important}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:not(.opener_container_opened)[id]:before,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}.fa-lg.fa-bell{vertical-align:-13%}.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;border-left:transparent !important}.btn.btn-menu-toggler:active,.btn.btn-menu-toggler:focus,.btn.btn-menu-toggler:hover,.btn.btn-menu-toggler{border-color:transparent !important}.panel-heading .header{width:100%}.panel-heading .header a.btn{line-height:19px;height:32px !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.chooser_button{width:40px;height:28px;margin-left:-8px;padding:3px 10px 6px 11px !important}form.ui_form>input+button.chooser_button,form.ui_form>select+button.chooser_button,form.ui_form>input+input+button.chooser_button,form.ui_form>input+select+button.chooser_button,.heighter-34+button.chooser_button,input+button.chooser_button.heighter-34,form.ui_form>input+input+button.chooser_button{margin-left:-7px}@-moz-document url-prefix(){.heighter-34+button.chooser_button,input+button.chooser_button.heighter-34,form.ui_form>input+input+button.chooser_button{margin-left:-6px}}button.chooser_button[style*='width: 100%'],button.chooser_button[style*='width:100%']{float:right}button.date_chooser_button{padding:3px 10px 6px 10px !important}button.chooser_button .fa{font-size:11px;line-height:21px;vertical-align:top !important;pointer-events:none}button.chooser_button .fa-user-o,button.chooser_button .fa-group-o{font-size:15px;line-height:19px;opacity:.8}button.chooser_button .fa-group-o{font-size:17px}button.chooser_button .fa.fa-world{font-size:12px}button.date_chooser_button .fa-calendar{font-size:12px;line-height:26px;opacity:.8}[disabled]+.chooser_button{cursor:not-allowed;pointer-events:none;opacity:.65;-webkit-box-shadow:none;box-shadow:none;filter:alpha(opacity=65)}.heighter-34+.chooser_button ~ button,.heighter-34+.chooser_button{line-height:18px !important;height:32px !important;min-height:32px !important;max-height:32px !important}.heighter-34+.chooser_button+button.ui_form_end_submit,.heighter-34+.chooser_button ~ button{font-size:14px !important;line-height:10px !important;margin-top:1px}.heighter-34+.chooser_button+button.ui_form_end_submit i,.heighter-34+.chooser_button ~ button i{margin-top:-1px}html[data-script-name*='/usermin/list_sessions.cgi'] input[name='user']{margin-bottom:1px !important}html[data-script-name*='/virtual-server/transfer_form.cgi'] input[name='newttl']{vertical-align:bottom !important}body.apache input[style*="margin-top: 2px"]:not(.ui_textbox)+.chooser_button{margin-top:-2px !important}body.apache .chooser_button+input[style*="margin-top: 2px"]:not(.ui_textbox)+.chooser_button{margin-top:-1px !important}html[data-uri*='/virtual-server/import_form.cgi'] .container-fluid input[name='user'],html[data-uri*='/virtual-server/import_form.cgi'] .container-fluid input[name='group'],html[data-uri*='config.cgi?virtual-server'] .container-fluid input[name='vpopmail_user'],html[data-uri*='config.cgi?virtual-server'] .container-fluid input[name='vpopmail_group'],html[data-uri*='fetchmail'] .container-fluid input[type='submit'].btn.heighter-28+input[name='user'],html[data-uri*='updown'] .container-fluid .col_value>input[name='user'],html[data-uri*='updown'] .container-fluid .awradio+input[name='group']{vertical-align:middle}input[name='hours_mto'],input[name='hours_mfrom'],input[name='min']{margin-left:2px}.file_chooser_button_attached{position:absolute;margin-top:11px !important;margin-left:-28px}.file_chooser_button_attached_input{margin-left:-4px !important}.file_chooser_button_attached.fa-address-book-o{font-size:13px !important;margin-top:8px !important;opacity:.71}span+input+.file_chooser_button_attached.fa-address-book-o{margin-top:6px !important}button.chooser_button:hover,button.chooser_button:focus,button.chooser_button:active,button.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,.chooser_button:hover i,.chooser_button_emulate:hover,.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,html[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}body.lvm .tab-content>.tab-pane.active>div.row.icons-row,body[class^='servers'] .icons-row{margin-top:4px !important}.block{display:block}.inline-block{display:inline-block}.loading-sm{position:absolute;top:92px;left:45%;width:24px;height:24px;margin:0;-webkit-animation:progress 360ms linear infinite;animation:progress 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;margin-top:-12px;margin-bottom:-12px}.mCSB_dragger .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,.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+a.opener_trigger{vertical-align:20%}.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{font-family:'Authentic';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{font-family:'Authentic';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{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.050);box-shadow:inset 0 1px 1px rgba(0,0,0,.050)}.panel-collapse .panel-body{-webkit-box-shadow:none;box-shadow:none}.table>tbody>tr>td.opener_container,.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#e9e9e9}.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}.w-auto{width:auto}.w-25p{width:25%}.w-100p{width:100%}.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--4{margin-left:-4px !important}.margined-left--5{margin-left:-5px !important}.margined-left--10{margin-left:-10px !important}.margined-left-3{margin-left:3px !important}.margined-right-2{margin-right:2px !important}.margined-left-1{margin-left:1px !important}.margined-left-2{margin-left:2px !important}.margined-left-4{margin-left:4px !important}.margined-right--2{margin-right:-2px !important}.margined-right--3{margin-right:-3px !important}.margined-right--4{margin-right:-4px !important}.margined-right--5{margin-right:-5px !important}.margined-right-1{margin-right:1px !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--1{margin-right:-1px !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--3-5{margin-top:-3.5px !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-2{margin-bottom:2px !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}.margined-bottom--8{margin-bottom:-8px !important}.margined-bottom--10{margin-bottom:-10px !important}.pd-lf-2{padding-left:2px !important}.pd-rt-2{padding-right:2px !important}.pd-rt-4{padding-right:4px !important}.pd-lf-rt-6{padding-left:6px !important;padding-right:6px !important}.pd-lf-10{padding-left:10px !important}.pd-rt-10{padding-right:10px !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}.br-2{border-radius:2px !important}.br-4{border-radius:4px !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:32px;vertical-align:baseline !important}.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:middle;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:16px !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:16px !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,.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}.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:5px 12px 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):not(.atscontent):not(.smaller){color:#333;background-color:#fff !important}html:not([data-background-style='nightRider']) pre#CSFajax,.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-ng .CodeMirror,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:10003;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:10002;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:#ebf2fc}html:not([data-background-style='nightRider']) body[data-uri^="/settings-user.cgi"] #content.__page form .sub_table_container.table-hardcoded tr:hover td,html:not([data-background-style='nightRider']) body[data-uri^="/config.cgi?"] #content.__page form .sub_table_container.table-hardcoded tr:hover td,html:not([data-background-style='nightRider']) body[data-uri^="/uconfig.cgi?"] #content.__page form .sub_table_container.table-hardcoded tr:hover td{background-color:#ebf2fc !important}body[data-uri^="/filemin/config.cgi?"] #content.__page .sub_table_container tr:hover td{background-color:#ebf2fc !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}.tmp_spinner_theme_version{margin-top:-10px}.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;letter-spacing:-0.2px}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.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:25px}@media screen and (-webkit-min-device-pixel-ratio:0){tr.thead b,.table-title b,.panel-body form+table.table-hardcoded>tbody>tr.thead>td b{line-height:27px}}tr.thead,.table-title,.panel-body form+table.table-hardcoded>tbody>tr.thead>td{font-size:16px !important;height:32px;padding:2px 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}.table-title{border-bottom:1px solid #eaeaea !important}.col_header.opener_table_cell_style_small{background-color:#f6f6f6 !important}tr.thead td b{font-size:16px !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_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-lighter-slight{color:#bbb}.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'}.tooltip{z-index:999999999999}.font-family-default{font-family:'Roboto'}body,html{height:100%;margin:0;padding:0}html[data-current-product='usermin'] .ui_grid_table.table-hardcoded.table.table-striped.table-condensed.table-subtable,html[data-current-product='usermin'] .ui_buttons_table.table-hardcoded.table.table-striped.table-condensed.table-subtable{border:none !important}html[data-current-product='usermin'] table.ui_grid_table tr.ui_grid_row,html[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}img[src$='images/blue.gif'],img[src$='images/red.gif']{-webkit-filter:saturate(1.10) brightness(1.2) contrast(.7) hue-rotate(-10deg);filter:saturate(1.10) brightness(1.2) contrast(.7) hue-rotate(-10deg);max-height:3px !important}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#CSFlognum:not([data-encoding]):not([data-no-appearance]):not([multiple]),select.ui_select:not([data-encoding]):not([data-no-appearance]):not([multiple]),select:not([data-encoding]):not([data-no-appearance]):not([multiple]){padding-right:20px;padding-left:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 -144 1008 1008'%3E%3Cg transform='matrix(1 0 0 -1 0 864)'%3E%3Cpath fill='black' d='M504 108l-252 454h504z'/%3E%3C/g%3E%3C/svg%3E");background-size:12px 12px,12px 12px,0 0;background-position:calc(100% - 2px) calc(100% - 8px);background-repeat:no-repeat}select#CSFlognum:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus,select.ui_select:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus,select:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 -144 1008 1008'%3E%3Cg transform='matrix(1 0 0 -1 0 864)'%3E%3Cpath fill='dimgray' d='M504 612l252 -454h-504z'/%3E%3C/g%3E%3C/svg%3E")}select:not([data-encoding]):not([data-no-appearance]):not([multiple]).heighter-34{background-position:calc(100% - 2px) calc(100% - 10px)}select.input-sm:not(.heighter-34){padding:2px 4px 3px 4px;line-height:10px}[data-uri*="settings-backgrounds.cgi"] button.file_chooser_button_preview,[data-uri*="settings-logos.cgi"] button.file_chooser_button_preview{display:inline;width:40px;height:28px;margin-right:0 !important;margin-bottom:3px !important;margin-left:2px}[data-uri*="settings-backgrounds.cgi"] button.file_chooser_button_preview i,[data-uri*="settings-logos.cgi"] button.file_chooser_button_preview i{font-size:12px;pointer-events:none}[data-uri*="settings-backgrounds.cgi"] .ui_form_end_buttons td .btn,[data-uri*="settings-logos.cgi"] .ui_form_end_buttons td .btn{margin-top:4px}[data-uri*="settings-backgrounds.cgi"] .ui_form_end_buttons td:first-child .btn,[data-uri*="settings-logos.cgi"] .ui_form_end_buttons td:first-child .btn{margin-left:2px}[data-uri*="settings-backgrounds.cgi"] .ui_form_end_buttons td:last-child,[data-uri*="settings-logos.cgi"] .ui_form_end_buttons td:last-child{padding-right:0 !important}[data-uri*="settings-backgrounds.cgi"] .ui_form_end_buttons td:last-child .btn:first-child,[data-uri*="settings-logos.cgi"] .ui_form_end_buttons td:last-child .btn:first-child{margin-right:-4px}[data-uri*="settings-backgrounds.cgi"] .ui_form_end_buttons td:last-child .btn:last-child,[data-uri*="settings-logos.cgi"] .ui_form_end_buttons td:last-child .btn:last-child{margin-right:-2px}[data-uri*="webmin/edit_themes.cgi"] form[action*="settings.cgi"] .ui_form_end_buttons td:first-child .btn-group{margin-left:2px}[data-uri*="webmin/edit_themes.cgi"] form[action*="settings.cgi"] .ui_form_end_buttons td:last-child .btn-group{margin-right:-3px}.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:32px;max-height:32px}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}.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}.postgresql[data-uri*='view_table.cgi'] .long-table-wrapper ~ a[class^='select_'],.mysql[data-uri*='view_table.cgi'] .long-table-wrapper ~ a[class^='select_']{margin-top:4px}.postgresql[data-uri*='view_table.cgi'] .long-table-wrapper+.ui_form_end_buttons>buttons,.mysql[data-uri*='view_table.cgi'] .long-table-wrapper+.ui_form_end_buttons>buttons{margin-top:4px}form[action="view_table.cgi"] .ui_form_end_buttons button{padding-top:4px !important;padding-bottom:6px !important;line-height:20px}.th-server-sort em{font-size:14px;font-weight:400;line-height:20px}.th-server-sort a{color:#333}.th-server-sort a>img{zoom:90%;margin-left:6px;opacity:.4}.th-server-sort a>img[src$='grey.gif']{opacity:1}.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:60px;padding-left:6px;resize:vertical;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}textarea[rows='1'],textarea[rows='2'],textarea[rows='3'],textarea[rows='4'],textarea[rows='5'],textarea[rows='6'],textarea[rows='7'],textarea[rows='8'],textarea[rows='9'],textarea[rows='10']{height:60px}.opener_container textarea[rows='5'],textarea[rows='5'][name='dname'],textarea[rows='20']{height:120px}textarea[name*='list_from'],body[data-uri*="feedback_form.cgi"] textarea[cols="70"],textarea[name='keydata'][rows='20'],textarea[name='keyline'][rows='10'],textarea[name='private']{height:260px}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:8px 15px 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:23px;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)}.panel-heading-loading .favorites.dummy{visibility:hidden}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'],.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;height:28px !important;max-height:28px !important;padding-top:0 !important;padding-bottom:2px !important}_::-moz-progress-bar,body:last-child select.ui_select:not(.heighter-34)+button[type='button'],_::-moz-progress-bar,body:last-child input[onclick*='ajaxterm'],_::-moz-progress-bar,body:last-child .chooser_button+input,_::-moz-progress-bar,body:last-child .form-control.ui_textbox+input,_::-moz-progress-bar,body:last-child .table-hardcoded tbody tr td .submitter,_::-moz-progress-bar,body:last-child select+input[type='button'],_::-moz-progress-bar,body:last-child .heighter-28:not(.ui_form_end_submit):not(.select2-content),_::-moz-progress-bar,body:last-child .heighter-28-force,_::-moz-progress-bar,body:last-child .ui_form_end_submit.heighter-28-force,_::-moz-progress-bar,body:last-child .ui_form_end_submit.heighter-28{font-size:13px !important;line-height:17px !important;height:28px !important;min-height:28px !important;max-height:28px !important;padding-top:0 !important;padding-bottom:2px !important}form .table-hardcoded .heighter-34[style*='28px'][style*='2px']+.chooser_button{margin-top: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]{vertical-align:middle !important}.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:32px !important;min-height:32px !important;max-height:32px !important}label+select,label+input[type='text']{max-width:40%}.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):not(.chooser_button),form>.heighter-34:not(.btn-lg):not(.ui_form_end_submit):not(.chooser_button){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,.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:32px;margin-top:3px !important}form[action*='send_mail.cgi'] textarea+input[onclick*='chooser']+.file_chooser_button_attached{margin-top:10px !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,.8)}.favorites-menu-close:hover .favorites-menu-bar{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{z-index:11006;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}.btn-squiare-headln2{width:38px;padding-left:10px !important}.btn-squiare-headln2 i{font-size:17px;line-height:21px}#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;vertical-align:baseline}#headln2c span[data-main_title]{font-size:23px;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:23px;vertical-align:middle}.-helper,.-helper.__helper,.cursor-pointer,.cursor-pointer a.ui_link{cursor:pointer !important}.cursor-alias{cursor:alias !important}.cursor-na{cursor:not-allowed !important}.overflow-hidden{overflow:hidden}.sub_table_container.table-hardcoded tr,.sub_table_container.table-hardcoded td{cursor:default}.cursor-default{cursor:default !important}label.checkbox+span+.chooser_button,label.radio+span+.chooser_button{margin-left:-1px}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{display:inline-block;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 ._c__op_r>td>.opener_table_style .opener_shown .table-hardcoded tbody tr td.col_header[colspan='2'],.opener_table_style ._c__op_r>td>.opener_table_style{padding:2px !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:32px;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:30px;height:32px;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:18px;padding-left:12px;background:#f5f5f5 !important}._c__op_d{line-height:22px !important;height:32px;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}html[data-script-name*='virtual-server/edit_user.cgi'] #content>div>div>div.panel-body>form>table.table.table-striped.table-hover.table-condensed.opener_table_style.opener_table_style_small{border-bottom:1px solid #e8e8e8 !important}html[data-script-name*='virtual-server/edit_user.cgi'] #content>div>div>div.panel-body>form>table.table.table-striped.table-hover.table-condensed.opener_table_style.opener_table_style_small .opener_shown{margin-bottom:1px !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)}.display-grid{display:grid}.hidden-force,.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}.top-aprogress{position:absolute;z-index:99999999 !important;top:0;overflow:hidden;width:100%;height:2px;background-color:transparent}.top-aprogress:before{position:absolute;display:block;height:2px;content:'';animation:taprogress 3.5s forwards,taswing 4s forwards infinite;animation-delay:0s,4s;background-color:#e8433f}@keyframes taprogress{0%{width:0}100%{width:100%}}@keyframes taswing{0%{left:0}25%{left:100%}75%{left:-100%}100%{left:0}}body[data-progress='0'] .top-aprogress body[data-progress='0'] .top-aprogress:before{display:none !important}.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:progress 400ms linear infinite;animation:progress 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']):not([data-module*='custom']) .col_header b{font-size:16px !important;font-weight:normal !important;line-height:26px !important;display:inline-block;width:100%;height:32px;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'] .panel-heading .btn-accordion-filter{display:none !important}html[data-script-name*='settings-user.cgi'] .panel-body.inner table>tbody>tr>td:first-child{width:60% !important}html[data-script-name*='settings-user.cgi'] .btn-group.end_submits{margin-top:-12px}.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:not(.btn-round),button.btn:not(.btn-round),.csf-container input[type='submit']:not(.btn-round),.csf-container button.input:not(.btn-round),input[type='submit']:not(.btn-round){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'],.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.messenger-on-top,ul.messenger.messenger-fixed.messenger-on-bottom{bottom:13px;left:58%}html[data-slider-fixed='1'] ul.messenger.messenger-fixed.messenger-on-top,html[data-slider-fixed='1'] ul.messenger.messenger-fixed.messenger-on-bottom{bottom:13px;left:49%}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}html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-top,html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-bottom{left:50%}@media(max-width:1080px){html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-top,html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-bottom,html[data-navigation-collapsed="0"] ul.messenger.messenger-fixed.messenger-on-top,html[data-navigation-collapsed="0"] ul.messenger.messenger-fixed.messenger-on-bottom{left:50%}}@media(max-width:960px){html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-top,html[data-navigation-collapsed="1"] ul.messenger.messenger-fixed.messenger-on-bottom,html[data-navigation-collapsed="0"] ul.messenger.messenger-fixed.messenger-on-top,html[data-navigation-collapsed="0"] ul.messenger.messenger-fixed.messenger-on-bottom{left:8%}}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%}.messenger-on-top.messenger-on-right .messenger-message-inner i{top:32%;left:4%}.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}@-moz-document url-prefix(){.file-manager .container-fluid .btn-group.pull-right>.btn-group>button.btn-inverse,.file-manager .container-fluid .btn-group.pull-right>button.btn-inverse{padding:5px 8px 7px 8px}.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:5px 10px 7px 10px !important}.file-manager .container-fluid .btn-group.pull-right button.btn-danger{padding:5px 8px 7px 8px !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(1)+.tree-view+.row+.row>.col-sm-7{margin-top:-7px !important;margin-bottom:2px !important}.file-manager .container-fluid .tab-content .row:nth-child(1)+.tree-view+.row+.row>.col-sm-5{margin-top:-3px !important;margin-bottom:3px !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 .table-striped>tbody>tr td:nth-child(1),.file-manager .container-fluid .table-striped>thead>tr th:nth-child(1){width:10px !important;min-width:10px !important;max-width:10px !important;padding-right:0 !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:10vw !important}.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 a[href*="download"],.file-manager .container-fluid .ui_checked_columns td img,.file-manager .container-fluid .ui_checked_columns td label,.file-manager .container-fluid .ui_checked_columns{cursor:context-menu !important}.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 #__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 #__f__c__m{padding-top:0}.file-manager #__f__c__m li[data-block]+.divider{margin-top:0}.file-manager #__f__c__m li[data-block]{display:inline-block;width:42px;text-align:center}.file-manager #__f__c__m li[data-block] i{font-size:17px}.file-manager #__f__c__m li[data-block] a{padding:10px 10px 10px 8px !important}.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%;color:#555}.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}.file-manager form[name='chmod'] input[name='t_total']{width:53px}.file-manager form[name='chmod'] input[name='t_total']::-webkit-inner-spin-button,.file-manager form[name='chmod'] input[name='t_total']::-webkit-outer-spin-button{padding-right:4px;-webkit-appearance:none}.file-manager select[name='config_portable_module_filemanager_default_sort'] option[disabled]{font-weight:700;font-style:italic}.file-manager[data-uri*='config.cgi'] textarea[name='bookmarks']{height:25vh}.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:3px;right:85px}.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:-4px;left:1px;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.jsPanel-btn-close{margin-top:-12px}.jsPanel-controlbar .jsPanel-btn .jsglyph-close{margin-right:5px}.jsPanel-controlbar .jsPanel-btn-minimize{margin-top:-3px}.jsPanel-controlbar .jsPanel-btn-save{margin-top:-9px;margin-right:37px}::-moz-progress-bar,body:last-child .jsPanel-controlbar .jsPanel-btn-save{margin-top:-8px}.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-mode-select],.file-manager .jsPanel div[data-encoding-label]{margin-top:-13px;margin-right:13px}.file-manager .jsPanel div[data-mode-select]{margin-right:1px}div[data-mode-select-single-mode]{position:absolute;right:40px;margin-top:-24px}.xqcontent-forced div[data-mode-select-single-mode]{margin-top:-29px}body[class*="custom"] div[data-mode-select-single-mode]{margin-top:-23px}.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}form[action='upload_html.cgi'] .file-input-wrapper{margin-top:0;margin-bottom:-1px}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:not(.no-hover)>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:not(.no-hover)>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:not(.no-hover)>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):not(.no-hover)>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:not(.no-hover)>tbody>tr:hover td:not([colspan='2']),#atsettings>form>div>table>tbody>tr>td>table:not(.no-hover)>tbody>tr.atshover:hover td div,#atsettings>form>div>table>tbody>tr>td>table:not(.no-hover)>tbody>tr.atshover:hover td,html:not([data-background-style='nightRider']) .table-hover:not(.no-hover):not(.opener_table_style)>tbody>tr.ui_checked_columns:hover,html:not([data-background-style='nightRider']) .table-hover:not(.no-hover):not(.opener_table_style)>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}.table.no-hover:not(.table-striped) tr:hover{background-color:transparent !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:1px 20px 3.5px 20px}.file-manager .tooltip-inner{max-width:100%}.file-manager #headln2r .btn-group>a.btn{padding:5px 12px 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 #headln2l a{line-height:17px}.file-manager[data-uri*='config.cgi'] #headln2l a{display:none}.file-manager #upload-form{width:100%;height:140px;border:3px dashed #e3e3e3;background-color:#f5f5f5;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.file-manager #upload-form p{font-size:14px;line-height:135px;width:100%;height:100%;text-align:center;color:#444}.file-manager #upfiles{position:absolute;width:100%;height:100% !important;margin:0;padding:0;opacity:0;outline:0}.file-manager .ui_checked_columns:hover>.ui_checked_checkbox:nth-child(1)+td>a:before{font-family:'Authentic';font-size:16px;position:absolute;margin-top:0;margin-left:-37px;content:'\f0f7';cursor:pointer;opacity:.64;color:#333}@-moz-document url-prefix(){.file-manager .ui_checked_columns:hover>.ui_checked_checkbox:nth-child(1)+td>a:before{margin-top:-1px}}.file-manager .data-content-container>[data-tree-view]>.cspinner.centered-initial{position:absolute;top:48%;left:46.5%}.file-manager .data-content-container>.data-table .tree-view:not(.hidden)+.row{min-height:351px;margin-left:250px}.file-manager .data-content-container>[data-tree-view],.file-manager .data-content-container>.data-table .tree-view{position:absolute;overflow:hidden;width:260px;height:262px;min-height:320px;margin-top:6px}.file-manager .data-content-container>[data-tree-view]{border:1px solid #eee;border-top-width:2px}.file-manager .data-content-container>[data-tree-view]{margin-top:29px}.file-manager .data-content-container>.data-table .tree-view{pointer-events:none}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter{position:absolute;width:260px;margin-top:266px}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter input{font-size:12px;width:100%;max-height:23px;padding-top:2px;padding-left:26px;padding-right:30px;padding-bottom:3px;border:1px solid #eee;background-color:#fff}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter.hidden-content .filter_fancytree_clear{display:none}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter.hidden-content input{border-top-color:transparent}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter.hidden-content input::-moz-placeholder{color:transparent}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter.hidden-content input::-webkit-input-placeholder{color:transparent}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter.hidden-content input:-ms-input-placeholder{color:transparent}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle,.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear{position:absolute;top:5px;letter-spacing:3px}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle:hover,.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear:hover{color:#94b2d4}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear{left:6px}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle{right:5px}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .clear_delimiter{font-size:14px;position:absolute;top:-2px;right:-2px;cursor:default;letter-spacing:21px;opacity:.80;color:#ccc;pointer-events:none}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear .clear_delimiter{left:14px;right:initial}.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle:hover .clear_delimiter,.file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear:hover .clear_delimiter{color:#ccc}.file-manager .data-content-container>[data-tree-view] .fancytree-loading-node+.fancytree-icon{visibility:hidden}.file-manager .data-content-container>[data-tree-view] .fancytree-loading-node{position:absolute;margin-top:2px;margin-left:6px}.file-manager ul.fancytree-container{font-size:13px;padding-top:2px;border-style:none;background-color:transparent}.file-manager ul.fancytree-container mark{padding-right:0;padding-left:0}.file-manager span.fancytree-node{border-radius:0}.file-manager span.fancytree-title{color:#222}.file-manager span.fancytree-node.fancytree-active{background-color:#f5f5f5}.file-manager .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-active{border-color:transparent;background-color:transparent}.file-manager span.fancytree-node span.fancytree-expander:after,.file-manager span.fancytree-node.fancytree-active span.fancytree-icon:after,.file-manager span.fancytree-node span.fancytree-icon:after{font-family:'Authentic';font-size:14px}.file-manager span.fancytree-node span.fancytree-icon:after{content:'\f031'}.file-manager span.fancytree-node.fancytree-expanded span.fancytree-icon:after,.file-manager span.fancytree-node.fancytree-active span.fancytree-icon:after{content:'\f030'}.file-manager span.fancytree-node.fancytree-has-children span.fancytree-expander:after{content:'\f088'}.file-manager span.fancytree-node.fancytree-expanded.fancytree-has-children span.fancytree-expander:after{content:'\f085'}.file-manager .fancytree-ext-childcounter span.fancytree-childcounter,.file-manager .fancytree-ext-filter span.fancytree-childcounter{font-size:9px;font-size:8.5px;line-height:8px;position:absolute;top:-4px;right:-6px;min-width:8px;height:9px;padding:0 2px 0 2px;text-align:center;vertical-align:initial;color:#fff;border:1px solid gray;border-radius:10px;background:#777}.file-manager .fancytree-statusnode-nodata{text-align:center}.file-manager .fancytree-statusnode-nodata .fancytree-title{margin-left:0}.file-manager .fancytree-statusnode-nodata span.fancytree-expander,.file-manager .fancytree-statusnode-nodata span.fancytree-icon{display:none}.file-manager span.fancytree-expander{margin-top:1px}.file-manager .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-focused{border-color:transparent;background-color:#f5f5f5}.file-manager table.fancytree-ext-table.fancytree-treefocus tbody tr.fancytree-focused span.fancytree-title{outline:0}.file-manager .fancytree-container.fancytree-treefocus span.fancytree-node:hover{background-color:#eaf2fb}.file-manager .mCS-autoHide>.mCustomScrollBox ~ .mCSB_scrollTools{opacity:1 !important}body[data-uri^="/filemin/config.cgi?"] #content.__page .table-subtable tr td .sub_table_container{width:99.94% !important}body[data-uri^="/filemin/config.cgi?"] #content.__page .sub_table_container tr:first-child td{padding-bottom:3px !important}[cancel-preparing-download]:hover,{filter:contrast(250%);-webkit-filter:contrast(250%)}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:-34px}.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:-87px}.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}pre>i.label-transparent-15{font-weight:300;font-style:unset;display:inline-block;width:100%;padding:.31%;border-radius:unset}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:8px 15px 7px 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:not(.no-hover):not(.opener_table_style) ._c__op_r:hover,.table-hover:not(.no-hover):not(.opener_table_style) ._c__op_d:hover,.table-hover:not(.no-hover):not(.opener_table_style) ._c__op_r,.table-hover:not(.no-hover):not(.opener_table_style) ._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:not(.no-hover):not(.opener_table_style) tr[bgcolor='#ffffff']._c__op_r+tr[bgcolor='#feffff']:hover{background-color:#fff !important}.xcontent-force-no-styling .awobject{margin-left:2px}.col_value.col_header .fa.-helper{right:20px;margin-top:-25px}.xcontent-force-no-styling .col_value.col_header .fa.-helper{margin-top:-30px}.xcontent-force-no-styling .fa.-helper{font-size:16px !important;right:21px;margin-top:-25px}.fa.-helper{position:absolute;z-index:999;right:15px;margin-top:-20px}html[data-script-name*='settings-editor_read.cgi'] .badge.label-default{margin-top:-5px}html[data-script-name*='settings-editor_read.cgi'] .fa.-helper{margin-top:-21px}html[data-script-name*='settings-editor_read.cgi'] #content .CodeMirror+.ui_form_end_buttons .btn{margin-left:-2px !important}html[data-script-name*='settings-editor_read.cgi'] #content .CodeMirror+.ui_form_end_buttons td:last-child .btn{margin-right:-1px !important}.fa.-helper:hover{color:#333}.col_value.col_header .fa.fa-wrap-text.-helper,.fa.fa-wrap-text.-helper{right:43px;font-size:18px !important}.popover.popover-wider,.popover._helper{z-index:10001;max-width:320px}.popover._helper .popover-content table+h5{margin-top:20px}.popover._helper .popover-content h5{margin-bottom:-5px;letter-spacing:-0.1px}.popover.module-help{opacity:0}.pointer-events-none{pointer-events:none;cursor:not-allowed !important}.pointer-events-auto{pointer-events:auto !important}.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}.thead.container-resizeable-head{color:#333;border-color:#eaeaea;border-bottom:1px solid #eaeaea;border-top:1px solid #eaeaea;background-color:#f6f6f6;line-height:0;padding:10px 5px !important}.thead.container-resizeable-head>.db_editor_collapse{margin-top:-7px !important;pointer:default}.thead.container-resizeable-head+div{margin-top:1px !important}.table-resizable .ui_checked_checkbox{vertical-align:top}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}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}body[class*='postgresql'] form[action*='edit_tpriv.cgi'] #db,body[class*='mysql'] form[action*='edit_tpriv.cgi'] #db{min-height:32px}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'] .chooser_button{margin-top:6px !important}form+script+a[href*='newdb_form.cgi']{margin-top:5px}form[action='change_users.cgi'] a[href*='edit_user.cgi?']:not([href*='edit_user.cgi?new'])>i{color:#d80a0a}.font-weight-light{font-weight:300 !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:bold !important}.text-decoration-none{text-decoration:none !important}.text-left{text-align:left !important}.text-right{text-align:right !important}.z-index-10001{z-index:10001}.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:9px;left:8px}.btn-accordion-filter input,.btn-filter-top-right input{max-width:80px;padding:1px 2px 3px 2px;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}.awobject+a.help_popup{vertical-align:initial !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:32px}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*='trace.cgi'] pre{margin-top:4px}_::-moz-progress-bar,body:last-child.proc[data-uri*='edit_proc.cgi?'] select.heighter-28+button{height:28px !important;min-height:28px !important;max-height:28px !important}@-moz-document url-prefix(){body[class*='proc'] .panel-body>.btn:not(.btn-xxs):not(.btn-tiny):not(.ui_link_replaced){padding:4px 12px 6px 12px}}body[class*='proc'][data-uri*='index_search.cgi'] #files{width:50% !important}.btn-group.end_submits+select.ui_select{height:32px !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:32px}.ui_form_end_submit.heighter-28,.ui_form_end_submit.heighter-28-force{line-height:17px}b+select.ui_select:not(.heighter-34)+.ui_form_end_submit{line-height:17px}b+select.ui_select:not(.heighter-34)+.ui_form_end_submit span.cspinner_container{margin-top:3px}.btn-group>.ui_form_end_submit>i,.btn-group>.ui_form_end_submit>span:not(.label-transparent-35){display:inline-block;margin-top:0 !important}.btn-group>.ui_form_end_submit>span.label-transparent-35+span{margin-top:9px !important}html[data-uri*='syslog/save_log.cgi'] .container-fluid input[name='filter']+.btn-group{margin-top:1px}html[data-uri*='syslog/save_log.cgi'] .container-fluid form ~ [data-cm-viewer]+.ui_form{display:none}html[data-uri*='syslog/save_log.cgi'] .container-fluid form ~ [data-cm-viewer]{margin-bottom:6px}html[data-uri*='syslog/save_log.cgi'] .container-fluid form ~ [data-cm-viewer]+.ui_form+script+br{display:none}html[data-uri*='syslog/save_log.cgi'] .container-fluid .hidden.select2-hidden-accessible+.select2{display:none}html[data-uri*='syslog-ng/view_log.cgi'] .container-fluid form[action*='view_log.cgi']:first-child{margin-bottom:7px}html[data-uri*='syslog-ng/view_log.cgi'] .container-fluid form[action*='view_log.cgi']:first-child>input[name='filter']{vertical-align:top !important}.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/mass_aedit_form.cgi'] .panel-body .ui_form_end_buttons{margin-top:-12px !important}body[data-uri*='fsdump'] .panel-body select[name='fs']{vertical-align:top !important}body[class*='apache'] form[action*='search_virt.cgi']>input[name='what'],body[data-uri*='virtual-server/edit_newchroot.cgi'] .panel-body table .awobject.awcheckbox{vertical-align:middle}body[data-uri*='virtual-server/ratelimit.cgi'] .panel-body table .table-condensed tr td.td_tag{line-height:0}body[class*='postgresql'] form[action*='edit_dbase.cgi']>select[name='db'],body[class*='mysql'] form[action*='edit_dbase.cgi']>select[name='db']{vertical-align:bottom !important}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[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dd{padding-right:3px;padding-left:3px;border-right:1px solid #eee;border-left:1px solid #eee}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dd:last-child{border-bottom:1px solid #eee}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl{margin-top:4px;margin-bottom:4px;border-bottom-width:2px}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dt{font-size:16px;height:32px;padding:2px 10px;text-align:center;vertical-align:baseline;color:#282828;border:1px solid #f0f0f0;border-top-width:2px;border-top-color:#f0f0f0;background-color:#f6f6f6}body[data-uri*='usermin/edit_acl.cgi'] form[action*='save_acl.cgi'] .ui_grid_table tbody{border:1px solid #eee}body[data-uri*='usermin/edit_acl.cgi'] form[action*='save_acl.cgi'] .ui_grid_table tbody tr td{padding:1px 4px !important}body[class*='proftpd'] form[action*='save'] input[type='submit']{margin-top:10px !important}body[class*='proftpd'] .table-hardcoded .heighter-34+input[type='submit']{vertical-align:bottom}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*='proftpd'] .panel-body form .CodeMirror+br{display:none}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.custom .table-title b{line-height:24px}body.custom .xcontent-force-no-styling .col_value.col_header .fa.-helper{margin-top:-23px}body.custom table.ui_grid_table{background-color:#eee;margin-top:6px;margin-bottom:6px}body.custom table.ui_grid_table tr td:last-child{padding-right:5px !important}body.custom table.ui_grid_table tr,body.custom table.ui_grid_table tr td{padding-top:0 !important;padding-bottom:0 !important;display:contents}body.custom table.ui_grid_table tr td>form .table-responsive table table tr:last-child td{display:table-cell !important}body.custom table.ui_grid_table tr td>form,body.custom table.ui_grid_table tr td>form .table-responsive table td,body.custom table.ui_grid_table tr td>form .table-responsive table table,body.custom table.ui_grid_table tr td>form .table-responsive table td,body.custom table.ui_grid_table tr td>form .table-responsive table{padding:0 !important;margin:0 !important}body.custom table.ui_grid_table tr td>form{margin:1px !important}body.custom table.ui_grid_table tr td>form .table-responsive table textarea,body.custom table.ui_grid_table tr td>form .table-responsive table input{padding:0 3px !important;padding-bottom:3px !important;vertical-align:middle !important;margin-left:2px;font-weight:500;font-style:italic;text-align:center}body.custom table.ui_grid_table tr td>form .table-responsive table textarea{resize:none;height:28px;min-height:28px;padding-top:3px !important;padding-bottom:2px !important;text-align:left}body.custom table.ui_grid_table tr td>form .table-responsive table .chooser_button:not(.date_chooser_button){margin-top:2px !important;margin-left:-1px !important}body.custom table.ui_grid_table tr td>form .table-responsive table .chooser_button{vertical-align:top !important}body.custom table.ui_grid_table tr td>form .table-responsive table .date_chooser_button{vertical-align:middle !important}body.custom table.ui_grid_table tr td>form .table-responsive table tbody tr .col_label b{margin-left:10px;margin-right:2px}body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit{border-left:0;border-top:0;border-bottom:0;border-style:ridge;border-right-width:3px;font-weight:500;vertical-align:baseline;margin-right:5px;color:#444 !important;border-color:#e2e2e2 !important;background-color:#f6f6f6 !important;box-shadow:2px 2px 3px rgba(0,0,0,.12) !important}body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit:hover{color:#fff !important;background-color:#349e30 !important}body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit i.fa{margin-top:2px}body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit .cspinner_container .cspinner .cspinner-icon.dark{margin-top:4px;border-top-color:rgba(255,255,255,0.82);border-left-color:rgba(255,255,255,0.82)}body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit:hover i.fa:before{content:'\f02b'}body.custom table.ui_grid_table tr td:last-child .ui_link{float:right;margin-left:10px;margin-right:5px}body.custom table.ui_grid_table tr td>form .table.table-striped>tbody{border:0 !important}body.custom[data-uri*='index.cgi'] table.table-striped.dataTable tr td:last-child,body.custom:not([data-uri*='.cgi']) table.table-striped.dataTable tr td:last-child{white-space:nowrap;padding-right:10px !important;padding-left:3px !important}body.custom[data-uri*='index.cgi'] table.table-striped.dataTable tr td:first-child,body.custom:not([data-uri*='.cgi']) table.table-striped.dataTable tr td:first-child{white-space:nowrap;padding-right:7px !important}body[data-uri*='edit_cmd.cgi'].custom 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}iframe[src*='proxy.cgi']{height:75vh !important;min-height:75vh !important}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*='firewall6'] td[nowrap],body[class*='firewall'] td[nowrap]{white-space:normal}body[class*='firewall'] b+a+b._btn-links-top,body[class*='firewall6'] b+a+b._btn-links-top,body[class*='firewall'] style+b+b+a._btn-links-top,body[class*='firewall6'] style+b+b+a._btn-links-top{margin-left:-4px}body[class*='firewall'] form[action*="newchain.cgi"] input[name="chain"],body[class*='firewall6'] form[action*="newchain.cgi"] input[name="chain"]{vertical-align:bottom !important}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}body[class*='package-updates'] form[action*='update.cgi']>button[name$='_top']{margin-bottom:5px}td>textarea+br{line-height:21px !important}td>textarea+br+b,td>select+br,td>input+br{line-height:29px !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}.nav>li>a:hover,.nav>li>a:focus{background-color:#eee82}.nav-tabs>li>a:hover{border-color:transparent}.table>tbody>tr>td>label>img{margin-top:2px;margin-bottom:-2px}.sub_table_container td span>input,.table>tbody>tr>td{vertical-align:middle}.td_tag>img{margin-top:-2px}#content #system-status ._sync_sysinfo_cnt{margin-right:-20px;margin-top:-9px;border-color:transparent !important}html[data-script-name*='sysinfo.cgi'] #system-status+div [data-panel-ctl]{margin-bottom:-20px}html[data-script-name*='sysinfo.cgi'] #system-status .alert>p>.btn-grey[data-panel-ctl]:not(:hover):not(:active):not(:focus):not(.active),html[data-script-name*='sysinfo.cgi'] #system-status+div .btn-grey[data-panel-ctl]:not(:hover):not(:active):not(:focus):not(.active){background-color:transparent !important;color:#444 !important;border-color:rgba(68,68,68,0.57) !important}html[data-script-name*='sysinfo.cgi'] #system-status table tr td,#content #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}html[data-level='3'] #system-status+#extended_sysinfo-1,html[data-level='3'] #system-status+#extended_sysinfo-1+br,html[data-level='3'] #system-status+#extended_sysinfo-1+br ~ br{display:none}@media all and (max-width:1600px){html[data-slider-fixed='1'][data-access-level='0'] #system-status .table{width:100%}html[data-slider-fixed='1'][data-access-level='0'] #system-status .table tr:hover{background-color:transparent !important}html[data-slider-fixed='1'][data-access-level='0'] #system-status .table tr td:nth-child(odd){display:inline-block;min-width:34%}html[data-slider-fixed='1'][data-access-level='0'] #system-status .table tr td:nth-child(even){display:inline-block;min-width:64%}html[data-slider-fixed='1'][data-access-level='0'] #system-status .table tr{display:block}}@media all and (max-width:1280px){html[data-slider-fixed='0'][data-access-level='0'] #system-status .table{width:100%}html[data-slider-fixed='0'][data-access-level='0'] #system-status .table tr:hover{background-color:transparent !important}html[data-slider-fixed='0'][data-access-level='0'] #system-status .table tr td:nth-child(odd){display:inline-block;min-width:34%}html[data-slider-fixed='0'][data-access-level='0'] #system-status .table tr td:nth-child(even){display:inline-block;min-width:64%}html[data-slider-fixed='0'][data-access-level='0'] #system-status .table tr{display:block}}.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}body[class*='server-manager'][data-uri$='server-manager/'] form[action*='mass.cgi'],body[class*='server-manager'][data-uri*='index.cgi'] form[action*='mass.cgi']{margin-top:3px}body[class*='server-manager'][data-uri$='server-manager/'] form[action*='index.cgi'] i.fa-check-circle-o:before,body[class*='server-manager'][data-uri*='index.cgi'] form[action*='index.cgi'] i.fa-check-circle-o:before{content:'\f004'}body[class*='server-manager'][data-uri$='server-manager/'] form[action*='index.cgi'] i.fa-search,body[class*='server-manager'][data-uri*='index.cgi'] form[action*='index.cgi'] i.fa-search{font-size:12px}#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}_::-moz-progress-bar,body[class*='webminlog'] input[name='ouser']{margin-top:3px}_::-moz-progress-bar,body:last-child[class*='webminlog'] textarea#anno+br+.ui_form_end_submit{margin-top:2px !important}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}html[data-webprefix*='servers/link.cgi/'] body.servers .container-fluid{pointer-events:none !important;filter:opacity(50%) blur(1px) grayscale(100%);-webkit-filter:opacity(50%) blur(1px) grayscale(100%)}html[data-webprefix*='servers/link.cgi/'] li.menu-exclude.ui-sortable-handle>a[href$='servers/?xnavigation=1'].menu-exclude-link,html[data-webprefix*='servers/link.cgi/'] a[href$='servers/?xnavigation=1'].right_pane_favorites_link,html[data-webprefix*='servers/link.cgi/'] aside li[data-linked] a[href$='servers/?xnavigation=1']{text-decoration:line-through;pointer-events:none;opacity:.40}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_acl.cgi'] .chooser_button{margin-top:-3px !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^='acl'] .table-hardcoded>tbody>tr>td.col_value>.table-hardcoded>tbody.border-global-color{border-color:#eee !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'] input[name='user'].heighter-34:not(.btn-lg):not(.ui_form_end_submit),body[class*='quota'] 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*='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}.mailboxes[data-uri*="view_mail.cgi"] .td_tag a.ui_link_replaced:first-child+a.ui_link_replaced,.mailbox[data-uri*="view_mail.cgi"] .td_tag a.ui_link_replaced:first-child+a.ui_link_replaced{display:none !important}form[action='list_mail.cgi'] input#user{margin-top:0 !important}form[action='mail_search.cgi'] input[name='search']{min-height:32px !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_global.cgi'] input:not([type='checkbox']):not([type='radio']),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_global.cgi'] tr:first-child input:not([type='checkbox']):not([type='radio']),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_global.cgi'] tr:first-child input:not([type='checkbox']):not([type='radio']),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_global.cgi'] tr:first-child input[type='submit'],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_global.cgi']:first-child,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:16px !important;vertical-align:middle !important}body[class*='fetchmail'] div>div>div.panel-body>form>table:nth-child(4)>tbody{border:0}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*='htaccess-htpasswd'] [name="search"]+button{margin-bottom:-2px !important}body[class^='htaccess'] input[name='dir']{vertical-align:middle}body[class*='webalizer'] td.td_tag img[src*='images/empty']{display:none}body[class*='virtual-server'][data-uri*='list_records.cgi'] button[name='manual']{float:right}body[class*='virtual-server'][data-uri*='list_records.cgi'] select[name='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}body[class*='quota'] input[name='user'],body[class*='quota'] input[name='group'],body[class*='useradmin'] input[name='username']{margin-top:3px !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*='package-updates'][data-uri*='view.cgi'] .table pre{padding:3px 3px 3px 6px;font-size:11.6px}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*='status'][data-uri*='edit_mon.cgi'] .tdhead{vertical-align:middle}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[data-uri="/virtual-server/"] form[action="search.cgi"]+script+form[action="domain_form.cgi"],body[data-uri="/virtual-server/index.cgi"] form[action="search.cgi"]+script+form[action="domain_form.cgi"]{margin-top:5px}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:not(.no-hover):not(.opener_table_style)>tbody>tr td,html:not([data-background-style='nightRider']) body[class*='postgresql'][data-uri*='view_table']:not(.csf):not(.backup-config) .table-striped:not(.no-hover):not(.opener_table_style)>tbody>tr td,html:not([data-background-style='nightRider']) body[class*='mysql'][data-uri*='backup_form']:not(.csf):not(.backup-config) .table-striped:not(.no-hover):not(.opener_table_style)>tbody>tr td,html:not([data-background-style='nightRider']) body[class*='postgresql'][data-uri*='backup_form']:not(.csf):not(.backup-config) .table-striped:not(.no-hover):not(.opener_table_style)>tbody>tr td{background-color:#fff !important}html:not([data-background-style='nightRider']) .table-hover.opener_table_style>tbody>tr:not(._c__op_r):hover{background-color:#fff}html:not([data-background-style='nightRider']) .table-hover.opener_table_style>tbody>tr._c__op_r:hover{background-color:#f9f9f9}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}.xqcontent-forced .table-responsive+.ui_form_end_buttons .btn{margin-left:2px}.xqcontent-forced .table-responsive+.ui_form_end_buttons .btn[data-form="submitter"]+.btn{margin-left:0}.datepicker{font-size:95%}.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:16px}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}body[data-module*='smart-status'] select[name='drive']+button.ui_form_end_submit,body[data-module*='smart-status'] select[name='drive']{font-size:14px !important;height:32px !important;min-height:32px}body[data-module*='fdisk'] .slider+input[name="S-text"]{margin-top:2px}body[data-module*='fdisk'] .slider+input[name="S-text"][readonly]{display:none}.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}.cke_dialog_background_cover{z-index:20000 !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}_::-moz-progress-bar,body:last-child .mppopup_string_done .btn-success{padding:2px 12px 3px 12px !important}.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-cmd+pre{display:inline-block;margin-top:-13px}html[data-level="3"] .-shell-port-container [data-shell-config]{display:none}.-shell-port-container [data-shell-config]{position:absolute;right:32px;top:30px;color:#ffffff50}.-shell-port-container [data-shell-config]>i{font-size:150%}.-shell-port-container [data-shell-config]:hover{color:#ffffff80;cursor:pointer}.modal-shell-config{z-index:999999}.modal-shell-config .modal-dialog{width:560px}.modal-shell-config table{margin-top:-8px !important;border:1px solid #aaaaaa50;margin-bottom:3px}.modal-shell-config table tr td{padding:4px}.progressing .-shell-port-close{pointer-events:auto !important}.-shell-port-container .-shell-port-close{position:absolute;z-index:11011;top:0;right:-90px;width:100px;height:100px;cursor:pointer;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:top right;transform-origin:top right;background-color:rgba(140,15,12,.95)}.-shell-port-container .-shell-port-close:before{font-family:'Authentic';font-size:12px;position:absolute;top:75px;right:58px;content:'\f0ec';-webkit-transform:rotate(135deg);transform:rotate(135deg);color:#ccc}.-shell-port-container .-shell-port-close:hover:before{color:#fff}_::-moz-progress-bar,body:last-child .-shell-port-container .-shell-port-close:before{top:77px}.-shell-port- .-shell-port-container{overflow:auto;height:100%;margin-top:-8px}.-shell-port- pre>b{display:inline-block;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}.session-reauthenticate-container-center{max-width:420px;margin:12% auto 0;padding:20px;border:1px solid #e6e6e6;background-color:#fff;box-shadow:-30px 30px 51px rgba(0,0,0,.2)}.session-reauthenticate-container-center:before{position:absolute;z-index:-1;top:0;left:0;width:100%;height:100%;content:'';opacity:.2;background-repeat:no-repeat;background-position:center center;background-size:contain;filter:grayscale(100%);-webkit-filter:grayscale(100%)}.session-reauthenticate-container-center [data-container-twofactor] input[type='number']{padding-top:1px;padding-right:2px;padding-bottom:1px}html[data-webprefix*='servers/link.cgi/'] .session-reauthenticate-container-center form .btn-success,html[data-webprefix*='servers/link.cgi/'] .session-reauthenticate-container-center form .form-group{display:none}.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}.session-reauthenticate>div>div.panel{background-color:rgba(255,255,255,.7)}@-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:rgba(51,51,51,.7);text-shadow:.25em 0 0 rgba(0,0,0,0),.5em 0 0 rgba(0,0,0,0)}60%{text-shadow:.25em 0 0 rgb(51,51,51,.7),.5em 0 0 rgba(0,0,0,0)}80%,100%{text-shadow:.25em 0 0 rgba(51,51,51,.7),.5em 0 0 rgba(51,51,51,.7)}}.progressing #headln2l,.progressing #headln2r,.progressing #headln2c .favorites{visibility:hidden;pointer-events:none}.progressing pre:not([data-xconsole]):empty:after{display:block;margin-top:-2px;content:' .';animation:dotsblack 1s steps(5,end) infinite}.progressing pre:not([data-xconsole]):empty{height:38px;max-height:38px}@keyframes dotsblack{0%,20%{color:rgba(0,0,0,0);text-shadow:.25em 0 0 rgba(0,0,0,0),.5em 0 0 rgba(0,0,0,0)}40%{color:rgba(255,255,255,.6);text-shadow:.25em 0 0 rgba(0,0,0,0),.5em 0 0 rgba(0,0,0,0)}60%{text-shadow:.25em 0 0 rgba(255,255,255,.6),.5em 0 0 rgba(0,0,0,0)}80%,100%{text-shadow:.25em 0 0 rgba(255,255,255,.6),.5em 0 0 rgba(255,255,255,.6)}}.progressing pre>i{visibility:hidden;-webkit-animation:3s fadeIn;animation:3s fadeIn;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@keyframes fadeIn{99%{visibility:hidden}100%{visibility:visible}}_::-moz-progress-bar,body:last-child input[type='password']:not(:placeholder-shown){font-size:8px !important}input[type='password'].use_input_warning_caps{padding-right:22px}.input_warning_caps{position:absolute;z-index:1000000;display:none;margin-top:3px;margin-top:3.5px;margin-left:-19px;color:rgba(165,34,34,.62)}.input_warning_caps.large{margin-top:5px;margin-top:5.5px;margin-left:-21px}.input_warning_caps:after{font-family:'Authentic';font-size:14px;content:'\f04a'}.input_warning_caps.visible{display:inline-block}.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}@keyframes colorify{0%{-webkit-filter:grayscale(100%);filter:grayscale(100%)}100%{-webkit-filter:grayscale(0);filter:grayscale(0)}}.colorify{-webkit-animation-name:colorify;animation-name:colorify;-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-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-sm{font-size:1.05em !important}.fa-sms{font-size:1.025em !important}.fa-smm{font-size:1.12em !important;vertical-align:-14%}.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}.fa-spin-fastest{-webkit-animation:fa-spin .5s infinite linear;animation:fa-spin .5s infinite linear}@-webkit-keyframes gradual{0%{-webkit-transform:rotate(0);transform:rotate(0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);animation-timing-function:cubic-bezier(.215,.61,.355,1)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-spin-gradual{-webkit-animation:gradual 1s infinite;animation:gradual 1s infinite}@-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 progress{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes progress{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 .versionSeparator{font-size:10px;display:inline-block;float:right;margin-top:-14px}.modal-dialog-update .versionSeparatorContainer{margin-top:-11px}.modal-dialog-update .versionSeparatorContainer>.versionSeparator{float:initial;margin-top:0}.modal-dialog-update .versionSeparatorContainer>.versionSeparator:not(:last-child):after{content:" "}.modal-dialog-update .versionSeparator+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 .versionSeparator+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 .versionSeparator .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+.versionSeparator+.no-data+.versionSeparator{margin-top:-9px}.modal-dialog-update .modal-body>h4:first-child+.versionSeparator+.no-data+.versionSeparator+hr{display:none}.modal-dialog-update [data-fixed-bugs] i.fa{display:block;margin-top:1px}.modal-dialog-update .bctl{vertical-align:initial}body[data-uri*='language'] .container-fluid .tooltip-inner,body[data-uri*='change-user'] .container-fluid .tooltip-inner,body[data-uri*='webmin/edit_lang.cgi'] .container-fluid .tooltip-inner{min-width:25vw}body[data-uri*='language'] .tooltip-inner i,body[data-uri*='change-user'] .tooltip-inner i,body[data-uri*='webmin/edit_lang.cgi'] .tooltip-inner i{white-space:nowrap}body[data-uri*='language'] .tooltip-inner p,body[data-uri*='change-user'] .tooltip-inner p,body[data-uri*='webmin/edit_lang.cgi'] .tooltip-inner p{margin:0 0 1px}body[data-uri*='language'] [name*='config_portable_theme'],body[data-uri*='change-user'] [name*='config_portable_theme'],body[data-uri*='webmin/edit_lang.cgi'] [name*='config_portable_theme']{margin-top:1px;margin-bottom:2px}body[data-uri*='language'] select[data-select='locales'][disabled],body[data-uri*='change-user'] select[data-select='locales'][disabled],body[data-uri*='webmin/edit_lang.cgi'] select[data-select='locales'][disabled]{width:161px;margin-top:1px;margin-right:3px;margin-bottom:2px}@-moz-document url-prefix(){body[data-uri*='language'] select[data-select='locales'][disabled],body[data-uri*='change-user'] select[data-select='locales'][disabled],body[data-uri*='webmin/edit_lang.cgi'] select[data-select='locales'][disabled]{width:156px}}body[data-uri*='language'] form[action*='change_lang.cgi'] .ui_form_end_buttons tbody tr:last-child td{padding-top:10px !important}.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}.ui_multi_select_row td:nth-child(2){text-align:center;vertical-align:middle !important}.ui_multi_select_row td:nth-child(2) button:focus,.ui_multi_select_row td:nth-child(2) button:hover,.ui_multi_select_row td:nth-child(2) button:active:focus,.ui_multi_select_row td:nth-child(2) button:active,.ui_multi_select_row td:nth-child(2) button{color:transparent !important}.ui_multi_select_row td:nth-child(2) button:after{font-family:'Authentic';font-size:14px;position:absolute;visibility:visible;margin-left:-11px;content:'\f076';color:#888}.ui_multi_select_row td:nth-child(2) button:hover:after{color:#0e437fcc}.ui_multi_select_row td:nth-child(2) button:first-child{margin-top:-42px}.ui_multi_select_row td:nth-child(2) button:last-child{margin-top:-10px !important;margin-left:7px !important}_::-moz-progress-bar,body:last-child .ui_multi_select_row td:nth-child(2) button:last-child{margin-left:10px !important}.ui_multi_select_row td:nth-child(2) button:last-child:after{content:'\f000'}.modal-list-users hr{margin-bottom:13px}@media(max-width:460px){body[data-uri*='sysinfo.cgi'] .col-xs-6,#content #system-status+.panel-group .col-xs-6,#content #system-status .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,html[data-slider-fixed='1'] #content #system-status+.panel-group .col-xs-6,html[data-slider-fixed='1'] #content #system-status .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,html[data-slider-fixed='1'] #content #system-status+.panel-group .col-md-3,html[data-slider-fixed='1'] #content #system-status+.panel-group .col-md-6,html[data-slider-fixed='1'] #content #system-status .col-md-3,html[data-slider-fixed='1'] #content #system-status .col-md-6{width:50%}html[data-slider-fixed='1'] body[data-uri*='sysinfo.cgi'] .col-xs-12,html[data-slider-fixed='1'] #content #system-status+.panel-group .col-xs-12,html[data-slider-fixed='1'] #content #system-status .col-xs-12{width:100%}}@media(min-width:768px){.modal-dialog.modal-dialog-update{width:660px;margin:30px auto}.modal-top-10{margin:10% auto}.modal-md{width:480px}}@media screen and (max-width:960px){.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:1080px){#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(pointer:coarse),(-moz-touch-enabled:1){.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide>.mCustomScrollBox ~ .mCSB_scrollTools{opacity:1 !important}aside .mCSB_scrollTools .mCSB_draggerContainer{left:6px;margin-top:-15px;margin-bottom:-15px}aside .mCSB_dragger .mCSB_dragger_bar{width:9px !important}.table-hardcoded .ui_grid_cell{padding-top:5px !important;padding-bottom:5px !important}}html[data-navigation-collapsed='1'] #content.__page{margin:0 !important}html[data-navigation-collapsed='1'] .autocomplete-suggestions{min-width:260px !important}@media screen and (max-width:1080px){.loader{margin:-20px 0 !important}.btn-hidden.hidden{display:inline-block !important}}html[data-navigation-collapsed='1'] .loader{margin:-20px 0 !important}html[data-navigation-collapsed='1'] .btn-hidden.hidden{display:inline-block !important}html[data-current-product='usermin'] body.plan .ui_form_end_buttons{margin-top:-12px !important}html[data-current-product='usermin'] body.forward .panel-body>._btn-links-top:nth-child(2){margin-left:-12px !important}html[data-uri*='forward/edit_alias.cgi'] select{margin-bottom:3px !important}html[data-uri*='forward/edit_alias.cgi'] input[type='submit']{vertical-align:inherit}html[data-uri*='software'] .container-fluid input[name='url'],html[data-uri*='software'] .container-fluid input[name='search']{vertical-align:bottom !important}html[data-uri*='software'] .container-fluid input#update,html[data-uri*='software'] .container-fluid input[onclick*='software/find.cgi']{margin-top:2px}html[data-uri*='software'] .container-fluid input#update{vertical-align:bottom !important}html[data-script-name*='software'][data-script-name$='tree.cgi'] .container-fluid input[name="filter"]{min-height:32px}body.time .container-fluid div[id="att_zone"] select+.select2,body.time .container-fluid div[id="att_zone"] select{min-width:35vh}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}}@media print{body,body *,body[data-uri*='mailbox/print_mail.cgi']{overflow-x:visible !important;overflow-y:visible !important}}tr .btn-hover-wash_off-in-row,tr .f__lnk_t_btn-el:not(.btn-dnwo){pointer-events:none;opacity:.42;filter:grayscale(100%);-webkit-filter:grayscale(100%)}tr:not(:hover) .f__lnk_t_btn-el:not(.btn-dnwo){color:#333 !important;border-color:#aaa !important;background-color:transparent !important}tr:not(:hover) .f__lnk_t_btn-el:not(.btn-dnwo).btn-hover-hide{visibility:hidden}tr:not(:hover) .f__lnk_t_btn-el:not(.btn-dnwo) ~ .btn{border-left-color:transparent !important}tr:hover .btn-hover-wash_off-in-row,tr:hover .f__lnk_t_btn-el:not(.btn-dnwo){visibility:visible;pointer-events:auto;opacity:1;filter:grayscale(0);-webkit-filter:grayscale(0)}.btn-hover-wash_off-in-row{background-color:transparent}tr .btn-hover-hide-in-row{visibility:hidden}tr:hover .btn-hover-hide-in-row{visibility:visible}tr:not(:hover) .btn-hover-wash_off-in-row:focus,tr:not(:hover) .btn-hover-wash_off-in-row:active,tr:not(:hover) .btn-hover-wash_off-in-row:hover,tr:not(:hover) .btn-hover-wash_off-in-row{color:#33333373 !important;border-color:#33333326 !important;background-color:transparent !important}tr:not(:hover) .btn-hover-wash_off-in-row:focus .cspinner_container .cspinner-icon,tr:not(:hover) .btn-hover-wash_off-in-row:active .cspinner_container .cspinner-icon,tr:not(:hover) .btn-hover-wash_off-in-row:hover .cspinner_container .cspinner-icon,tr:not(:hover) .btn-hover-wash_off-in-row .cspinner_container .cspinner-icon{border-top-color:#33333373 !important;border-left-color:#33333373 !important}@keyframes obj-fadein{0%{opacity:0}to{opacity:1}}.obj-fadein{animation-name:obj-fadein;animation-duration:.5s;animation-fill-mode:both}.btn-group.dropdown-editor_config_search{margin-left:-1px;z-index:10001}input+select+span+.btn-group.dropdown-editor_config_search{margin-left:-1px}b+select+span+.btn-group.dropdown-editor_config_search{margin-left:-4px}.select2-container--open+.btn-group.dropdown-editor_config_search{border-left-color:transparent;z-index:10000}.btn-group.dropdown-editor_config_search>.dropdown-toggle{width:36px;padding-left:9px !important;padding-top:4px !important;padding-bottom:6px !important}.btn-group.dropdown-editor_config_search>.dropdown-toggle>.fa{vertical-align:-15%}.btn-group.dropdown-editor_config_search li:first-child:not(.divider){padding:10px 10px 0 10px}.btn-group.dropdown-editor_config_search li:not(:first-child):not(.divider){padding:4px 10px 7px 10px}.btn-group.dropdown-editor_config_search li:last-child:not(.divider){padding:0 0 0 10px}.btn-group.dropdown-editor_config_search li.divider{padding-top:0;margin-top:4px}.btn-group.dropdown-editor_config_search li>span:hover{background-color:transparent}.btn-group.dropdown-editor_config_search [data-clear-search]{position:absolute;right:10px}.btn-group.dropdown-editor_config_search li input{width:100%;padding-right:30px}.btn-group.dropdown-editor_config_search li>span{display:inline-block;padding:0;white-space:initial}.btn-group.dropdown-editor_config_search ul [data-no-results-initial]:not(.showing-results){display:none}.btn-group.dropdown-editor_config_search [data-search-in-files-container]{display:grid}.btn-group.dropdown-editor_config_search [data-search-in-results-container] .mCSB_dragger{right:-7px}.btn-group.dropdown-editor_config_search .light [data-search-in-results-container] .mCSB_dragger{right:-12px}.btn-group.dropdown-editor_config_search [data-search-in-results-container]{max-height:25.3vh;display:block;overflow:auto}.btn-group.dropdown-editor_config_search [data-search-in-results-container]>span:first-child{margin-top:4px !important}.btn-group.dropdown-editor_config_search [data-search-in-results-container]+[data-search-stats]{display:flex;height:21px;margin-left:-10px;border-top:2px solid #75776d;font-size:12px;padding-left:2px;padding-top:2px}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results-container]+[data-search-stats]{background-color:#fff !important}.btn-group.dropdown-editor_config_search [data-search-in-results-container]+[data-search-stats] kbd{padding:0 2px 2px 2px;border:0;margin-left:3px;box-shadow:none;font-family:inherit;font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:50%}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results]{background-color:rgba(25,25,25,1)}.btn-group.dropdown-editor_config_search [data-search-in-results]{margin:10px 10px 5px 10px}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span{display:flow-root}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span{font-size:13px}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span>span:nth-child(3){display:inline-block;font-size:12px;padding-right:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span>span:nth-child(3){border-bottom:1px solid rgba(49,49,49,0.18);width:100%;padding-bottom:4px}.btn-group.dropdown-editor_config_search .light [data-search-in-results]>span span>span:nth-child(2){font-weight:500}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span:not(:first-child)>span:nth-child(1){padding-top:2px}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span>span:nth-child(1){font-size:12px;margin-right:10px}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span>span:nth-child(3) kbd{padding:2px 0 2px 0;background-color:rgba(68,63,63,0.88);border:0;box-shadow:none;font-size:12px;font-family:inherit}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span[data-no-results]{text-transform:uppercase;text-align:center;padding:4px 0 8px 0}.btn-group.dropdown-editor_config_search [data-search-in-files-button] i.fa{margin-right:6px;top:-0.5px;position:relative}.btn-group.dropdown-editor_config_search [data-search-in-files-button] i:not(.hidden)+.cspinner{display:none}.btn-group.dropdown-editor_config_search [data-search-in-files-button] i+.cspinner{left:-0.5px;top:.5px}.btn-group.dropdown-editor_config_search [data-search-in-results]>span span>span:nth-child(1) a:hover{text-decoration:underline}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark>span span>span:nth-child(3){border-bottom:1px solid rgba(200,200,200,0.10)}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark{background-color:#272822}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark>span span{color:#d8d8d8}.btn-group.dropdown-editor_config_search [data-search-in-results].dark>span:first-child>span{margin-top:2px}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark>span span>span:nth-child(2){color:#fd971f}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark>span span>span:nth-child(1) a,html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].dark>span span>span:nth-child(1){color:#ddd}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search .light [data-search-in-results-container]+[data-search-stats]{background-color:transparent !important;border-top:2px solid #ddd;margin-left:-2px}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light{background-color:#fff}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light>span span>span:nth-child(3){color:#262;font-style:italic}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light>span span>span:nth-child(3) kbd{background-color:rgba(103,103,103,0.4);color:#333;border:1px solid #ccc;border-bottom:0}html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light>span span>span:nth-child(2),html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light>span span>span:nth-child(1) a,html:not([data-background-style='nightRider']) .btn-group.dropdown-editor_config_search [data-search-in-results].light>span span>span:nth-child(1){color:#333}.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}.bottom_progresses{position:absolute;right:20px;bottom:10px}html[data-slider-fixed='1'] .bottom_progresses{right:320px}.bottom_progress{position:relative;display:inline-block;float:right;width:40px;height:150px;margin-left:15px;animation:1s ease-out 0s 1 slideInFromLeft;background-color:#68686866}.bottom_progress.no-animation{animation:none}.bottom_progress_horizontal{clear:right;width:100px;height:250px;margin-top:-69px;margin-right:75px !important;margin-bottom:-65px;margin-left:90px;transform:rotate(-90deg);animation:1s ease-out 0s 1 slideInFromLeftHorizontal}@keyframes slideInFromLeft{0%{transform:translateX(-360%)}100%{transform:translateX(0)}}@keyframes slideInFromLeftHorizontal{0%{transform:translateX(-360%) rotate(-90deg)}100%{transform:translateX(0) rotate(-90deg)}}.bottom_progress_level{position:absolute;bottom:0;width:40px;height:1%;-webkit-transition:all .7s ease-in-out;-moz-transition:all .7s ease-in-out;-o-transition:all .7s ease-in-out;transition:all .7s ease-in-out}.bottom_progress_lane{position:absolute;bottom:0;width:41px;height:100%;animation:Gradient 1s ease infinite;border-right:1px solid rgba(138,138,138,.35);background:linear-gradient(-45deg,rgba(54,54,54,.55),rgba(54,54,54,.75),rgba(54,54,54,.55),rgba(54,54,54,.75));background-size:400% 400%}@-webkit-keyframes Gradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}@-moz-keyframes Gradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}@keyframes Gradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}.bottom_progress_horizontal+.bottom_progress_horizontal{clear:none;margin-right:148px}.bottom_progress_level.success{background-color:#4bae4cba}.bottom_progress_level.danger{background-color:#c62e2eba}.bottom_progress_overlay{font-size:14px;font-weight:500;display:block;margin-top:60%;transform:rotate(90deg);color:#fffffff7}.bottom_progress_horizontal .bottom_progress_overlay{display:inline-block;width:220px;margin-top:115px;margin-left:-90px}.bottom_progress_horizontal .bottom_progress_overlay .bottom_progress_data{font-size:12px}.bottom_progress_horizontal .bottom_progress_percent{float:right}.bottom_progress_horizontal .bottom_progress_filename{font-family:monospace;font-size:14px;position:absolute;display:inline-block;overflow:hidden;width:240px;height:20px;margin-top:114px;margin-left:-50px;transform:rotate(90deg);text-align:center}.bottom_progress_horizontal .bottom_progress_filename>.fa{float:left;margin-top:4px;margin-left:3px}.bottom_progress_cancel{display:none;margin-top:240%;transform:rotate(90deg)}.bottom_progress_cancel:hover{color:#b40000a3}.bottom_progress:hover .bottom_progress_cancel{display:block}.bottom_progress_horizontal .bottom_progress_cancel{margin-top:182px;margin-right:-80px}.bottom_progresses .bottom_progress:not(.bottom_progress_horizontal){margin-bottom:8px !important} diff --git a/unauthenticated/css/palettes/nightrider.min.css b/unauthenticated/css/palettes/nightrider.min.css index 93cb3a44d..f6c4cffd6 100644 --- a/unauthenticated/css/palettes/nightrider.min.css +++ b/unauthenticated/css/palettes/nightrider.min.css @@ -4,6 +4,6 @@ * Copyright Ilia Rostovtsev * Licensed under MIT (https://github.com/authentic-theme/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):not([disabled]):not([data-theme-version-container]),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] .file-manager ul.fancytree-container span.fancytree-title,html[data-background-style='nightRider'] .file-manager .container-fluid .breadcrumb>li.fm___root__>a>i,html[data-background-style='nightRider'] .ui_multi_select_row td:nth-child(2) button:hover:after,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):not(.cke_hand),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'] #content .dropdown-submenu a,html[data-background-style='nightRider'] #content .dropdown-menu a,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'] .nav-tabs .active a{font-weight:500}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'] .badge-custom.xs,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,html[data-background-style='nightRider'] .graph-container>.graph>.bar.red{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.red+.bar.red{border-left-color:#ca524f}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%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar.green{border-right-color:#18aa80;background-color:#21795f}html[data-background-style='nightRider'] .graph-container>.graph>.bar.green+.bar.green{border-left-color:#18aa80}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%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:86%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:87%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:88%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:89%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:90%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar.yellow{border-right-color:#ab844c;background-color:#8a6939}html[data-background-style='nightRider'] .graph-container>.graph>.bar.yellow+.bar.yellow{border-left-color:#ab844c}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:0%']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: 0%']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:0']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: 0']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:-']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: -']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar.gray{border-right-color:#515151;background-color:#444950}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:-']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: -']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar.gray{color:#aaa}html[data-background-style='nightRider'] .graph-container>.graph>.bar.red{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.gray+.bar.gray{border-left-color:#ca524f}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){html[data-background-style='nightRider'] .graph-container>.graph>.bar,html[data-background-style='nightRider'] .graph-container>.graph>.bar.gray{border-right-color:#515151 !important;background-color:#444950 !important}}html[data-background-style='nightRider'] img[src*="images/cross.png"],html[data-background-style='nightRider'] img[src*="images/not.png"]{opacity:.65}html[data-background-style='nightRider'] img[src*="images/check.png"]{opacity:.5}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'] .cke_dialog_ui_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'] .cke_dialog_ui_button:hover,html[data-background-style='nightRider'] .cke_dialog_ui_button:focus,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'] #content .panel-collapse div>table>tbody>tr:hover>td,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'] body[data-uri^="/filemin/config.cgi?"] #content.__page .sub_table_container tr:hover 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):not(.no-hover)>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):not([data-xconsole]),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 .versionSeparator+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):not(.badge-custom),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,{border:0 !important;background-color:#060606 !important}html[data-background-style='nightRider'] .-shell-port- .-shell-port-cmd,html[data-background-style='nightRider'] .-shell-port- pre[data-xconsole],html[data-background-style='nightRider'] .-shell-port- pre{border:0 !important;color:#ddd !important;background-color:transparent !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'] body.custom table.ui_grid_table{background-color:#2b2d33}html[data-background-style='nightRider'] body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit{box-shadow:2px 2px 3px rgba(0,0,0,.08) !important;border-color:rgba(66,68,73,.82) !important;color:#a8abad !important;background-color:#2f3237 !important}html[data-background-style='nightRider'] body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit:hover{color:#bfc9d3 !important;border-color:rgba(27,191,137,.55) !important;background-color:rgba(27,191,137,.07) !important}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)}html[data-background-style='nightRider'] .thead.container-resizeable-head,html[data-background-style='nightRider'] .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,html[data-background-style='nightRider'] body:not([data-module*='man']):not([data-module*='custom']) .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,html[data-background-style='nightRider'] body:not([data-module*='man']):not([data-module*='custom']) .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'] #right-side-tabs .dropdown-menu>li>a,html[data-background-style='nightRider'] #right-side-tabs .nav-tabs a,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:not([data-search-in-results-container]):hover,html[data-background-style='nightRider'] .dropdown-menu>li>span:not([data-search-in-results-container]):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'] .panel-default>.panel-heading,html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs{border-bottom-color:#424449;background:#2f3237}html[data-background-style='nightRider'] #extended_sysinfo .panel-default>.panel-heading+.panel-collapse>.panel-body{border-color:#44464e !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] #extended_sysinfo .panel-title-status{color:rgba(118,122,127,.89)}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:2px}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}html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar{margin-top:-2px}html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-mode-select] select,html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-encoding-label] select{background-color:transparent !important;border-color:transparent !important}html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-mode-select],html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-encoding-label]{margin-top:-11px}@-moz-document url-prefix(){html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-mode-select],html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-encoding-label]{margin-top:-12px}}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 ._filemanager_file_editor_save .cspinner{top:-3px;margin-left:4.5px}html[data-background-style='nightRider'] .jsPanel-controlbar .jsPanel-btn-save{margin-top:-7px}html[data-background-style='nightRider'] .jsPanel-controlbar .jsPanel-btn.jsPanel-btn-close{margin-top:-11px}html[data-background-style='nightRider'] .jsPanel-controlbar .jsPanel-btn-normalize,html[data-background-style='nightRider'] .jsPanel-controlbar .jsPanel-btn-maximize{margin-top:-9px}html[data-background-style='nightRider'] tr:not(:hover) .btn-hover-wash_off-in-row:focus .cspinner_container .cspinner-icon,html[data-background-style='nightRider'] tr:not(:hover) .btn-hover-wash_off-in-row:active .cspinner_container .cspinner-icon,html[data-background-style='nightRider'] tr:not(:hover) .btn-hover-wash_off-in-row:hover .cspinner_container .cspinner-icon,html[data-background-style='nightRider'] tr:not(:hover) .btn-hover-wash_off-in-row .cspinner_container .cspinner-icon{border-top-color:#dddddd73 !important;border-left-color:#dddddd73 !important}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.-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):not(.badge-custom){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'] body[data-uri*="usermin/edit_acl.cgi"] form[action*="save_acl.cgi"] .ui_grid_table tbody,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'] body[class^='acl'] .table-hardcoded>tbody>tr>td.col_value>.table-hardcoded>tbody.border-global-color{border-color:#393b3f !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:hover:focus,html[data-background-style='nightRider'] .btn-default:hover.focus,html[data-background-style='nightRider'] .btn-default:focus,html[data-background-style='nightRider'] .btn-default.focus{color:#fff !important;border-color:rgba(137,106,17,.74) !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'] .file-input-wrapper:hover i,html[data-background-style='nightRider'] .chooser_button:hover i,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'][data-script-name*='virtual-server/edit_user.cgi'] #content>div>div>div.panel-body>form>table.table.table-striped.table-hover.table-condensed.opener_table_style.opener_table_style_small{border-bottom-color:#38393f !important}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'] .mobile-menu-toggler .btn-primary:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary:active:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary.active:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .open>.dropdown-toggle.btn-primary:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary:active:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary.active:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .open>.dropdown-toggle.btn-primary:focus,html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary:active.focus:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary.active.focus:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary,html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary:focus,html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary.active,html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary:active:not(.page_footer_submit){border-color:#393d44 !important;background-color:#2a2d32 !important;border-left-color:transparent !important;margin-left:-1px}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'] .cke_dialog_ui_button.cke_dialog_ui_button_ok,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'] .cke_dialog_ui_button.cke_dialog_ui_button_ok:focus,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'] .cke_dialog_ui_button.cke_dialog_ui_button_ok:hover,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'] .cke_dialog_ui_button.cke_dialog_ui_button_ok:active,html[data-background-style='nightRider'] .cke_dialog_ui_button.cke_dialog_ui_button_ok:active,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'] .select2-selection__rendered:not(:hover) .menu-status-label{background-color:rgba(109,109,109,0.25) !important;color:#ccc !important}html[data-background-style='nightRider'] .select2-selection__rendered:hover .menu-status-label{color:#222 !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 option[disabled]:not([data-label]){color:#555}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-container input[type='text']:not(.dataTable-mirror):focus,html[data-background-style='nightRider'] .csf-container 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'] select#CSFlognum:not([data-encoding]):not([data-no-appearance]):not([multiple]),html[data-background-style='nightRider'] select.ui_select:not([data-encoding]):not([data-no-appearance]):not([multiple]),html[data-background-style='nightRider'] select:not([data-encoding]):not([data-no-appearance]):not([multiple]){background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 -144 1008 1008'%3E%3Cg transform='matrix(1 0 0 -1 0 864)'%3E%3Cpath fill='gray' d='M504 108l-252 454h504z'/%3E%3C/g%3E%3C/svg%3E") !important;background-size:12px 12px,12px 12px,0 0 !important;background-position:calc(100% - 2px) calc(100% - 8px) !important;background-repeat:no-repeat !important}html[data-background-style='nightRider'] select#CSFlognum:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus,html[data-background-style='nightRider'] select.ui_select:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus,html[data-background-style='nightRider'] select:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 -144 1008 1008'%3E%3Cg transform='matrix(1 0 0 -1 0 864)'%3E%3Cpath fill='gray' d='M504 612l252 -454h-504z'/%3E%3C/g%3E%3C/svg%3E") !important}html[data-background-style='nightRider'] select:not([data-encoding]):not([data-no-appearance]):not([multiple]).heighter-34{background-position:calc(100% - 2px) calc(100% - 10px) !important}html[data-background-style='nightRider'] .__page .select2-content.select2-selection.select2-selection--single span,html[data-background-style='nightRider'] .__page .select2-content.select2-selection.select2-selection span{color:rgba(151,155,160,.94) !important}html[data-background-style='nightRider'] .__page .select2-content{border-color:rgba(78,81,87,.37) !important;background:#2f3237 !important}html[data-background-style='nightRider'] .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #777 transparent !important}html[data-background-style='nightRider'] .__page .select2-content-container.select2-container--open .select2-selection__arrow b{border-color:transparent transparent #555 transparent !important}html[data-background-style='nightRider'] .__page .select2-content .select2-selection__arrow b{border-color:#777 transparent transparent transparent !important}html[data-background-style='nightRider'] .select2-dropdown.select2-content{border-color:rgba(137,106,17,.74) !important;top:0;margin-top:-1px}html[data-background-style='nightRider'] .select2-dropdown.select2-content.select2-dropdown--above{border-top:1px solid rgba(137,106,17,.74) !important;margin-top:1px !important}html[data-background-style='nightRider'] .select2-dropdown.select2-content .select2-results{background-color:rgba(35,41,50,.95) !important}html[data-background-style='nightRider'] .select2-dropdown.select2-content .select2-search{background-color:rgba(48,51,58,.91) !important;border-bottom:1px solid rgba(95,95,95,.32) !important}html[data-background-style='nightRider'] .select2-dropdown.select2-content .select2-search input{border-color:#55555588 !important}.select2-container--default .select2-content .select2-results__option[aria-disabled='true'],.select2-container--default .select2-content .select2-results__option[aria-selected='true'],html[data-background-style='nightRider'] .select2.select2-content-container.select2-container--open .select2-content,html[data-background-style='nightRider'] .select2.select2-content-container.select2-container--focus .select2-content{border-color:rgba(137,106,17,.74) !important}html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option[aria-disabled='true'],html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option[aria-selected='true'],html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option--highlighted[aria-selected],html[data-background-style='nightRider'] .select2-content .select2-results ul li:active,html[data-background-style='nightRider'] .select2-content .select2-results ul li:focus,html[data-background-style='nightRider'] .select2-content .select2-results ul li:hover,html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option--highlighted[aria-selected]:active,html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option:hover,html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option:focus{background-color:rgba(150,150,150,.25) !important;color:rgba(239,239,239,.82) !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:rgba(58,60,65,0.45);border-color:transparent}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}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}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dd{border-left-color:#383a3f;border-right-color:#383a3f}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dd:last-child{border-bottom-color:#383a3f}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dt{color:#777;border-color:#383a3f;border-width:1px;background-color:transparent}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):not(pre.comment){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'][data-theme='gunmetal'] .favorites-menu-close{background:#791a1a}html[data-background-style='nightRider'][data-theme='gunmetal'] .favorites-menu-close .favorites-menu-bar{background:rgba(250,250,250,0.6)}html[data-background-style='nightRider'][data-theme='gunmetal'] .favorites-menu-close:hover .favorites-menu-bar{background:rgba(250,250,250,75)}html[data-background-style='nightRider'] #system-status .panel-title>.extra_documentation_links{margin-top:-5px !important;border-color:#464c5796 !important}html[data-background-style='nightRider'][data-uri*='virtual-server/delete_domain.cgi'] font[size='+1']{color:#e6423ea6}html[data-background-style='nightRider'] .session-reauthenticate-container-center{background-color:rgba(37,37,37,0.70);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:#323333cc !important;border-color:#434444d6}html[data-background-style='nightRider'] .session-reauthenticate-container-center:before{opacity:.3}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}html[data-background-style='nightRider'] .th-server-sort a>img[src$="grey.gif"]{filter:hue-rotate(160deg) brightness(1.25)}@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:rgba(150,150,150,0.9);text-shadow:.25em 0 0 rgba(200,200,200,0),.5em 0 0 rgba(200,200,200,0)}60%{text-shadow:.25em 0 0 rgba(150,150,150,0.9),.5em 0 0 rgba(200,200,200,0)}80%,100%{text-shadow:.25em 0 0 rgba(150,150,150,0.9),.5em 0 0 rgba(150,150,150,0.9)}}html[data-background-style='nightRider'] .bottom_progress_level.success{background-color:#21795e8a}html[data-background-style='nightRider'] .bottom_progress_level.danger{background-color:#7d1f1f8a}html[data-background-style='nightRider'] .bottom_progress_overlay{color:rgba(255,255,255,0.4)}html[data-background-style='nightRider'] .bottom_progress_lane{border-right:1px solid rgba(138,138,138,0.25);background-color:rgba(25,25,25,0.80)}html[data-background-style='nightRider'] .text-semi-dark.text-dark-hoverd-red:hover,html[data-background-style='nightRider'] .text-dark.text-dark-hoverd-red:hover{color:rgba(200,60,60,0.57) !important}html[data-background-style='nightRider'] .file-manager #upload-form{border:3px dashed rgba(77,80,87,.28);background-color:rgba(65,67,71,.21);-webkit-box-shadow:none !important;box-shadow:none !important}html[data-background-style='nightRider'] .file-manager #upload-form p{color:#7c7c7c}html[data-background-style='nightRider'] .file-manager #content .btn-group>.dropdown-toggle{margin-left:0 !important}html[data-background-style='nightRider'] .file-manager #content .btn-group.pull-right>.btn.btn-inverse:hover,html[data-background-style='nightRider'] .file-manager #content .btn-group>.dropdown-toggle:hover{background-color:rgba(82,77,77,0.13) !important}html[data-background-style='nightRider'] .file-manager #content .btn-group.pull-right>.btn.btn-inverse:hover:not(:first-child){border-left-color:transparent !important}html[data-background-style='nightRider'] .file-manager .ui_checked_columns:hover>.ui_checked_checkbox:nth-child(1)+td>a:before{color:#ccc}html[data-background-style=nightRider] .file-manager .data-content-container>[data-tree-view]{border-color:#eeeeee10;border-top-width:1px}html[data-background-style=nightRider] .file-manager .fancytree-container.fancytree-treefocus span.fancytree-node:hover{background-color:#393737}html[data-background-style=nightRider] .file-manager .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-focused,html[data-background-style=nightRider] .file-manager span.fancytree-node.fancytree-active{background-color:#3d353b}html[data-background-style=nightRider] .file-manager ul.fancytree-container .fancytree-statusnode-nodata .fancytree-title{color:rgba(151,155,160,.82) !important}html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle,html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear{color:#eeeeee40}html[data-background-style='nightRider'] .file-manager ul.fancytree-container mark{color:#44b96c75;background-color:#9a937d0f}html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .clear_delimiter,html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle:hover .clear_delimiter,html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear:hover .clear_delimiter{color:#eeeeee40}html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle:hover,html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear:hover{color:rgba(238,153,17,.60)}html[data-background-style='nightRider'] tr:not(:hover) .f__lnk_t_btn-el:not(.btn-dnwo){color:#7f8286 !important;border-color:#62666f !important}html[data-background-style='nightRider'] .input_warning_caps{color:rgba(210,46,46,0.67)}html[data-background-style='nightRider'] .cke_bottom,html[data-background-style='nightRider'] .cke_top{background:#2f3238 !important;border-color:rgba(0,0,0,0)}html[data-background-style='nightRider'] .cke_combo:after,html[data-background-style='nightRider'] .cke_toolgroup a.cke_button:last-child:after,html[data-background-style='nightRider'] .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right-color:transparent}html[data-background-style='nightRider'] .cke_toolbar_separator{display:none}html[data-background-style='nightRider'] .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,html[data-background-style='nightRider'] .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,html[data-background-style='nightRider'] .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,html[data-background-style='nightRider'] .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,html[data-background-style='nightRider'] .cke_combo_on a.cke_combo_button,html[data-background-style='nightRider'] .cke_combo_on a.cke_combo_button:hover,html[data-background-style='nightRider'] .cke_combo_on a.cke_combo_button:focus,html[data-background-style='nightRider'] .cke_combo_on a.cke_combo_button:active,html[data-background-style='nightRider'] .cke_combo_off a.cke_combo_button,html[data-background-style='nightRider'] .cke_combo_off a.cke_combo_button:hover,html[data-background-style='nightRider'] .cke_combo_off a.cke_combo_button:focus,html[data-background-style='nightRider'] .cke_combo_off a.cke_combo_button:active{color:#929292;padding:0;margin-left:-1px;margin-top:1px}html[data-background-style='nightRider'] a.cke_button_off:hover,html[data-background-style='nightRider'] a.cke_button_on:hover,html[data-background-style='nightRider'] a.cke_button_on{border-color:#8e8e8eb5}html[data-background-style='nightRider'] .cke_combo_button{border:1px solid #4a4e5398;background:#3c3d42}html[data-background-style='nightRider'] .cke_combo_text{color:#888d90}html[data-background-style='nightRider'] .cke_button_label{color:#c6c4c4}html[data-background-style='nightRider'] .cke_button_arrow,html[data-background-style='nightRider'] .cke_combo_arrow{border-top:3px solid #a9a9a9}html[data-background-style='nightRider'] .cke_button_on,html[data-background-style='nightRider'] a.cke_button_off:active,html[data-background-style='nightRider'] a.cke_button_off:focus,html[data-background-style='nightRider'] a.cke_button_off:hover{background:rgba(238,153,17,.20) !important}html[data-background-style='nightRider'] .cke_contents,html[data-background-style='nightRider'] .cke_float .cke_top,html[data-background-style='nightRider'] .cke_chrome{border:1px solid #3d3f43 !important;background:#2f3238 !important}html[data-background-style='nightRider'] .cke_toolgroup{border:1px solid #414448;background:#393b40}html[data-background-style='nightRider'] a[class*="cke_button_"]{filter:invert(100%) brightness(80%)}html[data-background-style='nightRider'] a[class*="cke_button_"] span{color:#222 !important} +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):not([disabled]):not([data-theme-version-container]),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] .file-manager ul.fancytree-container span.fancytree-title,html[data-background-style='nightRider'] .file-manager .container-fluid .breadcrumb>li.fm___root__>a>i,html[data-background-style='nightRider'] .ui_multi_select_row td:nth-child(2) button:hover:after,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):not(.cke_hand),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'] #content .dropdown-submenu a,html[data-background-style='nightRider'] #content .dropdown-menu a,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'] .nav-tabs .active a{font-weight:500}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'][data-script-name*='sysinfo.cgi'] #system-status .alert>p>.btn-grey[data-panel-ctl]:not(:hover):not(:active):not(:focus):not(.active),html[data-background-style='nightRider'][data-script-name*='sysinfo.cgi'] #system-status+div .btn-grey[data-panel-ctl]:not(:hover):not(:active):not(:focus):not(.active){color:#a8abad !important;border-color:rgba(80,85,99,.61) !important;background-color:transparent !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'] .badge-custom.xs,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,.23);background-color:rgba(128,118,64,.18)}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,.10);background-color:rgba(145,94,94,.38)}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,.30);background-color:rgba(62,118,38,.15)}html[data-background-style='nightRider'] .graph-container>.graph{background-color:rgba(133,138,143,.17)}html[data-background-style='nightRider'] .graph-container>.graph>.bar,html[data-background-style='nightRider'] .graph-container>.graph>.bar.red{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.red+.bar.red{border-left-color:#ca524f}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%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar.green{border-right-color:#18aa80;background-color:#21795f}html[data-background-style='nightRider'] .graph-container>.graph>.bar.green+.bar.green{border-left-color:#18aa80}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%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:86%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:87%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:88%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:89%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:90%'],html[data-background-style='nightRider'] .graph-container>.graph>.bar.yellow{border-right-color:#ab844c;background-color:#8a6939}html[data-background-style='nightRider'] .graph-container>.graph>.bar.yellow+.bar.yellow{border-left-color:#ab844c}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:0%']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: 0%']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:0']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: 0']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:-']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: -']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar.gray{border-right-color:#515151;background-color:#444950}html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width:-']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar[style^='width: -']:not(.green):not(.red):not(.yellow),html[data-background-style='nightRider'] .graph-container>.graph>.bar.gray{color:#aaa}html[data-background-style='nightRider'] .graph-container>.graph>.bar.red{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.gray+.bar.gray{border-left-color:#ca524f}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){html[data-background-style='nightRider'] .graph-container>.graph>.bar,html[data-background-style='nightRider'] .graph-container>.graph>.bar.gray{border-right-color:#515151 !important;background-color:#444950 !important}}html[data-background-style='nightRider'] img[src*="images/cross.png"],html[data-background-style='nightRider'] img[src*="images/not.png"]{opacity:.65}html[data-background-style='nightRider'] img[src*="images/check.png"]{opacity:.5}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'] .cke_dialog_ui_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'] .cke_dialog_ui_button:hover,html[data-background-style='nightRider'] .cke_dialog_ui_button:focus,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'] #content .panel-collapse div>table>tbody>tr:hover>td,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'] body[data-uri^="/filemin/config.cgi?"] #content.__page .sub_table_container tr:hover 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):not(.no-hover)>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'] .panel-success{background-color:rgba(62,118,38,.15)}html[data-background-style='nightRider'] .panel-success>.panel-heading{color:rgba(234,239,238,.70);border-color:rgba(71,101,47,.30);background-color:rgba(62,118,38,.15)}html[data-background-style='nightRider'] .panel-success>.panel-heading h4 a{color:#9aaf9d !important}html[data-background-style='nightRider'] .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#223124}html[data-background-style='nightRider'] .panel-info{border-color:rgba(65,108,117,.29)}html[data-background-style='nightRider'] .panel-info>.panel-heading{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'] .panel-info>.panel-heading h4 a{color:#7b8894 !important}html[data-background-style='nightRider'] .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2b363c}html[data-background-style='nightRider'] .panel-warning{border-color:rgba(222,180,93,.23)}html[data-background-style='nightRider'] .panel-warning>.panel-heading{color:rgba(234,239,238,.70);border-color:rgba(222,180,93,.23);background-color:rgba(128,118,64,.18)}html[data-background-style='nightRider'] .panel-warning>.panel-heading h4 a{color:#989881 !important}html[data-background-style='nightRider'] .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#27241e}html[data-background-style='nightRider'] .panel-danger{border-color:rgba(224,60,87,.10)}html[data-background-style='nightRider'] .panel-danger>.panel-heading{color:rgba(234,239,238,.70);border-color:rgba(224,60,87,.10);background-color:rgba(145,94,94,.38)}html[data-background-style='nightRider'] .panel-danger>.panel-heading h4 a{color:#a98a8b !important}html[data-background-style='nightRider'] .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#52393a}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):not([data-xconsole]),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 .versionSeparator+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):not(.badge-custom),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,{border:0 !important;background-color:#060606 !important}html[data-background-style='nightRider'] .-shell-port- .-shell-port-cmd,html[data-background-style='nightRider'] .-shell-port- pre[data-xconsole],html[data-background-style='nightRider'] .-shell-port- pre{border:0 !important;color:#ddd !important;background-color:transparent !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'] body.custom table.ui_grid_table{background-color:#2b2d33}html[data-background-style='nightRider'] body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit{box-shadow:2px 2px 3px rgba(0,0,0,.08) !important;border-color:rgba(66,68,73,.82) !important;color:#a8abad !important;background-color:#2f3237 !important}html[data-background-style='nightRider'] body.custom table.ui_grid_table tr td>form .table-responsive table tr:first-child td.col_header button.ui_submit:hover{color:#bfc9d3 !important;border-color:rgba(27,191,137,.55) !important;background-color:rgba(27,191,137,.07) !important}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)}html[data-background-style='nightRider'] .thead.container-resizeable-head,html[data-background-style='nightRider'] .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,html[data-background-style='nightRider'] body:not([data-module*='man']):not([data-module*='custom']) .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,html[data-background-style='nightRider'] body:not([data-module*='man']):not([data-module*='custom']) .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'] #right-side-tabs .dropdown-menu>li>a,html[data-background-style='nightRider'] #right-side-tabs .nav-tabs a,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:not([data-search-in-results-container]):hover,html[data-background-style='nightRider'] .dropdown-menu>li>span:not([data-search-in-results-container]):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'] .panel-default>.panel-heading,html[data-background-style='nightRider'] .file-manager .tabs-top>.nav-tabs{border-bottom-color:#424449;background:#2f3237}html[data-background-style='nightRider'] #extended_sysinfo .panel-default>.panel-heading+.panel-collapse>.panel-body{border-color:#44464e !important}html[data-background-style='nightRider'] .right-side-tabs[data-background-style='grey'] #extended_sysinfo .panel-title-status{color:rgba(118,122,127,.89)}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:2px}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}html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar{margin-top:-2px}html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-mode-select] select,html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-encoding-label] select{background-color:transparent !important;border-color:transparent !important}html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-mode-select],html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-encoding-label]{margin-top:-11px}@-moz-document url-prefix(){html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-mode-select],html[data-background-style='nightRider'] .jsPanel .jsPanel-headerbar [data-encoding-label]{margin-top:-12px}}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 ._filemanager_file_editor_save .cspinner{top:-3px;margin-left:4.5px}html[data-background-style='nightRider'] .jsPanel-controlbar .jsPanel-btn-save{margin-top:-7px}html[data-background-style='nightRider'] .jsPanel-controlbar .jsPanel-btn.jsPanel-btn-close{margin-top:-11px}html[data-background-style='nightRider'] .jsPanel-controlbar .jsPanel-btn-normalize,html[data-background-style='nightRider'] .jsPanel-controlbar .jsPanel-btn-maximize{margin-top:-9px}html[data-background-style='nightRider'] tr:not(:hover) .btn-hover-wash_off-in-row:focus .cspinner_container .cspinner-icon,html[data-background-style='nightRider'] tr:not(:hover) .btn-hover-wash_off-in-row:active .cspinner_container .cspinner-icon,html[data-background-style='nightRider'] tr:not(:hover) .btn-hover-wash_off-in-row:hover .cspinner_container .cspinner-icon,html[data-background-style='nightRider'] tr:not(:hover) .btn-hover-wash_off-in-row .cspinner_container .cspinner-icon{border-top-color:#dddddd73 !important;border-left-color:#dddddd73 !important}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.-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):not(.badge-custom){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'] body[data-uri*="usermin/edit_acl.cgi"] form[action*="save_acl.cgi"] .ui_grid_table tbody,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'] body[class^='acl'] .table-hardcoded>tbody>tr>td.col_value>.table-hardcoded>tbody.border-global-color{border-color:#393b3f !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:hover:focus,html[data-background-style='nightRider'] .btn-default:hover.focus,html[data-background-style='nightRider'] .btn-default:focus,html[data-background-style='nightRider'] .btn-default.focus{color:#fff !important;border-color:rgba(137,106,17,.74) !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'] .file-input-wrapper:hover i,html[data-background-style='nightRider'] .chooser_button:hover i,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'][data-script-name*='virtual-server/edit_user.cgi'] #content>div>div>div.panel-body>form>table.table.table-striped.table-hover.table-condensed.opener_table_style.opener_table_style_small{border-bottom-color:#38393f !important}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'] .mobile-menu-toggler .btn-primary:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary:active:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary.active:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .open>.dropdown-toggle.btn-primary:hover:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary:active:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary.active:focus:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .open>.dropdown-toggle.btn-primary:focus,html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary:active.focus:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary.active.focus:not(.page_footer_submit),html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary,html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary:focus,html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary.active,html[data-background-style='nightRider'] .mobile-menu-toggler .btn-primary:active:not(.page_footer_submit){border-color:#393d44 !important;background-color:#2a2d32 !important;border-left-color:transparent !important;margin-left:-1px}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'] .cke_dialog_ui_button.cke_dialog_ui_button_ok,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'] .cke_dialog_ui_button.cke_dialog_ui_button_ok:focus,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'] .cke_dialog_ui_button.cke_dialog_ui_button_ok:hover,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'] .cke_dialog_ui_button.cke_dialog_ui_button_ok:active,html[data-background-style='nightRider'] .cke_dialog_ui_button.cke_dialog_ui_button_ok:active,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'] .select2-selection__rendered:not(:hover) .menu-status-label{background-color:rgba(109,109,109,0.25) !important;color:#ccc !important}html[data-background-style='nightRider'] .select2-selection__rendered:hover .menu-status-label{color:#222 !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 option[disabled]:not([data-label]){color:#555}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-container input[type='text']:not(.dataTable-mirror):focus,html[data-background-style='nightRider'] .csf-container 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'] select#CSFlognum:not([data-encoding]):not([data-no-appearance]):not([multiple]),html[data-background-style='nightRider'] select.ui_select:not([data-encoding]):not([data-no-appearance]):not([multiple]),html[data-background-style='nightRider'] select:not([data-encoding]):not([data-no-appearance]):not([multiple]){background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 -144 1008 1008'%3E%3Cg transform='matrix(1 0 0 -1 0 864)'%3E%3Cpath fill='gray' d='M504 108l-252 454h504z'/%3E%3C/g%3E%3C/svg%3E") !important;background-size:12px 12px,12px 12px,0 0 !important;background-position:calc(100% - 2px) calc(100% - 8px) !important;background-repeat:no-repeat !important}html[data-background-style='nightRider'] select#CSFlognum:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus,html[data-background-style='nightRider'] select.ui_select:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus,html[data-background-style='nightRider'] select:not([data-encoding]):not([data-no-appearance]):not([multiple]):focus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 -144 1008 1008'%3E%3Cg transform='matrix(1 0 0 -1 0 864)'%3E%3Cpath fill='gray' d='M504 612l252 -454h-504z'/%3E%3C/g%3E%3C/svg%3E") !important}html[data-background-style='nightRider'] select:not([data-encoding]):not([data-no-appearance]):not([multiple]).heighter-34{background-position:calc(100% - 2px) calc(100% - 10px) !important}html[data-background-style='nightRider'] .__page .select2-content.select2-selection.select2-selection--single span,html[data-background-style='nightRider'] .__page .select2-content.select2-selection.select2-selection span{color:rgba(151,155,160,.94) !important}html[data-background-style='nightRider'] .__page .select2-content{border-color:rgba(78,81,87,.37) !important;background:#2f3237 !important}html[data-background-style='nightRider'] .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #777 transparent !important}html[data-background-style='nightRider'] .__page .select2-content-container.select2-container--open .select2-selection__arrow b{border-color:transparent transparent #555 transparent !important}html[data-background-style='nightRider'] .__page .select2-content .select2-selection__arrow b{border-color:#777 transparent transparent transparent !important}html[data-background-style='nightRider'] .select2-dropdown.select2-content{border-color:rgba(137,106,17,.74) !important;top:0;margin-top:-1px}html[data-background-style='nightRider'] .select2-dropdown.select2-content.select2-dropdown--above{border-top:1px solid rgba(137,106,17,.74) !important;margin-top:1px !important}html[data-background-style='nightRider'] .select2-dropdown.select2-content .select2-results{background-color:rgba(35,41,50,.95) !important}html[data-background-style='nightRider'] .select2-dropdown.select2-content .select2-search{background-color:rgba(48,51,58,.91) !important;border-bottom:1px solid rgba(95,95,95,.32) !important}html[data-background-style='nightRider'] .select2-dropdown.select2-content .select2-search input{border-color:#55555588 !important}.select2-container--default .select2-content .select2-results__option[aria-disabled='true'],.select2-container--default .select2-content .select2-results__option[aria-selected='true'],html[data-background-style='nightRider'] .select2.select2-content-container.select2-container--open .select2-content,html[data-background-style='nightRider'] .select2.select2-content-container.select2-container--focus .select2-content{border-color:rgba(137,106,17,.74) !important}html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option[aria-disabled='true'],html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option[aria-selected='true'],html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option--highlighted[aria-selected],html[data-background-style='nightRider'] .select2-content .select2-results ul li:active,html[data-background-style='nightRider'] .select2-content .select2-results ul li:focus,html[data-background-style='nightRider'] .select2-content .select2-results ul li:hover,html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option--highlighted[aria-selected]:active,html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option:hover,html[data-background-style='nightRider'] .select2-container--default .select2-content .select2-results__option:focus{background-color:rgba(150,150,150,.25) !important;color:rgba(239,239,239,.82) !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:rgba(58,60,65,0.45);border-color:transparent}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}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}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dd{border-left-color:#383a3f;border-right-color:#383a3f}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dd:last-child{border-bottom-color:#383a3f}body[data-uri*='virtual-server/restore.cgi'] .panel-body form dl>dt{color:#777;border-color:#383a3f;border-width:1px;background-color:transparent}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):not(pre.comment){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'][data-theme='gunmetal'] .favorites-menu-close{background:#791a1a}html[data-background-style='nightRider'][data-theme='gunmetal'] .favorites-menu-close .favorites-menu-bar{background:rgba(250,250,250,0.6)}html[data-background-style='nightRider'][data-theme='gunmetal'] .favorites-menu-close:hover .favorites-menu-bar{background:rgba(250,250,250,75)}html[data-background-style='nightRider'] #system-status .panel-title>.extra_documentation_links{margin-top:-5px !important;border-color:#464c5796 !important}html[data-background-style='nightRider'][data-uri*='virtual-server/delete_domain.cgi'] font[size='+1']{color:#e6423ea6}html[data-background-style='nightRider'] .session-reauthenticate-container-center{background-color:rgba(37,37,37,0.70);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:#323333cc !important;border-color:#434444d6}html[data-background-style='nightRider'] .session-reauthenticate-container-center:before{opacity:.3}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}html[data-background-style='nightRider'] .th-server-sort a>img[src$="grey.gif"]{filter:hue-rotate(160deg) brightness(1.25)}@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:rgba(150,150,150,0.9);text-shadow:.25em 0 0 rgba(200,200,200,0),.5em 0 0 rgba(200,200,200,0)}60%{text-shadow:.25em 0 0 rgba(150,150,150,0.9),.5em 0 0 rgba(200,200,200,0)}80%,100%{text-shadow:.25em 0 0 rgba(150,150,150,0.9),.5em 0 0 rgba(150,150,150,0.9)}}html[data-background-style='nightRider'] .bottom_progress_level.success{background-color:#21795e8a}html[data-background-style='nightRider'] .bottom_progress_level.danger{background-color:#7d1f1f8a}html[data-background-style='nightRider'] .bottom_progress_overlay{color:rgba(255,255,255,0.4)}html[data-background-style='nightRider'] .bottom_progress_lane{border-right:1px solid rgba(138,138,138,0.25);background-color:rgba(25,25,25,0.80)}html[data-background-style='nightRider'] .text-semi-dark.text-dark-hoverd-red:hover,html[data-background-style='nightRider'] .text-dark.text-dark-hoverd-red:hover{color:rgba(200,60,60,0.57) !important}html[data-background-style='nightRider'] .file-manager #upload-form{border:3px dashed rgba(77,80,87,.28);background-color:rgba(65,67,71,.21);-webkit-box-shadow:none !important;box-shadow:none !important}html[data-background-style='nightRider'] .file-manager #upload-form p{color:#7c7c7c}html[data-background-style='nightRider'] .file-manager #content .btn-group>.dropdown-toggle{margin-left:0 !important}html[data-background-style='nightRider'] .file-manager #content .btn-group.pull-right>.btn.btn-inverse:hover,html[data-background-style='nightRider'] .file-manager #content .btn-group>.dropdown-toggle:hover{background-color:rgba(82,77,77,0.13) !important}html[data-background-style='nightRider'] .file-manager #content .btn-group.pull-right>.btn.btn-inverse:hover:not(:first-child){border-left-color:transparent !important}html[data-background-style='nightRider'] .file-manager .ui_checked_columns:hover>.ui_checked_checkbox:nth-child(1)+td>a:before{color:#ccc}html[data-background-style=nightRider] .file-manager .data-content-container>[data-tree-view]{border-color:#eeeeee10;border-top-width:1px}html[data-background-style=nightRider] .file-manager .fancytree-container.fancytree-treefocus span.fancytree-node:hover{background-color:#393737}html[data-background-style=nightRider] .file-manager .fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-focused,html[data-background-style=nightRider] .file-manager span.fancytree-node.fancytree-active{background-color:#3d353b}html[data-background-style=nightRider] .file-manager ul.fancytree-container .fancytree-statusnode-nodata .fancytree-title{color:rgba(151,155,160,.82) !important}html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle,html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear{color:#eeeeee40}html[data-background-style='nightRider'] .file-manager ul.fancytree-container mark{color:#44b96c75;background-color:#9a937d0f}html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .clear_delimiter,html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle:hover .clear_delimiter,html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear:hover .clear_delimiter{color:#eeeeee40}html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_toggle:hover,html[data-background-style='nightRider'] .file-manager .data-content-container>[data-tree-view]+.tree-view-filter .filter_fancytree_clear:hover{color:rgba(238,153,17,.60)}html[data-background-style='nightRider'] tr:not(:hover) .f__lnk_t_btn-el:not(.btn-dnwo){color:#7f8286 !important;border-color:#62666f !important}html[data-background-style='nightRider'] .input_warning_caps{color:rgba(210,46,46,0.67)}html[data-background-style='nightRider'] .cke_bottom,html[data-background-style='nightRider'] .cke_top{background:#2f3238 !important;border-color:rgba(0,0,0,0)}html[data-background-style='nightRider'] .cke_combo:after,html[data-background-style='nightRider'] .cke_toolgroup a.cke_button:last-child:after,html[data-background-style='nightRider'] .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right-color:transparent}html[data-background-style='nightRider'] .cke_toolbar_separator{display:none}html[data-background-style='nightRider'] .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,html[data-background-style='nightRider'] .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,html[data-background-style='nightRider'] .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,html[data-background-style='nightRider'] .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,html[data-background-style='nightRider'] .cke_combo_on a.cke_combo_button,html[data-background-style='nightRider'] .cke_combo_on a.cke_combo_button:hover,html[data-background-style='nightRider'] .cke_combo_on a.cke_combo_button:focus,html[data-background-style='nightRider'] .cke_combo_on a.cke_combo_button:active,html[data-background-style='nightRider'] .cke_combo_off a.cke_combo_button,html[data-background-style='nightRider'] .cke_combo_off a.cke_combo_button:hover,html[data-background-style='nightRider'] .cke_combo_off a.cke_combo_button:focus,html[data-background-style='nightRider'] .cke_combo_off a.cke_combo_button:active{color:#929292;padding:0;margin-left:-1px;margin-top:1px}html[data-background-style='nightRider'] a.cke_button_off:hover,html[data-background-style='nightRider'] a.cke_button_on:hover,html[data-background-style='nightRider'] a.cke_button_on{border-color:#8e8e8eb5}html[data-background-style='nightRider'] .cke_combo_button{border:1px solid #4a4e5398;background:#3c3d42}html[data-background-style='nightRider'] .cke_combo_text{color:#888d90}html[data-background-style='nightRider'] .cke_button_label{color:#c6c4c4}html[data-background-style='nightRider'] .cke_button_arrow,html[data-background-style='nightRider'] .cke_combo_arrow{border-top:3px solid #a9a9a9}html[data-background-style='nightRider'] .cke_button_on,html[data-background-style='nightRider'] a.cke_button_off:active,html[data-background-style='nightRider'] a.cke_button_off:focus,html[data-background-style='nightRider'] a.cke_button_off:hover{background:rgba(238,153,17,.20) !important}html[data-background-style='nightRider'] .cke_contents,html[data-background-style='nightRider'] .cke_float .cke_top,html[data-background-style='nightRider'] .cke_chrome{border:1px solid #3d3f43 !important;background:#2f3238 !important}html[data-background-style='nightRider'] .cke_toolgroup{border:1px solid #414448;background:#393b40}html[data-background-style='nightRider'] a[class*="cke_button_"]{filter:invert(100%) brightness(80%)}html[data-background-style='nightRider'] a[class*="cke_button_"] span{color:#222 !important} /* Authentic Theme patch for dak themes. End. */ diff --git a/unauthenticated/js/bundle.min.js b/unauthenticated/js/bundle.min.js index 787e386a5..eef118be7 100644 --- a/unauthenticated/js/bundle.min.js +++ b/unauthenticated/js/bundle.min.js @@ -231,19 +231,19 @@ function(t,e){"object"==typeof module&&module.exports?module.exports=e():"functi Array.prototype.includes||Object.defineProperty(Array.prototype,"includes",{value:function(e,t){if(null==this)throw new TypeError('"this" is null or not defined');var a=Object(this),n=a.length>>>0;if(0===n)return!1;for(var r=0|t,i=Math.max(r>=0?r:n-Math.abs(r),0);i-1&&navigator.userAgent&&!navigator.userAgent.match("CriOS");return e?a:n}},storage:{size:function(e){var t=new String,a=e?"MB":"KB";for(var n in window.localStorage)window.localStorage.hasOwnProperty(n)&&(t+=window.localStorage[n]);return t?((3+16*t.length/8192)/(e?1024:1)).toFixed(2)+" "+a:"Empty (0 "+a+")"}}},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,r,i=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,a=~e.indexOf("%2F")?"%2F":"/",n=e.split(a);return n.pop(),t=n.join(a),t?t:"/"},strUpFirst:function(e){return e.charAt(0).toUpperCase()+e.slice(1).toLowerCase()},strUpFirstEach:function(e){return e.replace(/\w\S*/g,function(e){return e.charAt(0).toUpperCase()+e.substr(1).toLowerCase()})},strUpInitial:function(e){return e.length?this.strUpFirst(e.toLowerCase()):e},json_to_query:function(e){return""+Object.entries(e).map(function(e){var t=e[0],a=e[1];return t+"="+encodeURIComponent(a)}).join("&")}},Core={var:{page_user_inactive:1,available_modules:0,navigation_select:!1,previous_request:new String,source_request:new String,allow_ui_features:1,slider_pinned:-1,navigation_pinned:-1,pjax_replace_contents:1,level:-1},get_global_vars:function(e,t){for(var a=t?{}:[],n=window,r=0;r-1},curModuleFileQuery:function(e,t,a){return $('body[class*="'+e+'"]').length&&v___location_file==t&&v___location_query&&v___location_query.indexOf(a)!==-1},curModuleFile:function(e,t){return $('body[class*="'+e+'"]').length&&v___location_file==t},curModule:function(e){return $('body[class*="'+e+'"]').length},updateModuleData:function(e,t,a){$.ajax({type:"POST",url:v___location_prefix+e,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);var n=$(e).find("form.ui_form");$.each(a,function(e,t){n.find('[name="'+e+'"]').val(t)}),setTimeout(function(){$.ajax({type:"POST",url:v___location_prefix+t,data:$(n).serialize(),dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0)},error:function(){}})},100)},error:function(){}})},getModuleData:function(e){return $.ajax({type:"POST",url:v___location_prefix+e,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0)},error:function(){}})},setModuleData:function(e,t){this.getModuleData(e).then(function(e){return $(e).find("form.ui_form").serializeArray()}).done(function(e){var a={};$.each($(e),function(){a[this.name]=this.value}).promise().done(function(){$.each(t,function(e,t){var n=$('[name="'+t+'"]');n.val(a[t]),n.is("select")&&n.find("[data-clear]").remove()})})})}},HTML={bottom_progress:function(e,t,a){return'
'+(a?'
':"")+'
'+(a?"":"1%")+(a?'':"")+'
'},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 r='
',i=0;i
'+a[i]+"
"}return r+="
"},page_content_preloader:function(e,t){return'
 '+e+'
'},reauthenticate:function(e){var t=Test.strContains(get_server_data("webprefix"),"servers/link.cgi")?1:0;return'

'+theme_language("theme_xhred_session_expired")+"

"+theme_language("theme_xhred_session_expired_details")+'
"}}},load={loaded:[],bundle:function($script,$css,callBack,callBackCalledNoEval){var head=$("head"),initial_name=$script,body=$("body"),callBack="object"==typeof callBack&&callBack,css=($css?1===$css?$script:$css:0)+"."+v___source_type+".css",js=$script+"."+v___source_type+".js";Test.strContains(initial_name,v___server_extensions_path)||Test.strContains(initial_name,v___server_js_path)||(css=v___server_css_path+"/"+css,js=v___server_js_path+"/"+js),load.loaded.includes(initial_name)||(o___gotten_scripts.push(js),this.loaded.push(initial_name),$css&&head.append(''),$.getScript(js+"?"+v___theme_version_plain,function(data,textStatus,jqxhr){callBack&&!callBackCalledNoEval?$.each(callBack,function(i2,v2){eval(v2)}):callBack&&callBackCalledNoEval&&2!==callBackCalledNoEval?$.each(callBack,function(e,t){t.call()}):callBack&&callBackCalledNoEval&&2===callBackCalledNoEval&&$.each(callBack,function(e,t){window[e].apply(null,t)})}))}},page={handle:{content:{offset:function(e){var t=Core.curModuleFileQuery("syslog","save_log.cgi","view=")||Core.curModuleFile("virtual-server","edit_html.cgi")||Core.curModuleFile("mysql","view_table.cgi")||Core.curModuleFile("postgresql","view_table.cgi")||Core.curModuleFile("mailbox","")||Core.curModuleFile("mailbox","index.cgi")||Core.curModule(v___module_file_manager)||v___page_hasEditor||!settings_enable_container_offset?0:1;if(!e)return t;var a=$(".container-fluid");page.handle.content.offset()?a.addClass("col-lg-10 col-lg-offset-1").removeClass("margined-top-15"):a.removeClass("col-lg-10 col-lg-offset-1").addClass("margined-top-15")},preloader:function(e,t){var a=this,n=$("#content"),r=$(".container-fluid"),i=$(".container-fluid-loading"),o=t?t:$("span[data-main_title]").text(),s=e===-2?"container-fluid-loading-persistent":0,l=HTML.template.page_content_preloader(o,s);return e!==-2&&i.length&&i.hasClass("container-fluid-loading-persistent")?void i.removeClass("container-fluid-loading-persistent"):e===-1?n.hasClass("progressing"):(i.length?(i.remove(),r.removeClass("invisible"),n.removeClass("progressing"),setTimeout(function(){progress.progress()&&progress.end()},100)):(n.addClass("progressing").prepend(l),r.addClass("invisible")),void(e&&e!==-2&&setTimeout(function(){a.preloader()},e)))}}},render:{content:{filter:{init:function(e,t){var a=this,n="container-fluid .nav.nav-tabs",r="dataTables_filter",i=$(".__page ."+r),o=$(".__page .panel-filter"),s=".panel-filter .panel.panel-default",l="filter-value",c="btn-filter-top-right",d="btn-accordion-filter",f=$("body");(i.length||o.length)&&setTimeout(function(){function t(t){var a=t.val(),o=$(".__page .panel-filter:visible");if(e)if(a){$.support.transition&&($.support.transition=!1),i.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");var f=o.find('.panel tbody tr:containsi("'+a+'")');f.removeClass("hidden-forged"),$.each($(s=" .hidden-dependent-skip"),function(e){$(this).hasClass("hidden-forged")?$(this).nextAll(".hidden-skip").addClass("hidden-forged"):$(this).nextAll(".hidden-skip").removeClass("hidden-forged")});var _=$(".__page .panel-filter:visible");$.each(_.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(a):$(this).find("tbody").append(''+theme_language("theme_xhred_filter_content_no_matches_query").replace("%str",""+a+"")+""):t.remove()})}else i.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{var u="."+r+" input";$("."+n).length?($(".nav-tabs li.active").data(l,a),$(".active "+u).val(a).trigger("keyup")):$(u).val(a).trigger("keyup")}var p="."+c+" span, ."+d+" span",g="."+c+" i, ."+d+" i";$.trim(a).length>0?($(p).removeClass("text-lighter"),$(g).addClass("text-danger")):($(p).addClass("text-lighter"),$(g).removeClass("text-danger"))}$("."+c).length||$("."+d).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",trigger:"hover",delay:{show:800,hide:30}}),a.clear(),$("."+n).length&&(e&&f.on("hide.bs.tab",'a[data-toggle="tab"]',function(e){a.clear()}),f.on("shown.bs.tab",'a[data-toggle="tab"]',function(e){var t=$(e.target).parent(".active");t.data(l)?$(".dataTable-mirror").val(t.data(l)).trigger("keyup"):$(".dataTable-mirror").val("").trigger("keyup"),a.visibility(c,d,"btn-toggle-accordions",n)})),f.undelegate(s,"shown.bs.collapse.config hidden.bs.collapse.config"),f.on("shown.bs.collapse.config hidden.bs.collapse.config",s,function(e){$(".container-fluid .collapsing").length||setTimeout(function(){var e=$(".container-fluid").find(".btn-toggle-accordions").find("i");o.find(".panel-collapse").length===o.find(".panel-collapse.in").length?e.addClass("fa-toggle-switch text-light"):e.removeClass("fa-toggle-switch text-light")},0)});var i=$(".btn-toggle-accordions");if(e)$(o).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")});else{$("."+r).hide()}$(".filter_mirror_clear").mousedown(function(e){$(e.target).is(".filter_mirror_clear")&&a.clear()}),$("."+c+", ."+d).click(function(e){!$(e.target).is("input")&&$(this).find("label").slideToggle(300,function(){$(this).find("input").focus()})}),i.click(function(e){e.stopImmediatePropagation();var t=$(this).find(".fa"),n=$(this).find(".fa-toggle-switch").length?1:0,r=$(".__page .panel-filter:visible");0===n?(r.find(".panel-collapse.in").length,r.find(".panel-collapse").length,r.find(".panel-collapse:not(.in):not(.collapsing)").filter(function(){$(this).removeData("bs.collapse").collapse({parent:!0,toggle:!1}).collapse("show").removeData("bs.collapse")})):r.find(".panel-collapse.in:not(.collapsing)").filter(function(){"true"!==$(this).attr("aria-static")&&$(this).collapse("hide")}),t.toggleClass("fa-toggle-switch text-light"),void 0!==e.originalEvent&&$("."+d+" input").val().length&&a.clear()});var _;$(".dataTable-mirror").keydown(function(e){var t=void 0!==e.originalEvent?200:0;76==e.keyCode&&e.ctrlKey?(e.preventDefault(),e.stopPropagation(),t?setTimeout(function(){a.clear()},t):a.clear()):t&&clearTimeout(_)}).on("keyup paste",function(e){var a=$(this),n=void 0!==e.originalEvent?200:0;$(".btn-filter-gl").tooltip("hide"),n?(clearTimeout(_),_=setTimeout(function(){t(a)},n)):t(a)}),$("."+c+" input, ."+d+" input").blur(function(e){$(this).parent("label").slideToggle(0)}),a.visibility(c,d,"btn-toggle-accordions",n)},0)},visibility:function(e,t,a,n){var r=$("."+e+", ."+t+", ."+a);$("."+n).length&&($(".active .dataTables_filter").length||$(".active #conf-_-gr").length)||!$("."+n).length&&($(".dataTables_filter").length||$("#conf-_-gr").length)?r.show():r.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"),a=t.parents(".table:visible"),n=a.parent("div.table-responsive:visible"),r=a.find("tbody > tr > td > table:visible"),i=0,o=1;$.each(r.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 t=$('tr[tj$=":0"]').map(function(){return $.trim($(this).text())});0===t.length&&(t.push(theme_language("theme_xhred_config_configurable_options")),o=0);for(var r=[],i=1;i tr[tj="0:1"]'),l='';l+=s.map(function(){return this.outerHTML}).get().join("\n"),l+="
",r[i-1]=l}var c="conf-_-gr";n.replaceWith(HTML.template.accordion(c,t,r,o?e:[2])),page.render.content.filter.init(1),$(".container-fluid > .panel > .panel-body").on("hide.bs.collapse show.bs.collapse","#"+c,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&&(Test.strContains(e.url,v___module_file_manager+"/config.cgi")||Test.strContains(e.url,v___module_file_manager+"/index.cgi")||Test.strContains(e.url,"save_config.cgi")||(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_percent={body:"body",control:function(e,t,a,n){var r=this;$(r.body).find(".bottom_progresses").length||$(r.body).append('
');var i=$(r.body).find(".bottom_progresses");if(!i.find('div[data-progress-id="'+e+'"]').length){if(i.append(HTML.bottom_progress(e,t,n)),n||i.find(".bottom_progress_horizontal").length){i=$(r.body).find(".bottom_progresses");var o=i.find('.bottom_progress:not(".bottom_progress_horizontal")').addClass("no-animation").detach();i.prepend(o)}i.find('div[data-progress-id="'+e+'"]').find(".bottom_progress_cancel").one("click",function(){var e=$(this).parent(),t=e.data("progress-id");e.find(".bottom_progress_level").removeClass("success").addClass("danger"),$(this).remove(),setTimeout(function(){e.remove(),0===i.find("div[data-progress-id]").length&&i.remove()},1e3),window["progress_id_ref_"+t].abort(),n&&window["progress_id_ref_"+t+"_tracker"].abort()})}var s=i.find('div[data-progress-id="'+e+'"]');if(s.find(".bottom_progress_level").css("height",a+"%"),n){var l=s.find(".bottom_progress_overlay"),c=".bottom_progress_";s.find(c+"filename").html(''+Convert.htmlEscape(Convert.textTruncate(Convert.htmlDecode(n[0]),24))).attr("title",Convert.htmlEscape(n[0])),l.find(c+"data").text($(Convert.htmlDecode(n[1])).text()),l.find(c+"percent").text(n[2]+"%")}else s.find(".bottom_progress_overlay").text(a+"%");100==a&&(s.find(".bottom_progress_cancel").remove(),setTimeout(function(){s.remove(),0===i.find("div[data-progress-id]").length&&i.remove()},1e3))}},progress={target:"body",element:"top-aprogress",progress:function(){return!settings_hide_top_loader},start:function(){var e=this;setTimeout(function(){e.progress()&&!$(e.target).find("."+e.element).length&&Core.var.allow_ui_features&&$(e.target).append('
')},100)},end:function(){0===v___theme_progress?$(this.target).find("."+this.element).remove():setTimeout(function(){v___theme_progress=0},0)}},session={reauthenticate:{start:function(){var e=this,t=e.target;!$("."+t).length&&$.ajax({type:"GET",url:v___location_prefix+"/index.cgi",data:!1,dataType:"text",success:function(a){var n=Test.strContains(a,v___page_signin_form+" pam_");if(!Test.strContains(a,v___page_signin_banner)){var r=$(a).find('input[name="twofactor"]').length,i=e.lock_targets,o=e.lock_type,s=$("body").find(".-shell-port-"),l='',c=$(a).find("._logo_welcome > img").attr("src");$(i).addClass(o),$("body").append(HTML.template.reauthenticate(t)),navigation_render_end(),navigation_detect(),reset_switch_position(),despinnerfy_buttons(),theme_shell_unlock(),theme_shell_close(s),r||$("."+t).find("[data-container-twofactor]").remove(),c&&$("."+t).append(""),$("."+t).find("form").on("submit",function(e){function r(e,a,n,r){if(a){var i="theme_xhred_session_failed"===theme_language(a,1)?theme_language("theme_xhred_session_failed_password"):a;i.endsWith(".")||(i+="."),i=i.replace(/\n/gm,""),_.text(i).addClass("text-danger").removeClass("loading-dots"),c.removeClass("disabled btn-transparent").addClass("btn-success");var o=$(r).find(".alert[data-twofactor]"),s=o.length?$("."+t).find('input[name="twofactor"]'):$("."+t).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 e&&!n&&(_.text(theme_language("theme_xhred_signing_success")).removeClass("text-danger").removeClass("loading-dots").addClass("text-success"),d.removeClass("fa-lock").addClass("fa-unlock fa-rotate-180 fa-flip-horizontal"),f.text(theme_language("theme_xhred_session_unlocked")),v___available_session=1,setTimeout(function(){session.reauthenticate.end()},1800))}if(e.preventDefault(),e.stopImmediatePropagation(),n){$("."+t).find('form input[name="user"]').attr("name","answer").val(get_server_data("user"))}var i=$(a).find("form").append(l),o=i.attr("action"),s=$("."+t).find("form").serialize(),c=$("."+t).find("[data-submit]"),d=$("."+t+"-header-icon i"),f=$("."+t+"-header-title h3"),_=$("."+t+"-header-title small");c.hasClass("disabled")||(_.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:o,data:s,dataType:"text",success:function(e){var a=$(e).find(".switch-toggle").text().length,i=$(e).find(".alert span").text(),s=i.length;if(n){var c=$(e).find("form").append(l),d=(c.find('input[name="answer"]').val($("."+t).find('input[type="password"]').val()),c.serialize());$.ajax({type:"GET",url:o,data:d,dataType:"text",success:function(e){a=$(e).find(".switch-toggle").text().length,i=$(e).find(".alert span").text(),s=i.length,r(a,i,s,e)}})}else r(a,i,s,e)}}))})}}})},end:function(){v___available_session=1,$("."+this.target).remove(),$(this.lock_targets).removeClass(this.lock_type)},target:"session-reauthenticate",lock_targets:"aside, aside .navigation, .form-control.sidebar-search, .container-fluid, .right-side-tabs, .right-side-tabs-toggler",lock_type:"pointer-events-none bg-filter-blur2-grayscale75-opacity75 disabled"}},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)},str_contains_multi:function(e,t){for(var a in t){var n=t[a];if(e.indexOf(n)>-1)return!0}return!1},arrContains:function(e,t,a){return void 0===a&&(a=0),e=$.inArray(t,e),a?e:-1=n},occurrences:function(e,t,a){if(e+="",t+="",t.length<=0)return e.length+1;for(var n=0,r=0,i=a?1:t.length;;){if(!((r=e.indexOf(t,r))>=0))break;++n,r+=i}return n},editing:function(){return $("input:focus").length||$("textarea:focus").length||$('[contenteditable="true"]:focus').length}},time={tictac:function(e,t){var a=t?"convertible-date-full":"convertible-timestamp-full",n=$("[data-"+a+"]");if(n.parent().contents().filter(function(){return 3===this.nodeType}).remove(),"undefined"!=typeof moment){if(t){var r=n.data(a);if(r){var i=new Date(r);n.data(a,i),i.setSeconds(i.getSeconds()+1),n.text(moment(i.toISOString()).format(config_portable_theme_locale_format_full))}}else n.data(a,parseInt(n.data(a))+1),n.text(moment.unix(n.data(a)).format(config_portable_theme_locale_format_full));!e&&setInterval(time.tictac.bind(null,1,t),1e3)}},localize:function(){function e(e,n){var r=e.tagName.endsWith((t+a).toUpperCase())?1:0,i=e.outerHTML.indexOf(";1")>-1?1:0,o=e.outerHTML.indexOf(";2")>-1?1:0,s=e.outerHTML.indexOf(";-1")>-1?1:0,l=$(e).text(),c=r?l.split(";")[0]:l,d=config_portable_theme_locale_format_short,f=config_portable_theme_locale_format_long,_=moment.unix(c).format("l"),_=_.indexOf("/")>-1?"/":_.indexOf("-")>-1?"-":".",u=moment.unix(c).format("LT"),p=o?moment.unix(c).format("YYYY["+_+"]MM["+_+"]DD")+" "+u:moment.unix(c).format(i?f?f:"LL":d?d:"L");if(s){var g=moment(c).fromNow();u=g,p=g}var h={sameElse:"LLL"};if(n)return r?p:u;$(e).replaceWith(r?"-1?' data-placement="auto top" data-container="body" data-toggle="tooltip" data-title="'+(s?moment(c).calendar(null,h):moment.unix(c).fromNow())+'"':"")+">"+p+"":u)}var t="-",a="d",n="x"+t+"md"+t;$.each($(n+a).add(n+"t").add($("td:contains("+(n+a)+")").last()).add($("td:contains("+n+"t)").last()).add("option:contains("+(n+a)+")").add("option:contains("+n+"t)"),function(a,r){if(r.tagName.startsWith(n.toUpperCase()))e(r,0);else{var i=$(r).text(),o=Convert.htmlUnEscape(i),s="";$.each($(o),function(a,n){$(n)[0].tagName&&$(n)[0].tagName.startsWith(("x"+t+"md").toUpperCase())&&(s+=e($(n)[0],1)+" ")}).promise().done(function(){$(r).text(s)})}})}},theme={update:function(e,t){function a(){n.removeClass("pointer-events-none bg-filter-blur-grayscale-opacity50")}var n=$(".container-fluid").add($("aside")).add($("#right-side-tabs")).add($(".right-side-tabs-toggler")),r=1===e?"-release":"-beta";n.addClass("pointer-events-none bg-filter-blur-grayscale-opacity50"),set_onbeforeunload_status(1,0),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="+r+"&xhr-update-force="+t,data:!1,dataType:"json",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(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_theme_temp_data("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()):e[0]&&e[0].incompatible?(theme_messenger(''+e[0].incompatible,120,"error","themeUpgrade"),a()):(theme_messenger(''+theme_language("theme_xhred_git_patch_update"),20,"error","themeUpgrade"),a())},error:function(e){theme_messenger(''+theme_language("theme_xhred_git_patch_update"),20,"error","themeUpgrade"),a()},complete:function(e){set_onbeforeunload_status(0,0)}})},version:function(){return v___theme_version},visibility:function(e){0===v___theme_visibility_check&&(v___theme_visibility_check=1,0===e||"object"==typeof stats&&stats.general.enable(),setTimeout(function(){v___theme_visibility_check=0},0))}},quirks={active_element:function(){return document.activeElement&&$(document.activeElement).is("body")?v___page_activeElement:document.activeElement}},regex={matches:function(e,t,a,n){a||(a=1);for(var r,i=[];r=t.exec(e);)i.push(r[a]);return n&&(i=i.slice(-1)[0]),i}},snippet={inject_extra_option:function(e,t,a,n){if("tr/yes:no"===e){var r=$("body"),i=t.parents("form") ;t.parents("td.col_value").parent("tr").after(' '+n+' ");var o="submit."+a;r.off(o),r.one(o,i,function(){var e=Test.true($("[name="+a+"]:checked").val());window[a]=e,theme_config_store()})}}},XHR={headers:function(e){return[e.getAllResponseHeaders(),e.getResponseHeader("content-type"),e.getResponseHeader("content-disposition"),e.getResponseHeader("content-length")]}};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=l.toLowerCase(),l.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-1?0:1)?e.serialize():new FormData(e[0])}function page_extended(){return"settings-logos.cgi"===v___location_file||"settings-logos_save.cgi"===v___location_file||"settings-backgrounds.cgi"===v___location_file||"settings-backgrounds_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 check_bundle(e){(Test.strContains(e,"/mysql/")||Test.strContains(e,"/postgresql/"))&&get_bundle_sql(),Test.strContains(e,"/"+v___module_file_manager+"/")&&get_bundle_file_manager(),Test.strContains(e,"/csf/")&&get_bundle_csf()}function get_bundle_csf(){var e=$("head"),t=v___server_extensions_path+"/csf/csf."+v___source_type+".css",i=v___server_extensions_path+"/csf/csf."+v___source_type+".js";Test.arrContains(o___gotten_scripts,i)||(e.append(''),o___gotten_scripts.push(i),$.getScript(i+"?"+v___theme_version_plain,function(e,t,i){}))}function get_bundle_file_manager(e){var t=($("head"),v___server_extensions_path+"/file-manager/file-manager."+v___source_type+".js");Test.arrContains(o___gotten_scripts,t)||(o___gotten_scripts.push(t),$.getScript(t+"?"+v___theme_version_plain,function(t,i,a){e&&___f__tw()}))}function get_bundle_sql(){var e=($("head"),v___server_extensions_path+"/sql."+v___source_type+".js");Test.arrContains(o___gotten_scripts,e)||(o___gotten_scripts.push(e),$.getScript(e+"?"+v___theme_version_plain,function(e,t,i){}))}function theme_open_new_tab(e,t){1!==t&&(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="] '),function(){$(this).addClass("--to-new-tab")})}function theme_reload(e){window.location.href=e?navigation_trigger(v___location_resource,2):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))return void(v___available_session=0);$("body").prepend(t);var i=$("#update_notice");e&&i.addClass("r"),i.modal("show")},error:function(e){}})}function theme_inject_tooltip(e,t,i,a,n){var s=v___initial_load?3e3:0,o=e;return e=theme_language(e)||e,t||(t="body"),i||(i="auto top"),a||(a="tooltip"),n||(n=600),s&&setTimeout(function(){var e=$('[data-target-tooltip-callback="'+o+'"]');e.attr("data-title",theme_language(o)),e.tooltip({container:t,placement:i,trigger:"hover",delay:{show:n,hide:20}})},s),' data-container="'+t+'" data-placement="'+i+'" data-toggle="'+a+'" data-title="'+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 if(($t_uri_virtualmin||$t_uri_cloudmin)&&$("aside select option:checked").text()&&$("aside select option:checked").text().length)if(e&&e.length){var i=$("#webmin_search_form").parent("li").prevAll();i.has(".sub_active, .current-large").length?document.title=$("aside select option:checked").text()+" - "+e+" — "+v___title_initial:document.title=e+" — "+v___title_initial}else document.title=get_navigation_module_name()+" — "+v___title_initial;else $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 a=$(".right-side-tabs .list-group-item:not(.no-notifications, .opacity-0_3)").length;settings_side_slider_enabled&&settings_side_slider_notifications_enabled?titlenotifier.set(a):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","settings-user.cgi"],v___location_file))return void navigation_clear();if(!v___blocked_navigation){if(void 0===t){var i=1,a=0,n=$('.navigation a[href*="'+v___location_path+'"]:not([data-parent-hidden]):first');$('.navigation a[href="'+v___location_resource+'"]:not([data-parent-hidden]):first, .navigation a[href*="'+navigation_trigger(v___location_path,2)+'"]:not([data-parent-hidden]):first').length?(e=v___location_resource,a=1):$('.navigation a[href^="'+v___location_resource+'"]:not([data-parent-hidden]):first').length?(e=v___location_resource,i=0):Test.strContains(v___location_file,"cgi")&&n.length&&(e=n.attr("href"),i=0,"save_log.cgi"===v___location_file&&Test.strContains(v___location_query,"error")&&Test.strContains(e,"_log")&&(Test.strContains(e,"file=")||Test.strContains(e,"extra="))&&(e=$('.navigation a[href*="'+v___location_path+'"][href*="error"]:not([data-parent-hidden]):first').attr("href")));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&&"uconfig.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":$t_uri_webmail?v___location_prefix+"/uconfig.cgi?mailbox":v___location_prefix+"/"+v___location_query+"/");var s=$t_uri_webmin||$t_uri_usermin;if(!e&&s)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 o=new RegExp("^"+v___location_prefix,"i");e=get_server_data("data-uri").replace(o,"").split("/").filter(function(e){return 0!==e.length})[0],e=v___location_prefix+"/"+e}targeted_menu_link=a?$('.navigation a[href="'+e+'"]:not([data-parent-hidden]):first, .navigation a[href="'+navigation_trigger(e,2)+'"]:not([data-parent-hidden]):first'):$('.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(),bind_sameorigin(1),theme_to_new_tab()}function navigation_display(){"none"==$("aside").css("transform")&&"1"!=$("html").attr("data-navigation-collapsed")&&($("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(e,t){var i="mobile-menu-toggler",a=$(quirks.active_element()).is('input[name="settings_navigation_always_collapse"]');if(e&&(a=1),t)return $("."+i).addClass("selected").find("button").addClass("btn-primary").removeClass("btn-default"),void $("."+i).css("transform","translate("+settings_leftmenu_width+"px, 0px)");"function"==typeof jQuery().transition&&$("."+i+":visible").length&&$("."+i).attr("style")&&$("."+i).attr("style").indexOf("ease")==-1&&($(".__logo")&&$(".__logo").transition({y:0},1.5*$settings_animation_left_slide_time),$("aside, ."+i).transition({x:0},a?0:$settings_animation_left_slide_time,function(){$("."+i).removeClass("selected"),$(".switch-toggle").css("display","none"),$("aside").addClass("hidden-xs")}))}function navigation_init_select(e){$(".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&&t.indexOf("↱")===-1?$(this).html("    â†± "+t.replace(/\s/g,"")):2===e&&t.indexOf("↴")===-1&&$(this).html("  â†´ "+t.replace(/\s/g,"")))}).promise().done(function(){var t=$("aside select");if(t.removeAttr("id"),t.length){t.removeAttr("onchange disabled"),!!t.data("select2")&&t.select2("destroy"),t.unbind("select2:select"),t.select2({minimumResultsForSearch:3});t.data("select2");e&&t.select2("open"),t.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))}),t.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)}}),$("body").find(".select2-container:not(.select2), "+v___class_select2_leak).addClass("select2-aside")}),t.on("select2:closing",function(e){$("body").find(".select2-container, "+v___class_select2_leak).removeClass("select2-aside")}),1===$("aside select option").length&&($(".select2 span").css("cursor","default"),$(".select2 .select2-selection__arrow").remove(),t.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_links(){setTimeout(function(){$("a[href]"+($__theme_event_deselectors+$__theme_default_deselectors)+':not(.--to-new-tab):not([href*="/file/"]):not([href*="history.cgi"])').each(function(){location.hostname!==this.hostname&&this.hostname.length||$(this).parents(".popover-content").length||$(this).attr("href",navigation_trigger($(this).attr("href"),2))})},400)}function navigation_trigger(e,t){if(void 0!==e)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()}}}),o={};$.each($('li:not(.menu-exclude):not(.user-link) > ul.sub:not([id^="global_"]) > li:not(.menu-exclude):not(.user-link) > a'),function(e,t){o[("/"==$(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()||(o[$(this).attr("data-href")]=$.trim($(this).text()))});var r=$.map(o,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()}}}),_={};$("aside select option").each(function(){_[$(this).val()+":::"+$(this).parent("select").attr("name")]=$.trim($(this).text())});var l=$.map(_,function(e,t){if("undefined"!=t)return{value:e,url:t,data:{category:$("aside select").data("autocomplete-title")}}}),c=l.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:c,onSelect:function(e,t){var i=$.Autocomplete.externalEvent;if(!$.isEmptyObject(i)){var a=i.keyCode?i.keyCode:i.which;if(i.ctrlKey||i.shiftKey||i.altKey||i.metaKey||20===a||32===a||33===a||34===a||35===a||36===a||37===a||38===a||39===a||40===a||45===a||46===a||112===a||113===a||114===a||115===a||116===a||117===a||118===a||119===a||120===a||121===a||122===a||123===a||144===a||145===a)return}if(navigation_dashboard_switch_available()===!0&&$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 a=$("body").find('a[href="'+e.url+'"]').attr("target");if(a&&"_parent"==a);else{var n=e.url.indexOf(v___location_prefix)>-1?e.url:v___location_prefix+e.url;if(Test.strContains(v___location_prefix,v___target_servers_index)&&n&&n.endsWith("/servers/"))return;get_onbeforeunload_status()?(t.preventDefault(),get_onbeforeunload_message([],{href:n})):get_pjax_content(n,["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||e==-1||""==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");var a=$("aside .select2-selection__rendered");if(!a.find(".menu-status-label").length){a.append(''+t+"");$("aside .select2-selection__rendered .menu-status-label").on("mouseover",function(){$(this).removeClass("bg-light-grey")}).on("mouseout",function(){$(this).addClass("bg-light-grey")}),a.on("mouseover",function(){$(this).find(".menu-status-label").removeClass("bg-light-grey")}).on("mouseout",function(){$(this).find(".menu-status-label").addClass("bg-light-grey")})}}}function navigation_form_control(e){var t=$("aside select"),i=t.data("select2");e||(Core.var.navigation_select=i&&"undefined"!=i&&!e&&t.select2("isOpen")),e?$.each($("aside").find("forms"),function(){$(this).replaceTagName("form")}).promise().done(function(){navigation_init_select(Core.var.navigation_select),navigation_select_label()}):(i&&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(){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+v___location_prefix,""),i=t.replace(v___module,"").replace(/^\/+/g,""),a=$('form[action*="'+t+'"]:visible'),a=a.length?a:$('form[action="'+i+'"]:visible'),n=t.match(/\w+.cgi/gi),a=a.length||!n?a:$('form[action*="'+n[0]+'"]:visible'),s=a.attr("method");if("multipart/form-data"===a.attr("enctype"))return"post";if(s)return s;if(!s){var s=$('form[action="'+t+'"]').attr("method"),s=s?s:$('form[action="'+URI(t).filename()+'"]').attr("method"),o=$('form[action="'+t+'"]').attr("enctype");return s||o?"multipart/form-data"===o?"post":s:"get"}}else if("object"==typeof e&&$(e).is("form")){var r=e,_=r.attr("method");return _?_:"get"}return e&&Test.strContains(e,".cgi?")&&!Test.strContains(e,"config.cgi?")?"GET":"POST"}function get_pjax_content(e,t,i){var a=void 0===i||i===!0||1==i;if(!get_onbeforeunload_status()){if(e&&unbuffered_header_processor_allow(e))return void unbuffered_header_processor(e,0);t="object"==typeof t?t:function(){},$type=!!$.isArray(t)&&$("",{href:e})[0],e=navigation_trigger(e,1),$.pjax({url:e,timeout:0,push:a,type:get_pjax_type($type?$type: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.getResponseHeader("Content-Disposition");if(!i||i.toLowerCase().indexOf("attachment")===-1){var a=t.responseText.replace(/)<[^<]*)*<\/body>/gim,"").replace(/)<[^<]*)*<\/head>/gim,"").replace("","").replace("","
");if(!!Test.strContains(a,"xhtml0")){var n=$(a).filter("#xhtml0");n[0]&&$(n[0].attributes).each(function(){"id"!==this.nodeName&&(this.nodeName,v___available_navigation&&"data-redirect"===this.nodeName&&this.nodeValue&&this.nodeValue.length>0&&"/"!=this.nodeValue&&this.nodeValue!="/?"+$__theme_navigation&&this.nodeValue!=location.origin+v___location_prefix+"/"&&this.nodeValue!=location.origin+v___location_prefix+"/?"+$__theme_navigation&&(!Test.strContains(this.nodeValue,"://")||Test.strContains(this.nodeValue,location.host))&&(history.replaceState({},null,navigation_trigger(this.nodeValue,2)),Core.var.previous_request=new String,Core.var.source_request=new String),get_server_data(this.nodeName,this.nodeValue),"data-slider-fixed"===this.nodeName&&Core.var.slider_pinned!==-1&&get_server_data(this.nodeName,Core.var.slider_pinned),"data-navigation-collapsed"===this.nodeName&&Core.var.navigation_pinned!==-1&&get_server_data(this.nodeName,Core.var.navigation_pinned),"data-title-initial"===this.nodeName&&theme_title_generate())}).promise().done(function(){if(uri_parse("directory",get_server_data("data-uri")).indexOf("/mailbox")>-1&&(!uri_parse("file",get_server_data("data-uri"))||uri_parse("file",get_server_data("data-uri")).indexOf("index.cgi")>-1))return mail_load(get_server_data("data-uri")),page_init(),!1;if(get_pjax_event_end_funcs(1),$.each($(".container-fluid img"),function(){var e=$(this),t=e.attr("src");!t||Test.strContains(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()}})}}}}function get_pjax_event_end_funcs(e){page_init(),e&&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),e&&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"),t=e.find('input:visible:not([readonly]):not([disabled]):not([type="radio"]):not([type="checkbox"]), textarea:visible:not([readonly]):not([disabled])');t.length&&!t.parents(".ui_buttons_table").length&&"config.cgi"!==v___location_file&&"uconfig.cgi"!==v___location_file&&"settings-user.cgi"!==v___location_file&&Core.var.page_user_inactive&&("domain_form.cgi"===v___location_file||Test.strContains(v___location_query,"new=")||e&&e.length&&(e.attr("action").startsWith("create")||e.attr("action").startsWith("add")||e.attr("action").startsWith("new")))&&t&&0===t.val().length&&t[0].focus()},400)}function get_pjax_action_submit(e,t){var i=void 0===t||t===!0||1==t;if(!get_onbeforeunload_status()){if(e&&!v___theme_force_buffered&&e.target&&e.target.action&&unbuffered_header_processor_allow(e.target.action))return void unbuffered_header_processor(e,1);v___theme_force_buffered=0;var a=quirks.active_element(),n=$(a).attr("name"),s=$.trim(a.value)?$.trim(a.value):$.trim(a.innerText),o=a.value,r=a.type,_=a.nodeName.toLowerCase(),l=$(e.target).find('[name="'+n+'"]'),c=l.attr("type");c&&c.length&&(c=c.toLowerCase()),("input"!==_||l.val()==o&&"submit"!==c)&&("button"!==_||$.trim(l.text())==s&&"submit"!==c)||"button"!==c&&"submit"!==c&&"submit"!==r||$('input[type="hidden"][name="'+n+'"][value="'+(s?s:o)+'"]').length||$('').attr({type:"hidden",name:n,value:s?s:o}).appendTo($(e.target)),Core.var.previous_request=e,Core.var.source_request=v___location_resource,v___theme_connection_triggered_origin=1,$.pjax.submit(e,"[data-dcontainer]",{timeout:0,push:i,type:get_pjax_type(e.target.action),fragment:"[data-dcontainer]"})}}function get_pjax_action_click(e,t,i){var a=void 0===i||i===!0||1==i;if(void 0!=$(t).attr("href")){if($(e.target).is(".gl-icon-select"))return e.preventDefault(),void $(t).trigger("contextmenu");if(t&&t.href&&unbuffered_header_processor_allow(t.href))return e.preventDefault(),void unbuffered_header_processor(t.href,0);if(!e||e.shiftKey||e.ctrlKey||e.metaKey||$(t).attr("href",navigation_trigger($(t).attr("href"),1)),e&&(e.shiftKey||e.ctrlKey||e.altKey||e.metaKey)&&setTimeout(function(){despinnerfy_buttons()},400),v___theme_connection_triggered_origin=1,e.target.href&&$(e.target).hasClass("page_footer_submit")&&e.target.href.includes(".cgi/")){var n=URI(e.target.href),s=n.directory();if(s&&s.includes(".cgi")){var o=s.split("/");o=o.filter(function(e){return!e.includes(".cgi")}),o=o.join("/"),e.target.href=e.target.href.replace(s,o)}}$.pjax.click(e,{timeout:0,push:a,type:get_pjax_type(t),container:"[data-dcontainer]",fragment:"[data-dcontainer]"}),Core.var.previous_request=e}}function get_onbeforeunload_message($eventData,$thisData,$justEval){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(){if(set_onbeforeunload_status(0,0),set_onbeforeunload_status(0,1),theme_config_check(),"object"==typeof progressive_request&&1===progressive_request.readyState&&progressive_request.abort(),"ev"===$justEval)return void eval($thisData);var switchStr="::switch::";if($thisData&&$thisData.href&&Test.strContains($thisData.href,"::switch::"))return void $('.switch-toggle input[id="'+$thisData.href.replace("::switch::","")+'"]').trigger("click");var $is_form=$($thisData).is("form");$is_form?$is_form&&get_pjax_action_submit($eventData):$thisData.href&&$thisData.href.length&&get_pjax_content($thisData.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,t){if(1!==Core.var.slider_pinned||e||!$(".right-side-tabs i.fa2-collapse-right:visible").length){var i=get_server_data("access-level"),a="body .right-side-tabs";"0"==i&&(e?($(a+"-toggler").addClass("hidden"),$(a).css("right","0px").addClass("right-side-tabs-fixed"),settings_side_slider_enabled&&get_server_data("data-slider-fixed","1")):(settings_side_slider_enabled&&(t?$(a+"-toggler").removeClass("hidden").addClass("opened").css("right","300px"):$(a+"-toggler").removeClass("hidden opened").css("right","0")),t?$(a).css("right","0px"):$(a).css("right","-302px"),$(a).removeClass("right-side-tabs-fixed"),get_server_data("data-slider-fixed","0")))}}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")||Test.strContains(a,"---forced")){if(_){var o=new RegExp(RegExp.quote(_),"g");$(this).parent().replaceText(o,l?l:"")}a&&a.indexOf("__center__")>-1&&$(i).parent().addClass("text-center").addClass("f__lnk_t_btn-el"),$(this).html(e+$(this).text().replace(/\.\.$/,"")+s).addClass(a).addClass("f__lnk_t_btn-el").removeClass("ui_link").prepend(n?'  ':""),$(this).parent(t).addClass("f__lnk_t_btn")}})}))})}function theme_toggle_night_mode(){function e(){v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"sysinfo.cgi"&&$(".__page .piechart").length?($.each($(".piechart"),function(){$(this).addClass("bg-filter-blur-grayscale-invert-opacity75").data("easyPieChart").update(0)}),theme_config("save",['get_pjax_content("'+v___location_prefix+'/sysinfo.cgi")',0])):theme_config("save")}function t(i){function a(){get_server_data("data-theme","gunmetal"),_.remove(),get_server_data("data-background-style","nightRider"),get_server_data("data-night-mode",1),v___theme_night_mode_enabled=1,v___theme_night_mode=1,v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"sysinfo.cgi"&&$(".__page .piechart").length||setTimeout(function(){progress.end()},201),e()}var n=document.styleSheets;try{if(!n[i]||!n[i].cssRules[0])return void setTimeout(function(){t(i)},200)}catch(e){if("SecurityError"!==e.name)return void setTimeout(function(){a()},800);return}a()}var i=$("body .user-link.palette-toggle"),a=i.find(".fa-sun").length?0:1,n=(get_server_data("data-night-mode"),get_server_data("data-default-theme")),s=settings_background_color,o=$("input, textarea").is(":focus");if((!v___available_navigation||!o)&&v___available_navigation&&!$("body").find(".modal.in:visible").length){if("object"==typeof CKEDITOR)for(var r in CKEDITOR.instances)$(CKEDITOR.instances[r].document.$).find("body").removeClass("dark nightRider"),1===a?($(CKEDITOR.instances[r].document.$).find("body").addClass("nightRider"),setTimeout(function(){$(CKEDITOR.instances[r].document.$).find("body").addClass("nightRider")},0)):Core.curModule("mailbox")||Core.curModule("mailboxes")||"monokai"!==settings_cm_editor_palette||($(CKEDITOR.instances[r].document.$).find("body").addClass("dark"),setTimeout(function(){$(CKEDITOR.instances[r].document.$).find("body").addClass("dark")},0));if(1===a){i.find(".fa-moon").removeClass("fa-moon").addClass("fa-sun vertical-align-middle"),progress.start(),$(document).find(".settings_navigation_color_toggle").addClass("hidden");var _=$("html").find('head link[href*="palettes"][data-palette]'),l=document.styleSheets.length+1;$("html").find("head").append(''),$("html").find("head").append(''),t(l)}else{$("body").find(".settings_navigation_color_toggle").removeClass("hidden"),i.find(".fa-sun").removeClass("fa-sun vertical-align-middle").addClass("fa-moon");var c=$("html").find('head link[href*="gunmetal"]');"white"!=get_server_data("data-default-theme")&&"blue"!=get_server_data("data-default-theme")&&$("html").find("head").append(''),get_server_data("data-theme",n),c.remove(),get_server_data("data-background-style",s),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,e()}}}function theme_shell_status(){return $("body").find(".-shell-port-").hasClass("opened")}function theme_shell_unlock(){v___shell_processing=0,$('.-shell-port- input[data-command="true"]').removeAttr("readonly")}function theme_shell_call_done(e,t,i){$(e).next("pre").remove(),theme_shell_adapt(),theme_shell_clear(t),i.scrollTop(i[0].scrollHeight),setTimeout(function(){v___shell_processing=0,__shell_commands__i__=0,t.removeAttr("readonly").focus()},100)}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"),v___module==v___module_file_manager&&"function"==typeof __f__state__changed&&__f__state__changed()}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(e,t,i){return e=e||"in-btn-md",t=t||"dark",i=i||"width:12px; height:12px; margin-right: 7px;",''}function despinnerfy_buttons(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;$.each($(".btn.disabled"),function(){var t=$(this),i=t.find(".cspinner_container"),a=i.prev("i.invisible");!e&&t.removeClass("disabled"),a.removeClass("invisible"),i.remove()})}function spinnerfy_buttons(e,t,i,a){var n=!!(e.attr("onclick")&&e.attr("onclick").indexOf("blank")!==-1||e.parents("form").attr("target")&&e.parents("form").attr("target").indexOf("blank")!==-1),s=e.hasClass("heighter-28"),o="28px"==e.css("height"),r=e.hasClass("btn-lg"),_=e.find(".fa").hasClass("fa-1_25x"),l=e.find(".fa"),c=void 0!==t&&0!=t&&t,d='',h='';setTimeout(function(){!n&&e.addClass("disabled")},10),l.length&&!n&&setTimeout(function(){e.hasClass("btn-default")?l.addClass("invisible").after(h):l.addClass("invisible").after(d)},10),void 0==typeof i&&(i=!1),void 0==typeof a&&(a=!1),(c[3]||i)&&setTimeout(function(){e.removeClass("disabled"),l.removeClass("invisible"),e.find(".cspinner_container").remove()},i?i:c[3]),a&&setTimeout(function(){progress.end()},400)}function theme_language(e,t){void 0===t&&(t=!1);var i=v___theme_language;return t?Convert.arrFlip(i)[$.trim(e)]:i[e]}function theme_config($action,callBack,$singleOptionToSaveName,$singleOptionToSaveValue){var callBack="object"==typeof callBack&&callBack,watched_options=["config_portable_module_csf_style_custom_promoted","config_portable_theme_charset_warning_shown","config_portable_theme_locale_language","config_portable_theme_locale_languages","config_portable_theme_locale_format_full","config_portable_theme_locale_format_long","config_portable_theme_locale_format_short","config_portable_module_xsql_fit_content_screen_height","config_portable_module_filemanager_records_per_page","config_portable_module_filemanager_default_sort","config_portable_module_filemanager_hide_tree_view","config_portable_module_filemanager_tree_expand_search","config_portable_module_filemanager_tree_view_depth","config_portable_module_filemanager_tree_exclude_on_first_load","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_force_tar","config_portable_module_filemanager_switch_user"];if("get_options"==$action)return watched_options;if("save"==$action&&$singleOptionToSaveName)return localStorage.setItem(v___server_hostname+"-"+$singleOptionToSaveName,$singleOptionToSaveValue),window[$singleOptionToSaveName]=$singleOptionToSaveValue,void theme_config("save");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,storeStorage.settings_font_family=settings_font_family,storeStorage.settings_navigation_color=settings_navigation_color,storeStorage.settings_grayscale_level_navigation=settings_grayscale_level_navigation,storeStorage.settings_sepia_level_navigation=settings_sepia_level_navigation,storeStorage.settings_saturate_level_navigation=settings_saturate_level_navigation,storeStorage.settings_hue_level_navigation=settings_hue_level_navigation,storeStorage.settings_invert_level_navigation=settings_invert_level_navigation,storeStorage.settings_brightness_level_navigation=settings_brightness_level_navigation,storeStorage.settings_contrast_level_navigation=settings_contrast_level_navigation,storeStorage.settings_background_color=settings_background_color,storeStorage.settings_cm_editor_palette=settings_cm_editor_palette,storeStorage.settings_enable_container_offset=settings_enable_container_offset,storeStorage.settings_contrast_mode=settings_contrast_mode,storeStorage.settings_right_page_hide_persistent_vscroll=settings_right_page_hide_persistent_vscroll,storeStorage.settings_button_tooltip=settings_button_tooltip,storeStorage.settings_hide_top_loader=settings_hide_top_loader,storeStorage.settings_animation_left=settings_animation_left,storeStorage.settings_animation_tabs=settings_animation_tabs,storeStorage.settings_sysinfo_link_mini=settings_sysinfo_link_mini,storeStorage.settings_show_night_mode_link=settings_show_night_mode_link,storeStorage.settings_theme_options_button=settings_theme_options_button,storeStorage.settings_leftmenu_button_refresh=settings_leftmenu_button_refresh,storeStorage.settings_hotkeys_active=settings_hotkeys_active,storeStorage.settings_mail_ui=settings_mail_ui,setTimeout(function(){$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-manage-config=1&save=1",data:storeStorage,dataType:"text",success:function(c){if(Test.strContains(c,v___page_signin_form))return void(v___available_session=0);setTimeout(function(){theme_config_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){if(Test.strContains(e,v___page_signin_form))return void(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}),theme_config_post_load()},error:function(){}})}}function theme_config_post_load(){moment.locale(config_portable_theme_locale_language&&"0"!=config_portable_theme_locale_language?config_portable_theme_locale_languages:get_server_data("language-full"))}function get_server_data(e,t,i){var a=$("html"),n=$("body"),s="data-"+e,o=e.replace("data-","");if(void 0!==i)e.startsWith("data-")?(a.removeAttr(e),a.removeData(o)):(a.removeAttr(s),a.removeData(e)),"data-uri"===e&&n.removeAttr(e);else{if(void 0===t)return e.startsWith("data-")?a.attr(e):a.data(e);e.startsWith("data-")?a.attr(e,t).data(o,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 connection_error(e,t){if(progress.end(),v___theme_ajax_error=1,(1===v___theme_connection_triggered_origin||t)&&(0===e.status||400===e.status||404===e.status||500===e.status||502===e.status||503===e.status)){$(".modal-connection-warning").length||this.called||(this.called=1,$.ajax({context:this,type:"GET",url:v___location_prefix+"/index.cgi/?xhr-error=1",data:!1,dataType:"text",timeout:3e3,success:function(){this.called=0},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_lost")+'',t,!1,"md","danger","unplugged fa-lg","7 modal-connection-warning",0),setTimeout(function(){0===v___theme_connection_reestablish&&(connection_reestablish(),v___theme_connection_reestablish=1,this.called=0,$(".modal-connection-warning").on("hidden.bs.modal",function(){v___theme_connection_reestablish=0,progress.end()}))},1),setTimeout(function(){navigation_render_end(),navigation_detect(),reset_switch_position(),despinnerfy_buttons(),theme_shell_unlock()},100)}}))}}function connection_reestablish(){var e="modal-connection-warning";$("."+e).length&&$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-check=1",data:!1,timeout:3e3,dataType:"text",success:function(t){$("."+e).find(".modal-header").removeClass("background-danger").addClass("background-success").find("h4").html('   '+theme_language("theme_xhred_connection_success")),$("."+e).find(".modal-body").html("

"+theme_language("theme_xhred_connection_success_details")+"

"),setTimeout(function(){$("."+e).modal("hide"),v___theme_connection_reestablish=0},2e3)},error:function(e){v___theme_connection_reestablish&&setTimeout(function(){connection_reestablish()},3e3)}})}function control_server_theme_temp_data(e,t,i,a,n,s){return $.ajax({type:"POST",url:v___location_prefix+"/index.cgi/?xhr-theme_temp_data=1&xhr-theme_temp_data_action="+e+"&xhr-theme_temp_data_name="+t+"&xhr-theme_temp_data_value="+(i?Convert.uriEncodeComponent(i):i)+"&xhr-theme_temp_data_keep="+a,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);"function"==typeof n&&(!e.length||e.length&&1===s)&&n()},error:function(e){}})}function get_server_theme_temp_data(e,t,i,a){return control_server_theme_temp_data("get",e,!1,t,i,a)}function set_server_theme_temp_data(e,t){control_server_theme_temp_data("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 get_navigation_module_folder_name(e,t){return $t_uri_webmin?"webmin":$t_uri_usermin?"usermin":$t_uri_dashboard?"dashboard":$t_uri_virtualmin?t?"virtualmin":e?"virtualserver":"virtual-server":$t_uri_cloudmin?t?"cloudmin":e?"servermanager":"server-manager":$t_uri_webmail?"mailbox":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_remove_progress(){despinnerfy_buttons(arguments.length>0&&void 0!==arguments[0]?arguments[0]:0),setTimeout(function(){get_server_theme_temp_data("redirected",0)},100),setTimeout(function(){progress.end()},600)}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"},"#jsPanel-replacement-container":{left:(v___available_navigation?settings_leftmenu_width-1:-2)+"px"}}),$("aside select").length&&Core.curModuleFile("webmin","edit_themes.cgi")&&!$.browser.mobile&&($("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: 1080px)").matches||"1"==$("html").attr("data-navigation-collapsed"))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(!Test.editing()&&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_navigation&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_slider&&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(!v___available_session)return void e.preventDefault();"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_navigation&&window.matchMedia("(min-width: 1080px)").matches&&(e.preventDefault(),$('aside [data-collapse-trigger="1"]').addClass("m").trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_slider&&window.matchMedia("(min-width: 1366px)").matches&&(e.preventDefault(),$('[data-trigger="side_slider_pinned"]').trigger("click")),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(),page_refresh());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 Core.var.level!==-1?parseInt(Core.var.level):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,s){var o=void 0===a?1:a,r=void 0===n||n,s=void 0===s?"":s;if("hide-all"===e)return void Messenger().hideAll();if($.isArray(e)&&(e=' '+e[1]),$.isArray(s)){var _=s;s="messenger-fixed ",s+="messenger-on-"+_.join(" messenger-on-")}else s=s.length?"messenger-fixed messenger-on-"+s:"messenger-fixed messenger-on-bottom";"function"==typeof Messenger&&(Messenger.options={extraClasses:s,theme:"air"},window["Messenger_"+o]=Messenger().post({message:e,extraClasses:s,hideAfter:t,showCloseButton:r,type:i,id:o}))}function theme_message_dismiss(e){void 0!==window["Messenger_"+e]&&window["Messenger_"+e].hide()}function theme_message_and_unlock(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:String(),n=arguments.length>4&&void 0!==arguments[4]?arguments[4]:"info",s=arguments.length>5&&void 0!==arguments[5]?arguments[5]:3,o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:0;theme_messenger(''+theme_language("theme_xhred_"+t)+" ",s,n,a,o),setTimeout(function(){page_remove_progress(i)},600)}function theme_alert(e,t,i,a,n,s,o,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===o||0==o)&&(o="7"),(void 0===r||0==r)&&(r=!1);var _=($.isArray(i),"modal-global-notification"),l='
";setTimeout(function(){$("body").hasClass("modal-open")||($("body").append(l),$("."+_).modal("show"),$("."+_).on("click",".modal-body a.label",function(e){$("."+_).modal("hide")}),$("."+_).on("hidden.bs.modal",function(e){$("."+_).remove()}))},r)}function theme_alert_charset(){var e=get_server_data("charset");if(e&&e.toLowerCase().indexOf("utf")===-1&&"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,t){function i(){"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"))}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;$(".ui_reset").remove();var a=$('.container-fluid textarea[name="data"], .container-fluid textarea[name="text"], .container-fluid textarea[name="directives"], .container-fluid textarea[name="manual"]').parents("form"),n=a.find('button[type="button"]').length?a.find('button[type="button"]'):a.find('input[type="submit"]'),s=$('.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();n.parents("table.ui_form_end_buttons").prev("br").remove(),n.parents("table.ui_form_end_buttons").prev("div.table-responsive").attr("style","margin-bottom: -4px !important"),n.replaceWith('\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t");var o=$('.container-fluid button[type="button"]:not(.ui_form_end_submit)'),r=$('.container-fluid button[type="submit"]:not(.ui_form_end_submit)');window.__cm_editor_static.on("change",function(e,t){__cm_editor_static.save(),o.addClass("btn-warning").removeClass("btn-success").attr("data-form-onbeforeunload",1),i()}),$("body").off("mousedown.cm1"),$("body").on("mousedown.cm1",".CodeMirror",function(e){i()}),$("body").off("keydown.cm1"),$("body").on("keydown.cm1",function(e){13==e.keyCode&&e.ctrlKey&&!e.shiftKey?o.trigger("click"):13==e.keyCode&&e.ctrlKey&&e.shiftKey&&r.trigger("click")});var _='button[type="submit"]:not(.disabled)';$("body").undelegate(_,"click.cm"),$("body").on("click.cm",_,function(e){set_onbeforeunload_status(0,0),$("button").addClass("disabled").find(".fa.fa-arrow-circle-o-left").addClass("invisible").after(''),o.attr("data-form-onbeforeunload",0)});var l='button[data-form="submitter"]:not(.disabled)';$("body").undelegate(l,"click.cm"),$("body").on("click.cm",l,function(e){e.preventDefault();var t=$(this),i=t.parents("form"),n=i.attr("enctype")&&i.attr("enctype").indexOf("form-data")>-1?0:1,s=n?i.serialize():new FormData(i[0]);$("button").addClass("disabled").find(".fa.fa-floppy-o").addClass("invisible").after(''),setTimeout(function(){$.ajax({type:"POST",url:a.attr("action"),data:s,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){return Test.strContains(e,v___page_signin_form)?void(v___available_session=0):(o.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"),o.removeClass("btn-success").addClass("btn-warning").attr("data-form-onbeforeunload",1),void $(".container-fluid > .panel > .panel-body").attr("data-cm-state","true")))},error:function(e){}})},300)}),editor_config_search(t)}}function editor_config_search(e){var t="dropdown-editor_config_search",i="[data-search-in-files-button]",a='[data-name="search-in-files"]',n="data-search-in-results-container",s="."+t,o=".panel-body form .select2",r="data-search-in-files-icon-find",_=theme_spinner_small(),l="data-no-results-initial",c="data-search-stats",d=0;setTimeout(function(){function e(){$("["+l+"]").removeClass("showing-results"),$(s).find("span.fa").removeClass("text-warning")}function h(){$("["+l+"]").addClass("showing-results"),$(s).find("span.fa").addClass("text-warning")}function f(e){e?$("["+c+"]").addClass("hidden"):$("["+c+"]").removeClass("hidden")}var g=$(o),p=g.prev("select"),u=p.attr("name"),m=g.parents("form").attr("action");if(g.addClass("z-index-10001"),!(p.find("option").length<=1)){g.parents("form").addClass("text-nowrap"),$(s).length||(g.after('
"),setTimeout(function(){var e=uri_parse_param("editor_search");e&&($(a).val(e).trigger("keydown"),setTimeout(function(){$(i).removeClass("disabled").trigger("click")}))}));var v=$("["+n+"]");v.find("a").on("click",function(e){e.preventDefault(),get_pjax_content($(this).attr("data-href")+v[0].scrollTop)}),$(s).find("li").on("click",function(e){e.stopPropagation()}),$(s).on("show.bs.dropdown",function(){var e=$(o).prev("select").prev('input[type="submit"]'),t=-1,i=$(o).width();i<360&&(t+=$(o)[0].offsetLeft-(e.length?14:11));var a=t+i+$(s).width();$(this).find(".dropdown-menu").css("min-width",a).css("max-width",a).css("width",a);var n=$(this).parents("form").outerWidth(),r=$(this)[0].offsetLeft;if(r
Line: '+i[1][1]+''+i[0]+""+i[1][0].replace(o,""+$.trim(e)+"")+""}).promise().done(function(){i.append(a),i[0].scrollTop=0,i.find("a").on("click",function(e){e.preventDefault(),get_pjax_content($(this).attr("data-href")+i[0].scrollTop)});var t,n=jQuery.unique(r).length;t=theme_language(1===r.length&&1===_?"theme_xhred_find_in_config_files_result_found_single":1===r.length&&_>1?"theme_xhred_find_in_config_files_result_found_multi":"theme_xhred_find_in_config_files_results_found"),t=t.replace("$1",_).replace("$2",n).replace("$3",""+e+""),$("["+c+"]").html(t)})}else i.append(""+theme_language("theme_xhred_filemanager_search_no_matches").replace(".","")+""),f(1),$(s).find("span.fa").removeClass("text-warning")},complete:function(){$("["+r+"]").removeClass("hidden")},error:function(){}})}})}})}function page_resized(){navigation_lock_width(),$(".mobile-menu-toggler").hasClass("selected")||"1"==$("html").attr("data-navigation-collapsed")||($("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(settings_side_slider_fixed!==!0||$(".mobile-menu-toggler:visible").length&&!Core.var.navigation_pinned||!v___available_navigation||settings_side_slider_fixed===!0&&window.matchMedia("(max-width: 1365px)").matches?0:1);var e=$('input[name="settings_leftmenu_width"]');if($(".mobile-menu-toggler:visible").length?e.prop("disabled",!0):e.prop("disabled",!1),v___location_path&&v___location_path.indexOf("/webmin/edit_themes.cgi")>-1){var t=!(!settings_navigation_always_collapse&&!window.matchMedia("(max-width: 1365px)").matches),i="false"!=$('input[name="settings_side_slider_enabled"]:checked').val();t&&!$.browser.mobile&&$('input[name="settings_side_slider_fixed"][value="false"], input[name="settings_side_slider_fixed_toggle"][value="false"]').trigger("click"),i&&$('input[name="settings_side_slider_fixed"], input[name="settings_side_slider_fixed_toggle"]').prop("disabled",t)}}function theme_config_store(){if("0"==v___user_level){var e=Core.get_global_vars(["settings_"],1);$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-settings=1&save=1",data:e,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0)},error:function(){}})}}function theme_config_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_config_check(){var e=v___location_path.indexOf("/webmin/edit_themes.cgi")>-1,t=v___location_path.indexOf("/settings-user.cgi")>-1,i="settings"+(t?"_"+get_server_data("user"):"")+".js",a=0,n=["settings_font_family","settings_navigation_color","settings_enable_container_offset","settings_contrast_mode","settings_right_page_hide_persistent_vscroll","settings_side_slider_enabled","settings_side_slider_fixed_toggle","settings_side_slider_sysinfo_enabled","settings_side_slider_notifications_enabled","settings_side_slider_favorites_enabled","settings_side_slider_palette","settings_navigation_always_collapse","settings_leftmenu_width","settings_leftmenu_user_html"];if(v___location_path&&(e||t)){var s=Core.get_global_vars(["config_","settings"]);$('script[src*="'+i+'"]').length?$.getScript(v___server_js_path+"/"+i,function(){for(var e=Core.get_global_vars(["config_","settings"]),t=0;t1&&void 0!==arguments[1]?arguments[1]:"backup_is_being_prepared",i=arguments.length>1&&void 0!==arguments[2]?arguments[2]:0,a=arguments.length>1&&void 0!==arguments[3]?arguments[3]:0,n=e.serialize(),s=e.attr("action"),o=e.attr("method");setTimeout(function(){$.download(s,n,o,a)},3300),theme_message_and_unlock("fa-download-cloud",t,i)}function theme_download_link(e){return v___module.includes("webminlog")&&Test.arrIntersect(["webminlog.csv"],e.url)||v___module.includes("software")&&Test.arrIntersect(["view.cgi"],e.url)||v___module.includes("mysql")&&Test.arrIntersect(["download.cgi"],e.url)||v___module.includes("postgresql")&&Test.arrIntersect(["download.cgi"],e.url)||v___module.includes("postfix")&&Test.arrIntersect(["detach_queue.cgi"],e.url)||v___module.includes("mailbox")&&Test.arrIntersect(["detach.cgi","detachall.cgi","slideshow.cgi"],e.url)||"view_mail.cgi"===v___location_file&&"1"==uri_parse_param("raw",e.url)?(theme_open_new_tab(e.url),1):0}function theme_unbind(e,t){$(e).off(t)}function bind_sameorigin(e){1===e?$.each($('aside ul.navigation a[href^="http"], aside ul.navigation a[href^="https"], aside ul.navigation a[href^="ftp"], aside ul.navigation a[href^="ftps"], aside ul.navigation a[data-href^="http"], aside ul.navigation a[data-href^="https"], aside ul.navigation a[data-href^="ftp"], aside 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")}):$.each($('.container-fluid a[href^="http"], .container-fluid a[href^="https"], .container-fluid a[href^="ftp"], .container-fluid a[href^="ftps"]'),function(){Core.linkSameOrigin($(this))||$(this).attr("target","_blank")})}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).length?$("#open_"+e).prop("checked",!0):$('.dynamic[name="product-switcher"]').first().prop("checked",!0)}),update_navigation_module_name())}function get_navigation_menu_webmin(e){v___initial_load;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(),"webmail"===e&&settings_mail_ui&&("object"==typeof mail?mail.folders.get():load.bundle(v___server_extensions_path+"/mail/mail",1,["mail.folders.get()"]))}}),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){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);$("body ul.user-links").html(e),theme_shell_link_control()}})}function get_default_content(){if(!get_onbeforeunload_status()){if(v___theme_processing_default_content)return void setTimeout(function(){v___theme_processing_default_content&&(v___theme_processing_default_content=0)},1001);v___theme_processing_default_content=1,$("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))return void(v___available_session=0);$("#____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);check_bundle(t),get_pjax_content(t,["success","v___theme_processing_default_content = 0"]),$("#____switch").remove()}})}}function get_default_virtualmin_content(e,t){if(!get_onbeforeunload_status()||t){if(v___theme_processing_default_content)return void setTimeout(function(){v___theme_processing_default_content&&(v___theme_processing_default_content=0)},1001);v___theme_processing_default_content=1;var i,a="/virtual-server" -;if(i=1==get_server_data("initial-wizard")?a+"/wizard.cgi":e!==!1?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,["success","v___theme_processing_default_content = 0"])}}function get_default_cloudmin_content(e,t){if(!get_onbeforeunload_status()||t){if(v___theme_processing_default_content)return void setTimeout(function(){v___theme_processing_default_content&&(v___theme_processing_default_content=0)},1001);v___theme_processing_default_content=1;var i;if(i=e===!1||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,["success","v___theme_processing_default_content = 0"])}}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 set_navigation_correspond_virtualmin(e){var e="object"==typeof e?e.attr("href"):e,t=URI.parseQuery(URI(e).query()).dom;t!=$('select[name="dom"]').val()&&get_navigation_menu_virtualmin(t)}function set_navigation_correspond_cloudmin(e){var e="object"==typeof e?e.attr("href"):e,t=URI.parseQuery(URI(e).query()).id,t=t?t:URI.parseQuery(URI(e).query()).d;t!=$('select[name="sid"]').val()&&get_navigation_menu_cloudmin(t)}function information_update(){if(!$("body .modal.in").length){if(!e)var e=get_server_data("webprefix");if(0==v___user_level){var t=$("body").find("#system-status"),i=t.length?t[0]:0;$("#right-side-tabs-sysinfo .graph-container").length||$("#right-side-tabs .info-container").html(get_right_panel_sysinfo_data());var a=$(".right-side-tabs-dismiss .fa-reload");a.addClass("fa-spin-fastest cursor-na"),setTimeout(function(){a.removeClass("fa-spin-fastest cursor-na")},3e3),$.ajax({type:"GET",url:e+"/index.cgi/?xhr-info=1",data:!1,dataType:"json",success:function(t){if(Test.strContains(t,v___page_signin_form))return void(v___available_session=0);t[0].is_data&&($.each(t[0],function(t,a){if("cpu_percent"!=t&&"mem_percent"!=t&&"virt_percent"!=t&&"disk_percent"!=t||(Test.numeric(a)?localStorage.setItem(v___server_hostname+"-sysinfo_"+t+"_stats",a):localStorage.setItem(v___server_hostname+"-sysinfo_"+t+"_stats","")),i){if($(i).find('span[data-id="sysinfo_'+t+'"]').html(a),"local_time"==t||"uptime"==t||"proc"==t){var n=$(i).find('span[data-id="sysinfo_'+t+'"]'),s=n.find("a").length?n.find("a"):n.find("span"),o=s,r=$(i).find('span[data-id="sysinfo_'+t+'"]').text();"local_time"==t?time.tictac(1,1):o&&o.length&&n.html(o.html(r))}if(page_sysinfo_sensor_update_label(),$(i).find('.piechart[data-charts="sysinfo_'+t+'"]').length){var _=$("body").find('.piechart[data-charts="sysinfo_'+t+'"]');_.length&&!isNaN(parseInt(a))&&_.data("easyPieChart").update(a)}"cpu_percent"!=t&&"mem_percent"!=t&&"virt_percent"!=t&&"disk_percent"!=t||localStorage.setItem(v___server_hostname+"-sysinfo_"+t+"_seen",a),$(i).find(".modal-backdrop").remove()}if($__id__=moment().unix(),"cpu_percent"==t||"mem_percent"==t||"virt_percent"==t||"disk_percent"==t||"csf_title"==t||"csf_remote_version"==t||"authentic_remote_version"==t||"package_message"==t?localStorage.getItem(v___server_hostname+"-sysinfo_"+t)||localStorage.setItem(v___server_hostname+"-sysinfo_"+t,a):a&&null!=a&&NaN!=a?localStorage.setItem(v___server_hostname+"-sysinfo_"+t,a):localStorage.setItem(v___server_hostname+"-sysinfo_"+t,""),localStorage.getItem(v___server_hostname+"-sysinfo_package_message_initial")||localStorage.setItem(v___server_hostname+"-sysinfo_package_message_initial",1),"authentic_theme_version"==t&&!localStorage.getItem(v___server_hostname+"-sysinfo_theme_current_version")&&a&&localStorage.setItem(v___server_hostname+"-sysinfo_theme_current_version",a.match(/^\d+|\d+\b|\d+(?=\w)/g)[0]+"."+a.match(/^\d+|\d+\b|\d+(?=\w)/g)[1]),"csf_data"==t&&!localStorage.getItem(v___server_hostname+"-sysinfo_csf_current_version")&&a&&localStorage.setItem(v___server_hostname+"-sysinfo_csf_current_version",a.match(/^\d+|\d+\b|\d+(?=\w)/g)[0]+"."+a.match(/^\d+|\d+\b|\d+(?=\w)/g)[1]),"csf_title"==t||"csf_data"==t||"csf_remote_version"==t||"authentic_remote_version"==t||"authentic_theme_version"==t||"package_message"==t){if("package_message"===t&&!Core.curModuleFile("package-updates","update.cgi")){if((localStorage.getItem(v___server_hostname+"-sysinfo_"+t)!=a||1==localStorage.getItem(v___server_hostname+"-sysinfo_package_message_initial"))&&a&&a.indexOf("badge-danger")>-1){var l=theme_language("theme_xhred_notifications_packages_updates"),c=$(a).html().replace(/badge-danger/g,"badge-success"),d=e+"/package-updates/index.cgi?mode=updates";localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_package_message",JSON.stringify({title:l,time:$__id__,timestamp:$__id__,message:c,readStatus:0,type:t,link:d})),slider_mark_group_notifications_read("package_message"),localStorage.setItem(v___server_hostname+"-sysinfo_"+t,a),localStorage.setItem(v___server_hostname+"-sysinfo_package_message_initial",0),notifications(l,c,t,d)}else"package_message"===t&&localStorage.setItem(v___server_hostname+"-sysinfo_"+t,a);$(a).find("i.badge:first-child").length||slider_mark_group_notifications_read("package_message")}var h=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"),h&&localStorage.getItem(v___server_hostname+"-sysinfo_authentic_remote_version")&&"authentic_remote_version"==t&&h',d=e+"/sysinfo.cgi";localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_authentic_remote_version",JSON.stringify({title:f,time:$__id__,timestamp:$__id__,message:g,readStatus:0,type:t,link:d})),localStorage.setItem(v___server_hostname+"-sysinfo_"+t,a),localStorage.setItem(v___server_hostname+"-sysinfo_theme_current_version",a),notifications(f,g,t,d)}if("authentic_theme_version"!==t||Test.strContains(a,"CHANGELOG.md")||slider_mark_group_notifications_read("authentic_remote_version"),settings_sysinfo_csf_updates){var p=localStorage.getItem(v___server_hostname+"-sysinfo_csf_current_version");if(p&&null!=p&&localStorage.getItem(v___server_hostname+"-sysinfo_csf_remote_version")&&"csf_remote_version"==t&&p-1&&1!=localStorage.getItem(v___server_hostname+"-sysinfo_csf_not_running")){var v=theme_language("theme_xhred_notifications_firewall_danger"),b=theme_language("theme_xhred_notifications_firewall_danger_message").replace("%v",moment.unix($__id__).format(config_portable_theme_locale_format_long)),d=e+"/csf/index.cgi?action=lfdstatus";localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_csf_title",JSON.stringify({title:v,time:$__id__,timestamp:$__id__,message:b,readStatus:0,type:t,link:d})),slider_mark_group_notifications_read("csf_title"),localStorage.setItem(v___server_hostname+"-sysinfo_csf_not_running",1),notifications(v,b,"csf_remote_version",d)}else a&&a.indexOf("label-danger")===-1&&(slider_mark_group_notifications_read("csf_title"),localStorage.removeItem(v___server_hostname+"-sysinfo_csf_not_running"))}if("csf_deny"==t){var x=JSON.parse(a);$.each(x,function(i,a){var a=a.split("|"),n=a[0],s=a[1],o=a[2],r=a[3],_=(a[4],a[5],a[6],a[7]);if(_=_.replace("*Port Scan*",o&&r?'Port '+r+" scan":"Port scan"),!localStorage.getItem(v___server_hostname+"-allowed_trigger_"+(n+s.replace(/\./g,"0"))+"_csf_deny")){var l=theme_language("theme_xhred_notifications_firewall_warning"),c=_+(o&&r?" ("+o+":"+r+")":""),d=e+"/csf/index.cgi?action=temp";localStorage.setItem(v___server_hostname+"-notifications_"+(n+s.replace(/\./g,"0"))+"_csf_deny",JSON.stringify({title:l,time:$__id__,timestamp:$__id__,message:c,readStatus:0,type:t,link:d})),localStorage.setItem(v___server_hostname+"-allowed_trigger_"+(n+s.replace(/\./g,"0"))+"_csf_deny",1),notifications(l,c,t,d)}})}if("cpu_percent"!=t&&"mem_percent"!=t&&"virt_percent"!=t&&"disk_percent"!=t||null!==localStorage.getItem(v___server_hostname+"-sysinfo_"+t+"_seen")&&a>=85&&localStorage.getItem(v___server_hostname+"-sysinfo_"+t+"_seen"),(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 y=!localStorage.getItem(v___server_hostname+"-sysinfo_"+t+"_stats"),w=$(".info-container .graph-container."+t);y?w.addClass("hidden").next("br").addClass("hidden"):w.removeClass("hidden").next("br").removeClass("hidden"),"cpu_percent"==t&&($("#right-side-tabs-sysinfo .graph-container."+t+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_cpu")).text(theme_language("theme_xhred_global_cpu_load")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_cpu_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_cpu")+")"),$("#right-side-tabs-sysinfo .graph-container."+t+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_cpu_percent_stats")+"%")),"mem_percent"==t&&($("#right-side-tabs-sysinfo .graph-container."+t+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_mem")).text(theme_language("body_real")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_mem_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_mem")+")"),$("#right-side-tabs-sysinfo .graph-container."+t+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_mem_percent_stats")+"%")),"virt_percent"==t&&($("#right-side-tabs-sysinfo .graph-container."+t+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_virt")).text(theme_language("body_virt")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_virt_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_virt")+")"),$("#right-side-tabs-sysinfo .graph-container."+t+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_virt_percent_stats")+"%")),"disk_percent"==t&&($("#right-side-tabs-sysinfo .graph-container."+t+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_disk")).text(theme_language("body_disk")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_disk_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_disk")+")"),$("#right-side-tabs-sysinfo .graph-container."+t+" .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="'+t+'"]').html(a),"package_message"==t&&Core.moduleAvailable("package-updates")){var k=a;$('#right-side-tabs .info-container .info-list-data span[data-data="'+t+'"]').html($(k).html($(k).html().split(",")[0])[0].outerHTML)}if("local_time"==t){var C=$('#right-side-tabs .info-container .info-list-data span[data-data="'+t+'"]'),O=C.find("a").length?C.find("a"):C.find("span");O&&O.length&&O.html(O.next("span").detach()),time.tictac(1,1)}if("cpu_temperature"==t){var T=0;$.each($(a).filter(".badge-cpustatus"),function(e,t){var i,n=parseInt($(this).text().split(":")[1]),s=n,o=$(this).text().indexOf("°C")>-1;i=$(this).text().indexOf("RPM")>-1?HTML.label.rpm(s):HTML.label.temperature(n,o),"bg-warning"!=i&&"bg-danger"!=i||(T=1),$("#right-side-tabs .info-container .badge-drivestatus.badge-cpustatus").length||$('strong[data-stats="cpu"] + br[data-stats="cpu"]').after(a.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(i+"-dark")}).promise().done(function(){T||"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"==t){var S=0;$.each($(a).filter(".badge-drivestatus:not(.badge-cpustatus)"),function(e,t){var i,n=parseInt($(this).text().split(":")[1]),s=$(this).text().indexOf("°C")>-1;i=HTML.label.temperature(n,s),"bg-warning"!=i&&"bg-danger"!=i||(S=1),$("#right-side-tabs .info-container .badge-drivestatus:not(.badge-cpustatus)").length||$('strong[data-stats="drive"] + br[data-stats="drive"]').after(a.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(i+"-dark")}).promise().done(function(){S||"undefined"!=typeof config_custom_force_display_drive_sensors?$('.info-container [data-stats="drive"]').removeClass("hidden"):$('.info-container [data-stats="drive"]').addClass("hidden")})}if("warning_si"==t){var M=$("#right-side-tabs .info-container .warning-list-data");M.html(a.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")),"
"==a&&M.empty()}if("extended_si"==t){var M=$("#right-side-tabs .info-container .extended-list-data"),I=a.replace(/aria-expanded="true"/gi,'aria-expanded="false"').replace(/collapse in/gi,"collapse");opened_tabs=$("#extended_sysinfo .panel .in").map(function(){I=I.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+'"'),I=I.replace('div id="'+this.id+'" class="panel-collapse collapse"','div id="'+this.id+'" class="panel-collapse collapse in"')}).promise().done(function(){M.html('
'+I);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");var t=e.find('[data-referrer="acl_logins"] .panel-body > table:first-child');t.removeClass().addClass("table table-striped table-hover"),t.wrap('
'),$("#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("+")})})}"collect_interval"==t&&(Test.numeric(a)?settings_side_slider_background_refresh_time=parseFloat(a):settings_side_slider_background_refresh_time=0),$.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)}),setTimeout(function(){slider_check_notifications()},3e3),time.localize())}})}settings_side_slider_enabled&&("number"==typeof iupdateTimer&&clearInterval(iupdateTimer),settings_side_slider_background_refresh_time>0&&(iupdateTimer=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_set(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,o=a.timestamp,r=a.message,_=a.readStatus,l=a.type,c=a.link,d=s+"_"+n;"csf_deny"===l&&(d=s+"_"+n.replace(/\W/g,"")+r.replace(/\W/g,"")),$current_localData_notifications[d]=i+"~~~~"+n+"~~~~"+s+"~~~~"+o+"~~~~"+r+"~~~~"+_+"~~~~"+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,o,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(){function e(){var e=theme_language("theme_xhred_notification_none");$(".right-side-tabs .list-group").prepend('
'+e.toUpperCase()+"
"),$(".right-side-tabs-no-notifications").animate({opacity:"1"},$settings_animation_left_slide_time,function(){})}var t=browser.detect.safari(1),i=t?2:0;0===$(".right-side-tabs .list-group-item").length&&(t?setTimeout(function(){e()},2):e()),setTimeout(function(){slider_display_notification_badges()},$settings_animation_left_slide_time+i)}function favicon_init(){var e=0;"object"==typeof favicon&&favicon.lastNum&&(e=favicon.lastNum),favicon=new Favico({animation:"none",fontFamily:"serif"}),favicon_set(e)}function favicon_set(e){favicon.badge(e),titlenotifier.set(e),favicon.lastNum=e}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_toolbar(e){var t;return t=[{name:"styles",items:["Font","FontSize","Format"]},{name:"basicstyles",items:["Bold","Italic","Underline","Strike","Subscript","Superscript"]},{name:"colors",items:["TextColor","BGColor"]},{name:"paragraph",items:["JustifyLeft","JustifyCenter","JustifyRight","JustifyBlock","-","NumberedList","BulletedList","-","Blockquote","-","Outdent","Indent","-","BidiLtr","BidiRtl","-","RemoveFormat"]}],"basic"===e?t:[{name:"document",items:["Source","-","Preview","Print"]},{name:"clipboard",items:["Undo","Redo"]},{name:"editing",items:["Find","-","Emojione"]},{name:"links",items:["Link","Unlink","Anchor"]},{name:"insert",items:["InsertPre","CreateDiv","-","Table","base64image","HorizontalRule","PageBreak","Iframe"]},{name:"forms",items:["Form","Checkbox","Radio","TextField","Textarea","Select","Button","ImageButton","HiddenField"]},{name:"tools",items:["ShowBlocks"]},"/"].concat(t)}function editor_html_init(e,t){function i(e){v___theme_night_mode_enabled||v___theme_night_mode?($(e).find("body").addClass("nightRider"),setTimeout(function(){$(e).find("body").addClass("nightRider")},0)):"basic"!==t&&"monokai"===settings_cm_editor_palette&&($(e).find("body").addClass("dark"),setTimeout(function(){$(e).find("body").addClass("dark")},0))}function a(){CKEDITOR.config.extraPlugins="emojione",CKEDITOR.config.dialog_noConfirmCancel=!0,CKEDITOR.config.toolbar=editor_html_toolbar(t);var a=get_server_data("language-full"),o=$(window).height()/e[1];CKEDITOR.replace(n,{language:a,width:"100%",baseFloatZIndex:20001,height:s?e[1]:o}),CKEDITOR.instances[n].on("instanceReady",function(t){function a(e){setTimeout(function(){i(e)},10),setTimeout(function(){i(e)},80),setTimeout(function(){i(e)},100),setTimeout(function(){i(e)},200),setTimeout(function(){i()},300)}t.editor.on("panelShow",function(e){v___theme_night_mode_enabled||v___theme_night_mode?$(e.data.element.$.children[0]).contents().find("body").addClass("nightRider"):$(e.data.element.$.children[0]).contents().find("body").removeClass("nightRider")}),t.editor.on("afterCommandExec",function(e){"source"===e.data.name&&1===e.data.command.previousState&&a(e.editor.document.$)}),a(t.editor.document.$),CKEDITOR.instances[n].resize("100%",s?e[1]:o,!1)}),CKEDITOR.instances[n].on("instanceReady",function(e){$(e.editor.document.$).click(function(){ -var t=$(e.sender.container.$).parents(".jsPanel").attr("data-uid");t&&t.length&&parent.window["jsp_"+parseInt(t.replace("jsp_",""))].front()}),e.editor.on("dialogShow",function(e){$(e.data._.element.$).find(".cke_dialog_ui_checkbox").removeClass().addClass("awcheckbox awobject"),$(e.data._.element.$).find(".cke_dialog_ui_checkbox_input").removeClass().addClass("iawobject").next("label").addClass("lawobject"),e.data._.name})}),e[2]===!0&&CKEDITOR.instances[n].on("change",function(t){this.updateElement(),set_onbeforeunload_status(1,0);var i=parseInt(e[3].replace("html_editor_",""))-1;$("#jsPanel-"+i).find("._filemanager_file_editor_save").addClass("text-danger __locked__"),$("#jsPanel-"+i).find("select[data-encoding]").addClass("pointer-events-none")}),"edit_web"===e[3]&&setTimeout(function(){$("hr + b").removeClass("hidden"),$(".__tmp__spinner").remove()},100)}var n,s=!Test.string(e[0]);s?e[3]:e[0];s?(n="__hm_editor_"+e[3],e[0].attr("id",n)):n=e[0],"object"==typeof CKEDITOR?a():(progress.start(),CKEDITOR_BASEPATH=v___server_js_path+"/ckeditor/",$.getScript(v___server_js_path+"/ckeditor/ckeditor.js?"+v___theme_version_plain,function(e,t,i){a(),progress.end()}))}function table_proc_size_columns(){var e=[];$.each($(".container-fluid tr td"),function(){var t=$(this).parents("table"),i=$(this).find("span[data-filesize-bytes]"),a=$(this).index();i.length&&($(this).attr("data-order",i.attr("data-filesize-bytes")),!Test.arrContains(e,a)&&e.push(a),t.attr("data-ordered",1),i.contents().unwrap())}).promise().done(function(){for(var t=0;t-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 mail_load_folders(){this.timeout&&clearInterval(this.timeout),"object"==typeof $.ui&&"function"==typeof $.ui.fancytree&&"object"==typeof mail&&"object"==typeof mail.folders&&"function"==typeof mail.folders.get?mail.folders.get():this.timeout=setTimeout(function(){mail_load_folders()},200)}function mail_load(e){if($t_uri_webmail&&settings_mail_ui){page.handle.content.offset(!0);var t=uri_parse_param("id",e),i=uri_parse_param("folder",e),a=uri_parse_param("start",e);if("object"==typeof mail?mail.messages.get({id:t,folder:i,start:a}):load.bundle(v___server_extensions_path+"/mail/mail",1,["mail.messages.get()"]),v___initial_load){var t=uri_parse_param("id");"object"==typeof mail?mail.messages.get(t):load.bundle(v___server_extensions_path+"/mail/mail",1,["mail.messages.get()"])}}}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){if(Test.strContains(e,v___page_signin_form))return void(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="'+e+'"]').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,t=$("#favorites-menu .favorites-menu-content li:not(.exclude) a").map(function(e,t){return navigation_trigger($(t).attr("href"),1)}).toArray(),i=$("#headln2c > .favorites, .xcustom-favorites"),a=navigation_trigger(URI(v___location).resource(),1);e=a.includes("index.cgi")?a.replace("index.cgi",""):a+"index.cgi",$.inArray(a,t)>-1||$.inArray(e,t)>-1?i.addClass("fa-star").removeClass("fa-star-o"):i.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,o=a.indexOf("°C")>-1;i=a.indexOf("RPM")>-1?HTML.label.rpm(s):HTML.label.temperature(n,o),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]")||Test.strContains(v___location_path,"init/edit_")||$("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){var i="MacIntel"===window.navigator.platform?1:0;if(!(!i&&e.ctrlKey||i&&e.metaKey))if($(e.target).is(".awobject, .iawobject, .lawobject, .awcheckbox, .awradio, .ui_link, .btn")){if($(e.target).is(".ui_link, .btn")){e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation();var a=$(e.target).attr("href")||$(e.target).find("a").attr("href");if(a&&a.length>1){var n=$(e.target)||$(e.target).find("a");Core.linkSameOrigin(n)?get_pjax_content(a):theme_open_new_tab(a,1)}return}}else if($(t).find("a[href]")&&!$("body").hasClass("servers")){var s=$(t).find("a[href]")[0],o=($(this).parents("tr.ui_checked_columns"),$(e.target).find('input[type="checkbox"]:not(":disabled")')),r=o.length;!s||$(this).find("a").attr("href")!==$(s).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||($(s).attr("target")?(e.preventDefault(),!r&&window.open($(s).attr("href"),$(s).attr("target"))):e.originalEvent&&(e.preventDefault(),get_pjax_content($(s).attr("href")))),r&&get_pjax_content($(s).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")&&1!==$(this).hasClass("_select-unselect_")){$(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=$.trim((a?$___text.nodeValue:" ").replace(/
/g,"<hr>").replace(/
/g,"<header>")),n=n.length&&" "!=n?n+"  ":n,s=$(this).attr("type").toLowerCase(),o=$(this).parents(".tab-pane").attr("id"),o=o&&o.length?o.replace(/[^a-zA-Z0-9_-]+/g,""):0,r=Math.floor(9e4*Math.random())+1e4,_=$(this).attr("id"),l=("eid_"+(_&&$(this).attr("name")?$(this).attr("name"):r)+"_"+r+"_"+e+"_"+o).replace(/[^a-zA-Z0-9_-]+/g,"_"),l=_&&1===$("body").find("#"+_.replace(/[^a-zA-Z0-9_-]+/g,"_")).length?_.replace(/[^a-zA-Z0-9_-]+/g,"_"):l;if(0===$(this).next("label").length&&0===i.length&&a){$(this).addClass("iawobject");var c='for="'+l+'"';$(this).attr("id",l),$($___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",l),$(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",l),$(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",l),$(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))return void(v___available_session=0);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"),i.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"]'),o=$(".refInputData").prev("span").find('input[type="radio"]'),r=$(".refInputData").prev("select").find('option[value="*"]');s.length?s.trigger("click"):o.length?o.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($is_history_action){function __m_ico_row_tb(){$("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 __m_ico_row_t(){$("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 __m_ico_row_b(){$("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")}function __m_ico_row_func(){return 0}if(update_navigation_module_name(),$is_history_action&&"undefined"!=typeof __cm_editor_static&&(__cm_editor_static.toTextArea(),$('button[data-form="submitter"]').unwrap(),$('.CodeMirror, button[data-form="submitter"] + button, .-helper.__helper, .-helper.soft_wt').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")}(),table_proc_size_columns(),$("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 select_for_edited_file=$('select[name="file"]:first, select[name="manual"]:first');select_for_edited_file.addClass("onchange_form_submit_triggger"),select_for_edited_file.next("button.ui_form_end_submit").addClass("hidden")}time.localize();var $langLocaleLangStr=theme_language("theme_xhred_title_language_locale"),$userminModule=Core.curModule("language"),$webminModule=Core.curModule("change-user"),$webminConfModule=Core.curModuleFile("webmin","edit_lang.cgi");if(Core.curModule("webmin")){var $targetIconTitle=$('.icons-container a[href*="edit_lang.cgi"]'),$targetSmallIconTitle=$('.small-icons-container a[href*="edit_lang.cgi"]'),$targetNoIconTitle=$('a[href*="edit_lang.cgi"] p > .fa-angle-right');if($targetIconTitle.length){var $targetIconTitleImg=$targetIconTitle.find("img").detach();$targetIconTitle.text($langLocaleLangStr).prepend($targetIconTitleImg,"
")}else $targetSmallIconTitle.length?($targetSmallIconTitle.find(".hidden").text($langLocaleLangStr),$targetSmallIconTitle.parent().attr("title",$langLocaleLangStr)):$targetNoIconTitle.length&&$targetNoIconTitle.parent().html('  '+$langLocaleLangStr)}if(($webminConfModule||$webminModule||$userminModule)&&!$is_history_action){var $dateFormatTarget=$('.container-fluid form select[name="lang"]'),$dateFormatTargetMore=$userminModule?$dateFormatTarget.next(".ui_form_end_buttons").find("tbody"):$dateFormatTarget.parents("tr").first().parent("tbody"),$dateForm=$dateFormatTargetMore.parents("form").first(),$dateFormatFinalTarget=$userminModule?$dateFormatTargetMore:$dateFormatTargetMore.find('select[name="lang"]').parents("tr").first();$webminModule&&$('[name="overlay"]').parent("td").parent("tr").addClass("hidden"),$webminModule||$("span[data-main_title]").text($langLocaleLangStr);var insertionRow=' '+theme_language($webminModule?"theme_xhred_title_webmin_ui_locale":"theme_xhred_title_locale_config")+($userminModule?":   ":"")+' '+theme_language($webminModule?"theme_xhred_title_locale_config_format_ui":"theme_xhred_title_locale_config_format")+' '+($userminModule?"    ":"")+" "+theme_language("theme_xhred_title_locale_lang_based")+'    '+theme_language("theme_xhred_title_locale_full")+'  `LLLL`

"+theme_language("theme_xhred_global_output_example")+": "+moment().format("LLLL")+'

">
 
'+theme_language("theme_xhred_title_locale_long")+'  `LL`

"+theme_language("theme_xhred_global_output_example")+": "+moment().format("LL")+'

">
 
'+theme_language("theme_xhred_title_locale_short")+'  `L`

"+theme_language("theme_xhred_global_output_example")+": "+moment().format("L")+'

">
'+(Core.moduleAvailable("webmin")?'
'+theme_language("theme_xhred_title_locale_non_ui_config")+' 
':"")+" ";$userminModule?$dateFormatFinalTarget.prepend(insertionRow):($dateFormatFinalTarget.after(insertionRow),Core.setModuleData("/webmin/edit_ui.cgi",["dateformat"])),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-get_theme_locale_languages=1",data:!1,dataType:"text",async:v___available_navigation,success:function(e){$('select[data-select="locales"]').replaceWith(e),$('#config_portable_theme_locale_languages option[value="ru-su"]').remove();var t='input[id*="config_portable_theme_locale_language"], select[name="config_portable_theme_locale_languages"], input[name="config_portable_theme_locale_format_full"], input[name="config_portable_theme_locale_format_long"], input[name="config_portable_theme_locale_format_short"]',i=$(t);$(i).on("change keyup focus",function(e){var t=$(this).attr("name"),i=$(this).parent(),a=i.data("title"),n=$('select[name="config_portable_theme_locale_languages"]').val();t.indexOf("theme_locale_format_")>-1&&i.attr("title",a.replace(/g'>(.*)<\/i>/g,"g'>"+(n?moment().locale(n).format($(this).val()):moment().format($(this).val()))+"")).tooltip("fixTitle").tooltip("show");var s=$("._locale_config");"config_portable_theme_locale_language"===t&&"1"!=$(this).val()?"focus"!=e.type&&s.addClass("hidden"):"focus"!=e.type&&s.removeClass("hidden")}),$($dateForm).on("submit",function(){var e=$('[name="dateformat"]');e.length&&Core.updateModuleData("/webmin/edit_ui.cgi","/webmin/change_ui.cgi",{dateformat:$.trim(e.val())}),$.each($(t.replace('locale_language"]','locale_language"]:checked')),function(e,t){var i=$(this).attr("name"),a=$(this).val();"config_portable_theme_locale_languages"===i&&""===a&&(a=get_server_data("language-full")),localStorage.setItem(v___server_hostname+"-"+i,a),window[i]=a}).promise().done(function(){var e=$dateForm.find('select[name="lang"]').val();if(e.indexOf(".")>-1&&(e=e.split(".")[0]),$webminModule&&"1"==$dateForm.find('[name="lang_def"]:checked').val()){var t=$('[name="lang_def"][value="1"]').next("label").text().match(/\(([^)]+)\)/),t=t&&t[0]&&t[1]?t[1]:get_server_data("language-full");t.indexOf(".")>-1&&(t=t.split(".")[0]),e=t}moment.locale(config_portable_theme_locale_language&&"0"!=config_portable_theme_locale_language?config_portable_theme_locale_languages:e),theme_config("save"),setTimeout(function(){navigation_update()},2e3)})})}})}v___available_navigation&&Core.curModule("tunnel")&&$("form").on("submit",function(e){var t=$(quirks.active_element());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){if(Test.strContains(e,v___page_signin_form))return void(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 f__lnk_t_btn-el btn-transparent btn-link-bordered btn-xxs margined-top--3-5").removeClass("ui_link")}),0==get_access_level()&&v___available_navigation&&!$is_history_action&&$("#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(),!$is_history_action&&page_radios_evolve();var $onLoad_checkBox=$('.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"))return void(v___available_navigation?$(this).trigger("contextmenu"):$(this).parents(".gl-icon-container").trigger("contextmenu"));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&&i.indexOf("://")===-1?open(navigation_trigger(t,1)):open(i),e.preventDefault(),e.stopPropagation()}),Core.curModule("servers")&&$.each($('a[href*="link.cgi"]'),function(){var e=$(this).attr("href");e&&e.match(/(link.cgi\/\d+)/)&&$(this).attr("target","_blank")}),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.chooser_button").length>0&&$(this).css("margin-right","4px")}),!$is_history_action){$(".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, .opener_hidden").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"));var target_restore_selector='a[id*="opener"][id$="_restore"]';$('a[id*="opener"][id$="_restore"]').parent().is("p")&&($('a[id*="opener"][id$="_restore"]').next("a").parent("p").replaceTagName("div"),$('a[id*="opener"][id$="_restore"]').next("a").removeClass().addClass("opener_extra_container_a_style link_hover_effect").parent("div").addClass("opener_extra_container opener_extra_container_style margined-top-10"),$('a[id*="opener"][id$="_restore"]').remove()),$('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()})}if(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")){if(v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-user.cgi"){navigation_clear();var $target_parents_row=$('[name="settings_navigation_color"]').parent("td").parent("tr"),rows=' '+theme_language("settings_grayscale_level_navigation")+'
'+theme_language("settings_grayscale_level_navigation_description")+'
'+theme_language("settings_sepia_level_navigation")+'
'+theme_language("settings_sepia_level_navigation_description")+'
'+theme_language("settings_saturate_level_navigation")+'
'+theme_language("settings_saturate_level_navigation_description")+'
'+theme_language("settings_hue_level_navigation")+'
'+theme_language("settings_hue_level_navigation_description")+'
'+theme_language("settings_invert_level_navigation")+'
'+theme_language("settings_invert_level_navigation_description")+'
'+theme_language("settings_brightness_level_navigation")+'
'+theme_language("settings_brightness_level_navigation_description")+'
'+theme_language("settings_contrast_level_navigation")+'
'+theme_language("settings_contrast_level_navigation_description")+'
';$target_parents_row.after(rows)}var ev_change_atsettings='form[action*="settings.cgi"] select, form[action*="save_config.cgi"] select, form[action*="settings.cgi"] input, form[action*="save_config.cgi"] input';$("body").undelegate(ev_change_atsettings,"change"),$("body").on("change",ev_change_atsettings,function(e){var t=$(this).val();if("true"==t||"false"==t){if("true"==t)var i=!0;else if("false"==t)var i=!1}else var i=t;if(window[$(this).attr("name")]=Test.numeric(i)?parseFloat(i):i,void 0!==e.originalEvent)if(v___initial_load&&"settings-user.cgi"!==v___location_file)v___initial_load=0;else{var a='input[name="settings_side_slider_enabled"]';!$(e.target).is(a)&&$(e.target).is(a)||theme_config_controls(1)}});var ev_keydown_atsettings='form[action*="settings.cgi"] input, form[action*="save_config.cgi"] input';$("body").undelegate(ev_keydown_atsettings,"keydown"),$("body").on("keydown",ev_keydown_atsettings,function(e){void 0!==e.originalEvent&&theme_config_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_update(),theme_config("save"),navigation_render_start(),spinnerfy_buttons($(this),[-.5,-25,"small",750]),setTimeout(function(){navigation_update()},1400)}),$(function(){function e(){$("body").undelegate("#atrestore:not(.disabled)","click"),$("#atrestore:not(.disabled)").off("click.confirm"),$("#atrestore:not(.disabled)").on("click",function(){var e=get_onbeforeunload_status();set_onbeforeunload_status(0),e&&setTimeout(function(){set_onbeforeunload_status(e)},2500)}),$("#atrestore:not(.disabled)").confirmation({classNameRemove:"btn-default"},function(){$(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){if(Test.strContains(e,v___page_signin_form))return void(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")&&!$is_history_action&&($(".container-fluid .nav.nav-tabs").prepend('
  • '),$(".container-fluid .tab-pane").first().before('
    '),$('.container-fluid .nav-tabs a[href="#atsettings"]').tab("show")),$is_history_action||$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-settings=1",data:!1,dataType:"text",success:function(t){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_shell","settings_hotkey_focus_search","settings_hotkey_navigation","settings_hotkey_slider","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_fixed_toggle","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&&"settings_side_slider_fixed_toggle"!=t||$('input[name="settings_side_slider_fixed"][value="false"], input[name="settings_side_slider_fixed_toggle"][value="false"]').trigger("click"),setTimeout(function(){$('input[name="'+t+'"], select[name="'+t+'"]').prop("disabled",!0).parent(".aradio").addClass("disabled")},10)}):$.each(t,function(e,t){("settings_side_slider_fixed"!=t||"settings_side_slider_fixed"==t&&"true"!=$('input[name="settings_navigation_always_collapse"]:checked').val())&&("settings_side_slider_fixed_toggle"!=t||"settings_side_slider_fixed_toggle"==t&&"true"!=$('input[name="settings_navigation_always_collapse"]:checked').val())&&$('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 o(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_navigation_always_collapse"]:checked'));var t=["settings_side_slider_fixed","settings_side_slider_fixed_toggle","settings_leftmenu_width"];"true"==e.val()?(Core.var.slider_pinned=-1,$.each(t,function(e,t){"settings_side_slider_fixed"!=t&&"settings_side_slider_fixed_toggle"!=t||$('input[name="settings_side_slider_fixed"][value="false"], input[name="settings_side_slider_fixed_toggle"][value="false"]').trigger("click"),setTimeout(function(){$('input[name="'+t+'"]').prop("disabled",!0).parent(".aradio").addClass("disabled")},10)})):$.each(t,function(e,t){"settings_side_slider_fixed"!=t&&"settings_side_slider_fixed_toggle"!=t||"false"==$('input[name="settings_side_slider_enabled"]:checked').val()||$('input[name="'+t+'"]').prop("disabled",!1).parent(".aradio").removeClass("disabled")})}if(Test.strContains(t,v___page_signin_form))return void(v___available_session=0);$("#atsettings").html(t);var _=get_server_data("theme-version"),l=$('input[name="settings_sysinfo_theme_updates"]').first().parents("td").parent("tr.atshover"),c=l.find("td").first(),d=c.find(".smaller");l.next("tr").find("td").first().find("b");d.append(' ('+theme_language("theme_xhred_global_installed_version").toLowerCase()+" "+_+')'+theme_spinner_small("in-btn-md tmp_spinner_theme_version"," ","width:10px; height:10px; margin-left: 5px;")),$.ajax({type:"POST",url:v___location_prefix+"/index.cgi/?xhr-theme_latest_version=1",data:!1,dataType:"json",success:function(e){var t=new String,i=e[0],a=i!=e[1]&&e[1],n=$("[data-text-installed]"),s=$(".tmp_spinner_theme_version"),o=$("em[data-theme-stable-version]"),r=$("span[data-theme-versions]");i&&i!=_&&(t+=", "+theme_language("theme_xhred_global_latest_stable").toLowerCase()+' '+i+""),a&&a!=_&&(t+=", "+theme_language("theme_xhred_global_latest_beta").toLowerCase()+' '+a+""),_&&_.length<=5&&i&&i.length<=5&&i!=_&&o.addClass("text-danger"),t&&!t.length&&(n.text(theme_language("theme_xhred_global_installed_and_latest_version").toLowerCase()),o.addClass("text-success")),r.replaceWith(t),s.remove()},error:function(){}}),page.render.module_config([0,1,0,0,0,0,0,0,1]);var h=$("div#atsettings").find(".ui_form");$__theme_text_right_save=h.data("text-save"),$__theme_text_right_saved=h.data("text-settings_right_saved"),$__theme_text_right_saving=h.data("text-settings_right_saving"),$__theme_text_right_restore_defaults=h.data("text-settings_right_restore_defaults"),$__theme_text_right_restored=h.data("text-settings_right_restored"),$__theme_text_right_restoring=h.data("text-settings_right_restoring"),$__theme_text_right_error=h.data("text-error"),$('.container-fluid .nav-tabs a[href="#atsettings"]').text(h.data("text-current_theme")),$("div#atsettings").removeClass("text-center"),e(),theme_config_update();var f=$("body").find(".fa.fa-sub-title").parent("span");$(f).next("br").remove(),$(f).next("div.smaller").attr("style","margin-top: -15px !important"),f.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))}),o(),$('input[name="settings_sysinfo_easypie_charts"]').on("change",function(){o($(this))}),$('select[name="settings_navigation_color"]').on("keyup change",function(e){var t=$(this).val(),i=$("link[data-palette]"),a="blue"!=t&&"white"!=t;a&&$("head").append(''),setTimeout(function(){get_server_data("data-theme",t),i.remove(),get_server_data("data-default-theme",t),$("body .user-link.palette-toggle").find(".fa-sun").trigger("click"),theme_config_update()},a?800:0)}),$('select[name="settings_background_color"]').on("click keyup change",function(){var e=$(this).val();get_server_data("data-background-style",e),get_server_data("data-background-style",e),$("link[data-palette]").remove(),"gainsboro"!=e&&($("head").append(''),$('select[name="settings_navigation_color"]').val("gunmetal").trigger("change")),theme_config_update()}),$('input[name="settings_enable_container_offset"]').change(function(){var e=$(this).val(),t=$(".container-fluid");"false"==e?t.removeClass("col-lg-10 col-lg-offset-1").addClass("margined-top-15"):t.addClass("col-lg-10 col-lg-offset-1").removeClass("margined-top-15")}),$('input[name="settings_contrast_mode"]').change(function(){var e=$(this).val();$("link[data-high-contrast]").remove(),"true"==e&&$("head").append(''),get_server_data("data-high-contrast","true"==e?"1":"0")}),$('input[name="settings_right_page_hide_persistent_vscroll"]').change(function(){var e=$(this).val(),t=$("#content.__page");"true"==e?t.removeClass("fvscroll"):t.addClass("fvscroll")}),$('select[name="settings_side_slider_palette"]').change(function(){$("body .right-side-tabs, body .right-side-tabs-toggler").attr("data-background-style",$(this).val())}),$('input[name="settings_side_slider_enabled"]').change(function(){"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_config_update(),page_resized()}),$('input[name="settings_side_slider_fixed"]').change(function(){Core.var.slider_pinned=-1;var e=$(".right-side-tabs-dismiss .fa2-collapse-right");"true"==$(this).val()?(set_side_slider_visibility(1),e.removeClass("fa-rotate-45")):(set_side_slider_visibility(0),e.addClass("fa-rotate-45")),theme_config_update()}),$('input[name="settings_side_slider_fixed_toggle"]').change(function(e){var t=$(".right-side-tabs-dismiss .fa2-collapse-right");"true"==$(this).val()?t.removeClass("hidden"):(("true"==$('input[name="settings_side_slider_fixed"]:checked').val()&&t.hasClass("fa-rotate-45")||"false"==$('input[name="settings_side_slider_fixed"]:checked').val()&&!t.hasClass("fa-rotate-45"))&&t.trigger("click"),t.addClass("hidden")),Core.var.slider_pinned=-1,theme_config_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_set(0))),theme_config_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 g=$('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"]');g.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_config_update()}),g.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")}),setTimeout(function(){$(".mobile-menu-toggler:visible").length&&$('input[name="settings_leftmenu_width"]').prop("disabled",!0)},100);var p=$('input[name="settings_leftmenu_width"]');p.on("click keyup change",function(e){page_adjust($(this).val(),$(this).val()),$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),theme_config_update(),settings_leftmenu_width_initial=$(this).val()}),$('input[name="settings_navigation_always_collapse"]').change(function(e){r($(this)),"true"==$(this).val()?($("html").attr("data-navigation-collapsed",1),$(".mobile-menu-toggler").removeClass("visible-xs"),navigation_hide()):"false"==$(this).val()&&($("html").attr("data-navigation-collapsed",0),$(".mobile-menu-toggler").addClass("visible-xs")),setTimeout(function(){page_resized()},10)}),r(),p.each(function(){$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),settings_leftmenu_width_initial=$(this).val()}),"restored"==v___location_query&&(g.trigger("click"),p.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_real_time_status_disk"], 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_updates_for_usermin"], input[name="settings_show_theme_configuration_for_admins_only"]').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("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=$.merge($("head").find('link[href*="/authentic."]'),$("head").find('link[href*="/authentic."]')),a=a.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"),$(".right-side-tabs-toggler").length||($('input[name="settings_side_slider_enabled"][value="false"]').trigger("click"),$('input[name="settings_side_slider_enabled"]').attr("disabled","disabled")),page_resized(),$('input[name="settings_show_webmin_tab"]').parents("td").parent("tr").addClass("hidden")}})});var ev_click_atsettings="#atsave:not(.btn-inverse):not(.disabled)";$("body").undelegate("#atsave:not(.btn-inverse):not(.disabled)","click"),$("body").on("click","#atsave:not(.btn-inverse):not(.disabled)",function(e){e.preventDefault();var t=$(this);spinnerfy_buttons(t,[1.5,-33,"small",1e3]),set_onbeforeunload_status(0,0),theme_config_update(),theme_config("save"),Core.updateModuleData("/webmin/edit_startpage.cgi","/webmin/change_startpage.cgi",{gotomodule:$.trim($('select[name="goto_webmin_default_module"]').val())}),setTimeout(function(){$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-settings=1&save=1",data:Core.get_global_vars(["settings_"],1),dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);navigation_update(),theme_config_controls(0),settings_sysinfo_real_time_status?"object"==typeof stats?(stats.general.timeout=settings_sysinfo_real_time_timeout,stats.general.query()):load.bundle(v___server_extensions_path+"/stats/stats",0,["stats.general.timeout = settings_sysinfo_real_time_timeout","stats.general.query()"]):"object"==typeof stats&&stats.general.kill()},error:function(){t.addClass("btn-danger").removeClass("btn-success btn-inverse opacity-0_5")}})},1e3)})}var theme_control_pages=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-logos.cgi"||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-backgrounds.cgi";if($is_history_action||!theme_control_pages&&!Core.curModuleFile("webmin","edit_themes.cgi")||navigation_clear(),!$is_history_action&&theme_control_pages){check_location_resource("/settings-logos.cgi?saved=1")&&$.each($(".file_chooser_button_preview:first"),function(){$(this).hasClass("disabled")?$("aside + .__logo").remove():matchMedia("(max-width: 1080px)").matches||($("aside + .__logo").length?($(".__logo img").attr("src",$("[data-image-lga]").attr("data-image")),$("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 ev_click_atsettings2=".authentic_update:not(.disabled), .page_footer_ajax_submit:not(.disabled)";$("body").undelegate(ev_click_atsettings2,"click"),$("body").on("click",ev_click_atsettings2,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_language("theme_xhred_settings_right_theme_bgs")+' '+theme_language("theme_xhred_settings_right_theme_logos")+" '+theme_language("theme_xhred_global_save")+" ")}},1300)},10)}if($is_history_action||v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-logos.cgi"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-backgrounds.cgi"||($(function(){function e(e){void 0===e&&(e=i);var t=["authenticated_logo_file","authenticated_bg_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"==a&&$('input[name="'+t+'"]').parents(".file-input-wrapper").prev(".file_chooser_button_preview").removeClass("disabled")})}function t(e){void 0===e&&(e=n);var t=["unauthenticated_logo_file","unauthenticated_bg_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"==n&&$('input[name="'+t+'"]').parents(".file-input-wrapper").prev(".file_chooser_button_preview").removeClass("disabled")})}var i=$('input[name="authenticated_logo"]:checked, input[name="authenticated_bg"]:checked'),a=i.val(),n=$('input[name="unauthenticated_logo"]:checked, input[name="unauthenticated_bg"]:checked');n.val();e(),$('input[name="authenticated_logo"], input[name="authenticated_bg"]').on("change",function(){e($(this))}),t(),$('input[name="unauthenticated_logo"], input[name="unauthenticated_bg"]').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 > td").on("mouseover",function(){$(this).find(".btn-hidden").removeClass("hidden")}).on("mouseout",function(){$(this).find(".btn-hidden").addClass("hidden")}),(Core.curModule("software")&&Test.strContains(v___location_file,"tree.cgi")||Core.curModuleFile("cluster-software","edit_host.cgi"))&&($('img[src*="images/"]').each(function(e,t){var i=$(this);i.next("a").removeClass(),Test.strContains(i.attr("src"),"close")&&i.replaceWith(''),Test.strContains(i.attr("src"),"open")&&i.replaceWith(''),Test.strContains(i.attr("src"),"pack")&&i.replaceWith('')}),$('a[href*="closeall.cgi"]').before('
    ')),(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 $mail_ar_selector='form.ui_form[action="index.cgi"]',$mail_icon_class="fa fa-fw fa-lg text-semi-light vertical-align-baseline fa-angle-";$($mail_ar_selector+' img[src*="images/left"], center img[src*="images/left"]').each(function(){$(this).replaceWith('')}),$($mail_ar_selector+' img[src*="images/right"], center img[src*="images/right"]').each(function(){$(this).replaceWith('')}),$($mail_ar_selector+' img[src*="images/first"]').each(function(){$(this).replaceWith('')}),$($mail_ar_selector+' img[src*="images/last"]').each(function(){$(this).replaceWith('')}),$('button[name="razor"], button[name="ham"]').on("click",function(){$(this).parents("form").attr("target","_blank")})}if(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"))}),!$is_history_action){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 $_t_title=$('form[action="save.cgi"]').find(".table-title"),$_tt=$_t_title.find("tt").detach();$("#headln2c").find("[data-main_title]").after("
    "+$_tt[0].outerHTML+"
    "),$_t_title.remove()}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(".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: 21px !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-xxs btn-transparent btn-link-bordered f__lnk_t_btn-el").css("margin-right","3px").removeClass("ui_link").prepend(' '),$(this).parents("table").find("thead > tr > th:eq(2)").addClass("pointer-events-none")}),$('td.td_tag:contains("|")').contents().filter(function(){return 3==this.nodeType}).remove(),theme_buttonify(["/custom/","/custom/index.cgi"],".container-fluid table td.td_tag:nth-child(3)",'a[href^="form.cgi"]',"btn btn-primary btn-xxs vertical-align-top margined-top-2 margined-left--4 ---forced","fa-cog","","","","|"),theme_buttonify(["/custom/","/custom/index.cgi"],".container-fluid table td.td_tag:nth-child(3)",'a[href^="run.cgi"], a[href^="sql.cgi"]',"btn btn-success btn-xxs vertical-align-top margined-top-2 margined-left--4 ---forced","fa-play fa-0_85x","","","","|"),theme_buttonify(["/custom/","/custom/index.cgi"],".container-fluid table td.td_tag:nth-child(3)",'a[href^="view.cgi"]',"btn btn-info btn-xxs vertical-align-top margined-top-2 margined-left--4 ---forced","fa-pencil-square-o","","","","|"),theme_buttonify(["/custom/","/custom/index.cgi"],".container-fluid table td.td_tag:nth-child(3)",'a[href^="sqlform.cgi"]',"btn btn-info btn-xxs vertical-align-top margined-top-2 margined-left--4 ---forced","fa-cog","","","","|"),theme_buttonify(["/custom/","/custom/index.cgi"],".container-fluid table.ui_grid_table td:last-child",'a.ui_link[href^="edit_"]',"btn btn-default btn-transparent btn-transparent-link btn-xxs vertical-align-top margined-top-2 margined-right-5 pull-right btn-dnwo ---forced","fa-pencil","","","","|"),$("body.custom table.ui_grid_table tr td > form .table-responsive table tr:first-child td.col_header button.ui_submit").prepend(''),$.fn.mytxtW=function(e,t){return $.fn.mytxtW.fakeEl||($.fn.mytxtW.fakeEl=$("").hide().appendTo(document.body)),$.fn.mytxtW.fakeEl.text(e||this.val()||this.text()||this.attr("placeholder")).css("font",t||this.css("font")),$.fn.mytxtW.fakeEl.width()},$('table.ui_grid_table td input[type="text"], table.ui_grid_table td textarea').on("input",function(){var e=$(this).mytxtW()+10;$(this).css({width:e})}).trigger("input");var $empty_cells=$("table.ui_grid_table tbody tr.ui_grid_row td.ui_grid_cell");$.each($empty_cells,function(){var e=$(this).html();("
    "==e||e.length<10)&&$(this).remove()})}if(theme_buttonify(["/syslog-ng/list_destinations.cgi"],".container-fluid .table tbody tr td:last-child",'a[href*="view_log.cgi"]',"btn btn-transparent btn-link-bordered btn-xxs vertical-align-top margined-top-1",""),theme_buttonify(["/virtual-server/edit_newmysqls.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-1","fa-cog"),theme_buttonify(["/virtualmin-git/","/virtualmin-git/index.cgi"],".container-fluid table td.td_tag",'a[href*="delete.cgi"]',"btn btn-danger btn-xxs vertical-align-top margined-top-2 ---forced","fa-times-circle","","","","|"),theme_buttonify(["/virtualmin-git/","/virtualmin-git/index.cgi"],".container-fluid table td.td_tag",'a[href*="//"]',"btn btn-transparent btn-link-bordered btn-xxs vertical-align-top margined-left--4 margined-top-2 ---forced",""),theme_buttonify(["/virtualmin-git/","/virtualmin-git/index.cgi"],".container-fluid table td.td_tag",'a[href*="help.cgi"]',"btn btn-info btn-xxs vertical-align-top margined-left--4 margined-top-2 ---forced",""),theme_buttonify(["/webalizer/","/webalizer/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-1",0),theme_buttonify(["/cpan/edit_mod.cgi"],".container-fluid .table tbody tr td","a.ui_link","btn btn-transparent btn-link-bordered btn-xxs vertical-align-top margined-top-1 margined-right--5 btn-dnwo ---forced","","","","","|"),theme_buttonify(["/forward/index.cgi","/forward/"],".container-fluid",'.panel-body > a:first[href*="simple"]',"btn btn-default _btn-links-top btn-xs vertical-align-top margined-top-2 margined-left-3",0,"","","","|"),theme_buttonify(["/forward/index.cgi","/forward/"],".container-fluid",".panel-body > span[data-unckecked]","btn btn-info _btn-links-top btn-xs vertical-align-top margined-top-2 margined-left-3",0,"","","","|"),theme_buttonify(["/acl/list_sessions.cgi"],".container-fluid table td.td_tag",'a[href*="webminlog/"]',"btn btn-info btn-xxs vertical-align-top margined-top-2 ---forced",0,"","","","|"),theme_buttonify(["/acl/list_sessions.cgi"],".container-fluid table td.td_tag",'a[href*="delete_session.cgi"]',"btn btn-danger btn-xxs vertical-align-top margined-left--4 margined-top-2 ---forced","fa-unplugged"),theme_buttonify(["/firewall/index.cgi","/firewall6/index.cgi","/firewall/","/firewall6/"],".container-fluid","style + b + b:first, style + b + a + b:first, a.ui_link:first","btn btn-link btn-link-bordered _btn-links-top btn-xs vertical-align-top margined-top-2 margined-left-0",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 btn-dnwo f__lnk_t_btn-el margined-left-3 vertical-align-top margined-top-2","fa-eye","|",""),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 btn-dnwo margined-left-3 vertical-align-top margined-top-2 --to-new-tab",0,"","","","|"),theme_buttonify(["/virtual-server/","/virtual-server/index.cgi","/virtual-server/edit_plan.cgi"],".container-fluid form table tbody td",'a[href*="list_users.cgi?"], a[href*="list_aliases.cgi?"]',"btn btn-link btn-link-bordered btn-xxs btn-hover-hide vertical-align-top margined-top-2",0,"(~)"," ~ ",""),theme_buttonify(["/server-manager/","/server-manager/index.cgi"],".container-fluid form table tbody td",'a[href*="mass_update_form.cgi?"]',"btn btn-link btn-link-bordered btn-xxs btn-transparent btn-link-bordered vertical-align-top margined-left-3 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"),theme_buttonify(["/ldap-server/edit_schema.cgi"],".container-fluid table tr.ui_checked_columns td",'a[href*="view_sfile.cgi"]',"btn btn-info btn-xxs vertical-align-top margined-top-1 ---forced",0,"","","","|"),theme_buttonify(["/ldap-server/edit_schema.cgi"],".container-fluid table tr.ui_checked_columns td",'a[href*="edit_sfile.cgi"]',"btn btn-warning btn-xxs vertical-align-top margined-left--4 margined-top-1 ---forced","fa-pencil-square-o"),($('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+"/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 margined-top--2 f__lnk_t_btn-el").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 margined-top--2 f__lnk_t_btn-el").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 margined-top--2 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 margined-top--2 f__lnk_t_btn-el").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 margined-top--2 f__lnk_t_btn-el").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 f__lnk_t_btn-el").removeClass("heighter-34").removeClass("ui_link")}),v___location_path==v___location_prefix+"/software/list_pack.cgi")){var __btn___str='td a.ui_link[href*="view.cgi"]';$('td a.ui_link[href*="view.cgi"]').html('').addClass("ui_link_replaced btn btn-default btn-xxs f__lnk_t_btn-el").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 __delete=[];$.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(),__delete.push(e))}),$.isEmptyObject(__delete)||($(".panel-body > table.table.table-striped thead").find("th:nth-child(3)").remove(),delete __delete)}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 $table_header_links=$(".panel-heading > table.header > tbody > tr > td > a");$.each($table_header_links,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-logos.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-logos.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",trigger:"hover",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*="help.cgi/"], 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(!$is_history_action){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, form + script + a[href*="newdb_form.cgi"]').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()),(Core.curModuleFile("server-manager","index.cgi")||Core.curModuleFile("server-manager",""))&&$(this).parent('form[action="mass.cgi"]').length&&(($(this).is(":nth-child(1)")||$(this).is(":nth-child(6)"))&&$(this).html(' '+$(this).text()),($(this).is(":nth-child(2)")||$(this).is(":nth-child(7)"))&&$(this).html(' '+$(this).text()),($(this).is(":nth-child(3)")||$(this).is(":nth-child(8)"))&&$(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).html()):$(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()),$(this).attr("href")&&$(this).attr("href").indexOf("grace_form")>-1&&$(this).html(' '+$(this).text())),$(this).attr("href")&&$(this).attr("href").indexOf("edit_manual")>-1&&$(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")}),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"fetchmail/"&&$("a.ui_link").each(function(){function e(e){return' '}$(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(),$(this).attr("href").indexOf("edit_poll")>-1&&$(this).prepend(e("plus-square-o")),$(this).attr("href").indexOf("edit_global")>-1&&$(this).prepend(e("pencil-square-o")),$(this).attr("href").indexOf("check")>-1&&$(this).prepend(e("check-square-o"))}),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"filter/"&&$("a.ui_link").each(function(){function e(e){return' '}$(this).attr("href").indexOf("edit_auto")>-1&&$(this).find("i").replaceWith(e("reply")),$(this).attr("href").indexOf("edit_forward")>-1&&$(this).find("i").replaceWith(e("reply-all"))}),$('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"],"basic"),$("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 "+($editor_mode_link_button_state==-1?"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&&$('.container-fluid select.ui_select[name="id"] > 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-top: -27px !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($(".container-fluid input:not(.ui_upload)"),function(){"28px"==$(this).css("height")&&$(this).prev("input").addClass("heighter-28")}),(Core.curModule("syslog")||Core.curModule("phpini"))&&$(".container-fluid .chooser_button + .ui_form_end_submit").addClass("heighter-28"),Core.curModuleFile("virtual-server","backuplog.cgi")&&$('.container-fluid input[name="search"]').addClass("margined-top--1"),Core.curModuleFile("usermin","list_sessions.cgi")&&$('.container-fluid input[name="user"] + button + button').addClass("heighter-34-force"),$.each($(".container-fluid select"),function(){32==$(this).next("input").outerHeight()&&$(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.curModule("language")&&$('select[name="lang"]').addClass("heighter-34"),Core.curModuleFile("virtual-server","edit_script.cgi")){var x1z1x1c41=$('input[name="version"]');x1z1x1c41.length&&x1z1x1c41.attr("style",x1z1x1c41.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(".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(){32==$(this).next("input").outerHeight()||32==$(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")||Core.curModuleFile("server-manager","login.cgi")){var tmp__is__m__term=$("iframe");if(tmp__is__m__term.length){var $this=tmp__is__m__term;$this.on("load",function(){$this.contents().find("#term").css("width","99.3%").css("height","96vh").css("margin-top","1px")}),$(this).next("br").remove().next('input[type="button"]').remove(),$(this).next('input[type="button"]').remove(),$(this).next("p").remove()}}if($.each($(".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","").addClass("file_chooser_button_attached_input")}),$.each($(".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(.chooser_button)"),function(){$(this).removeClass("heighter-28").addClass("heighter-34")}),v___location_path!=v___location_prefix+"/virtualmin-svn/"&&v___location_path!=v___location_prefix+"/virtualmin-svn/index.cgi"||$.each($("tr > td.td_tag > button"),function(){$(this).addClass("btn-hover-wash_off-in-row bhw-sm heighter-28 heighter-28-force margined-top-2 margined-bottom-2"),$(this).find(".fa-backup").length&&$(this).removeClass("heighter-28-force")}),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"&&v___location_path!=v___location_prefix+"/server-manager/massshell.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(),setTimeout(function(){var e=$("#content");e.animate({scrollTop:e.find(v___page_container).outerHeight()},$settings_animation_tabs_slide_time/1.5)})),$.each($("input"),function(){28==$(this).outerHeight()&&28!=$(this).next("input").outerHeight()&&$(this).is(':not([type="hidden"])')&&$(this).next("input").addClass("heighter-28")}),$.each($(".container-fluid select"),function(){32==$(this).outerHeight()&&32!=$(this).next("select").outerHeight()&&$(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(){var e=$(this).attr("style");$(this).attr("style","vertical-align: top !important; "+(e?e:""))}),$("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&&!v___location_file&&!$('body[class*="smart-status"]').length||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")),Core.curModule("smart-status")&&($('select[name="drive"]').addClass("heighter-34"),$('select[name="drive"] + .ui_form_end_submit').addClass("heighter-34")),$('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"){var cpan_button=$('input[name="cpan"]').next("button");cpan_button.html('').attr("style","width: 40px; height: 28px; vertical-align:middle !important; margin-top:2px; margin-bottom:2px;"),cpan_button.attr("onclick",cpan_button.attr("onclick").replace("document.forms[0]","document.forms[1]"))}if($("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")),v___location_path!=v___location_prefix+"/lvm/"&&v___location_path!=v___location_prefix+"/lvm/index.cgi"&&v___location_path!=v___location_prefix+"/virtualmin-support/"&&v___location_path!=v___location_prefix+"/virtualmin-support/index.cgi"&&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"||function(){$("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")}(),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"||function(){$("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")}(),v___location_path==v___location_prefix+"//"&&function(){$("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")}(),$.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 $tables=$("form .table.table-striped.table-hover.table-condensed");$tables.addClass("table-resizable").resizeableTableColumns(),$tables.find(".ui_checked_checkbox").length&&$tables.find("thead tr th:first-child").addClass("nonresizable");var $___colspan=$("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",$___colspan).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 target=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:first-child"),container=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:last-child"),link=container.find("a");target.append(link),container.remove(),target.find("a").addClass("table_title_links pull-right btn btn-xs btn-warning").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 target=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:first-child"),container=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:last-child"),link=container.find("a");target.append(link),container.remove(),target.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",v___location_prefix+"/virtual-server/index.cgi"),$('.panel-default + a[href="/server-manager/"]').attr("href",v___location_prefix+"/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",v___location_prefix+"/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",v___location_prefix+"/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 $t__acl_title=$("br").next(".ui_grid_table.table-hardcoded").find("tbody").addClass("border-global-color").parent("table").prev("br").prev("b");$("br").next(".ui_grid_table.table-hardcoded").css("margin-bottom","3px"),$.each($t__acl_title,function(e,t){""==$(this).text()&&($(this).next("br").remove(),$(this).remove())}),$t__acl_title.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"),Core.curModuleFile("virtual-server","edit_limits.cgi")&&setTimeout(function(){var e=$("#headln2c tt").text().replace(/\..*/g,"").replace(/\.|\-/g,""),t="settings_show_webmin_tab_"+e;snippet.inject_extra_option("tr/yes:no",$('input[name="demo"]'),t,theme_language("theme_xhred_settings_show_webmin_tab"));var i="true"==document.querySelector('[name="'+t+'"]:checked').value?1:0,a=document.querySelector('input[name="modules"]'),n=a.nextElementSibling;a.disabled=!i,n.disabled=!i;for(var s=function(){var e="true"==this.value?1:0;a.disabled=!e,n.disabled=!e},o=document.querySelectorAll('[name="'+t+'"]'),r=0;r5&&($("#headln2c").append(""+$(".ui_post_header.hidden").html()+""),$(".ui_post_header.hidden").remove())}if(v___location_path&&v___location_path.indexOf("/sysinfo.cgi")>-1){if(!$is_history_action){$('#status_services-status-1-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-1-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-1-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?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")}})});var sorted_data=$(".__page .panel-group .panel-default").sort(function(e,t){return $(e).data("sorter")>$(t).data("sorter")?1:-1}).appendTo("#extended_sysinfo-1.panel-group");$('span[data-entry="nf_seen"]').parent("button").on("click",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()}}})}),$('span[data-entry="right_upok"]').parent("button").on("click",function(e){e.preventDefault();var t=($(this),$('form[action*="package-updates/update.cgi"]'));t.attr("method","POST"),$('').attr({type:"submit",value:1}).appendTo(t),$('input[name="u"]').appendTo(t),t.submit()})}time.tictac(1,1)}if(!$is_history_action){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"], select[name*="dateformat"], 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-transparent btn-link-bordered f__lnk_t_btn-el margined-left--4 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 v___URI=URI(v___location);v___location_file=v___URI.filename()}$("#headln2r, #headln2l").prepend('
    ').append("
    "),$("#headln2r a").detach().appendTo("#headln2r .btn-group"),$("#headln2l a").detach().appendTo("#headln2l .btn-group"),v___available_navigation||$("body").hasClass("file-manager")||$("#headln2l .btn-group").prepend(''),v___available_navigation||$("body").hasClass("file-manager")||get_server_data("data-slider-fixed",0),$.each($(".ui_form_end_submit"),function(){if(v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"proc/edit_proc.cgi"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"proc/kill_proc.cgi"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"proc/renice_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");var i=$('select[name*="parentuser"]').first();if(Core.curModule("virtual-server")&&1===i.length){var a=i.addClass("heighter-34 pull-left").attr("style","margin-top: 0 !important; margin-right: -1px;").detach();$('button[name="add1"] + input').after(a)}})}),$.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_newshells.cgi")||Core.curModuleFile("virtual-server","view_backuplog.cgi")||Core.curModuleFile("virtual-server","edit_phpver.cgi")||Core.curModuleFile("virtual-server","edit_spf.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")||Core.curModuleFile("squid","edit_cachemgr.cgi")||Core.curModuleFile("fsdump","edit_dump.cgi")||Core.curModuleFile("mysql","backup_form.cgi")||Core.curModuleFile("postgresql","backup_form.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:not(.opener_table_style)").removeClass("table-hover").addClass("no-hover");var dynamic_switch_off_on=$(".fa-toggle-switch-off").parent("button.btn-default");if(1===dynamic_switch_off_on.length){"1"==dynamic_switch_off_on.parent("td").find('input[type="radio"]:checked').val()&&dynamic_switch_off_on.find(".fa-toggle-switch-off").addClass("fa-toggle-switch").removeClass("fa-toggle-switch-off")}var $parent_td=dynamic_switch_off_on.parents("td");$parent_td.find('[type="radio"]').length&&$parent_td.addClass("vertical-align-bottom");var my_editor_page=$('form[action*="manual"] > select[name="file"], form[action*="manual.cgi"] > select[name="manual"], form[action*="edit_"] > select[name="file"]');my_editor_page.length&&(my_editor_page.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, .chooser_button").addClass("heighter-34").css("margin-bottom","-1px"),$("#search").css("margin-top","1px"),$('form[action*="search.cgi"] .ui_form_end_submit').css("margin-top","2px").css("margin-right","-4px")),(Core.curModuleFile("mailboxes","")||Core.curModuleFile("mailboxes","index.cgi"))&&($("#user").addClass("heighter-34 vertical-align-middle margined-bottom-1"),$(".chooser_button").addClass("margined-top-2 margined-bottom-2")),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 attempt_make_all_elem=$('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(attempt_make_all_elem,function(e,t){if(!($(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))return $(this).prev(".awobject").length?void $(this).css("width","auto"):void(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-transparent btn-link-bordered btn-xxs margined-top--3"):Core.curModule("virtual-server")&&$('a[onclick^="window.open(\\"thumb_style.cgi?"]').html('').addClass("btn btn-transparent btn-link-bordered heighter-28-force"),Core.curModuleFile("virtual-server","edit_html.cgi")){$('.ui_form_end_submit:not([name="create"], [name="cancel"], [name="save"], [name="delete"])').addClass("heighter-28-force");var is_html_mode_edit_web_pages=v___location_query.indexOf("editok")!==-1||v___location_query.indexOf("createok")!==-1,is_text_mode_edit_web_pages=v___location_query.indexOf("textok")!==-1;is_html_mode_edit_web_pages&&$("#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"])):is_text_mode_edit_web_pages&&($("#textok").removeClass("btn-default").addClass("btn-grey"),editor_init_check()&&editor_init($("textarea"),!1,!1,"static",!1,!0,!1,$is_history_action)),$(".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 $magic_button_selector=' 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($($magic_button_selector).length&&$($magic_button_selector).each(function(){$(this).attr("data-mmclick",$(this).attr("onclick")).removeAttr("onclick");chooser_get_target($(this),0)}),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"){var obj=$('.panel-body > .ui_link, .panel-body > .ui_link_replaced,\t\t\t\t body[data-uri*="virtualmin-awstats"] .panel-body > form > .ui_link_replaced,\t\t\t\t body[data-uri*="edit_disk.cgi"] .panel-body p > a.ui_link_replaced,\t\t\t\t body[data-uri*="edit_newlinks.cgi"] .panel-body > form > .ui_link_replaced,\t\t\t\t body[data-uri*="edit_newlinks.cgi"] .panel-body > .ui_emptymsg + p > .ui_link_replaced'),text=$.trim(obj.first().text()),href=obj.first().attr("href");"undefined"!=typeof settings_hidden_force_table_header_links?href&&($("#headln2r .btn-group a").addClass("pull-left").attr("style",""),$("#headln2r .btn-group").prepend(' '),obj.next("br").remove(),obj.remove()):(obj.addClass("btn btn-inverse btn-tiny ui_link_replaced"),obj.find(".fa").length||obj.prepend(' '))}if(v___theme_night_mode_enabled||v___theme_night_mode){if($(".opener_shown").length>0){var __tmp_ui_grinTable=$(".opener_container, .opener_container:hidden").find(".ui_grid_table, .ui_grid_table:hidden");__tmp_ui_grinTable.length&&$.each(__tmp_ui_grinTable,function(e,t){$(this).parent("td").attr("style","padding: 0 !important")})}if($(".opener_table_style_small").length>0){var __tmp_ui_hardTable=$(".opener_table_style_small, .opener_table_style_small:hidden").find(".sub_table_container.table-hardcoded, .sub_table_container.table-hardcoded:hidden");__tmp_ui_hardTable.length&&$.each(__tmp_ui_hardTable,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.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||(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"),$.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(''))}),v___location_path==v___location_prefix+"/proc/index_search.cgi"&&$(".col_header").removeClass("col_header"),$('input[type="file"]:not([name="upfiles"])').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 visibility=[];"settings-user.cgi"===v___location_file&&(visibility=[1,0,0]),page.render.module_config(visibility)}}if(Core.curModuleFile("virtual-server","index.cgi")&&$('a[href*="list_users.cgi"], a[href*="list_aliases.cgi"], .ui_checked_columns').on("click",function(e){var t=$(this);t.off("click"),$(e.target).is('input[type="checkbox"]')||(t.is(".ui_checked_columns")&&(t=$(this).find("a").first()),set_navigation_correspond_virtualmin(t))}),Core.curModuleFile("server-manager","index.cgi")&&$('a[href*="mass_update_form.cgi"], .ui_checked_columns').on("click",function(e){var t=$(this);t.off("click"),$(e.target).is('input[type="checkbox"]')||(t.is(".ui_checked_columns")&&(t=$(this).find("a").first()),set_navigation_correspond_cloudmin(t))}),editor_init_check()&&editor_init($("textarea"),!1,!1,"static",!1,!0,!1,$is_history_action),Core.curModule("cshrc")||Core.curModule("plan")||Core.curModuleFile("virtual-server","mass_aedit_form.cgi")){var cshrc1=$(".panel-body form:eq(0) > textarea:visible"),cshrc2=$(".panel-body form:eq(1) > textarea:visible");$is_history_action&&page_refresh(1),cshrc2.length?(editor_init(cshrc1,!1,!1,"static1",!0,!1,!1,$is_history_action,.36),editor_init(cshrc2,!1,!1,"static2",!0,!1,!1,$is_history_action,.36)):editor_init(cshrc1,!1,!1,"static1",!0,!1,!1,$is_history_action,.51)}if(viewer_init_check()&&viewer_init(),settings_sysinfo_easypie_charts&&v___location_path==v___location_prefix+"/sysinfo.cgi"){var isNR=v___theme_night_mode_enabled||v___theme_night_mode?1:0;$("body").find("#system-status").find(".piechart").easyPieChart({barColor:function(e){return e<50?isNR?"#269373":"#5cb85c":e<85?isNR?"#c38d40":"#f0ad4e":"#cb3935"},trackColor:isNR?"#3b424b":"#f8f8f8",scaleColor:isNR?"#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(((v___location_path.indexOf(".cgi")===-1||v___location_path.indexOf("link.cgi")!==-1||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/"&&v___location_prefix.indexOf("servers/link.cgi")===-1||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("mysql","index.cgi")||Core.curModuleFile("postgresql","index.cgi")||Core.curModuleFile("custom","index.cgi")||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","")||Core.curModuleFile("virtualmin-git","index.cgi")||Core.curModuleFile("virtualmin-svn","")||Core.curModuleFile("virtualmin-svn","index.cgi")||Core.curModuleFile("server-manager","edit_domains.cgi")||Core.curModuleFile("net","list_ifcs.cgi")||Core.curModuleFile("net","list_hosts.cgi")||Core.curModuleFile("bind8","edit_recs.cgi")||Core.curModuleFile("virtual-server","list_records.cgi")||Core.curModule("firewall")||Core.curModule("firewall6")||Core.curModule("ruby-gems")||v___location_path==v___location_prefix+"/at/"||v___location_path==v___location_prefix+"/at/index.cgi"||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+"/package-updates/update.cgi"||v___location_path==v___location_prefix+"/security-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/")&&$(".__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);$(this).find("tr").each(function(e,i){t=Math.max(t,parseFloat(e))}),t<10&&$(this).parents(".dataTables_wrapper").find(".dataTables_filter").remove();if(($(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?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")}),$("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)}),page_sysinfo_sensor_update_label(),"0"==v___user_level&&information_update();var chart_size_def_value=172;if(172!=settings_sysinfo_easypie_charts_size){var diff=parseInt(settings_sysinfo_easypie_charts_size-172),position_diff_label=.9*diff,position_diff_percent=.2*diff,font_diff_label=settings_sysinfo_easypie_charts_size<172?settings_sysinfo_easypie_charts_size<152?"8px":"8.5px":"9px",font_diff_percent=settings_sysinfo_easypie_charts_size<172?settings_sysinfo_easypie_charts_size<152?"1.6em":"1.7em":"1.8em",$piechart_label=$(".piechart .data-cnt .label"),piechart_label_right=parseInt($piechart_label.css("right")),piechart_label_bottom=parseInt($piechart_label.css("bottom")),$piechart_percent=$(".piechart .data-cnt .percent"),piechart_percent_top=parseInt($piechart_percent.css("top")),piechart_percent_left=parseInt($piechart_percent.css("left"));$piechart_label.css({bottom:parseInt(piechart_label_bottom-position_diff_label),right:parseInt(piechart_label_right-position_diff_label),fontSize:font_diff_label}),$piechart_percent.css({top:parseInt(piechart_percent_top+position_diff_percent), -left:parseInt(piechart_percent_left+position_diff_percent),fontSize:font_diff_percent})}}if($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")||Core.curModuleFileQuery("syslog","save_log.cgi","new=")){var target=".panel-body .fa-refresh-fi",current_refresh_timer=localStorage.getItem(v___server_hostname+"-option_"+v___module+"_refresh"),current_icon_class_str=".fa-refresh-fi",refresh_timer_str=".refresh-timer-timeout",btn_str=target+", .panel-body .refresh-timer-timeout",timeout_box=''+(current_refresh_timer?current_refresh_timer:"0")+" ";$.each($(target+":not([data-processed])").parent("button"),function(e,t){if($(this).find("i").attr("data-processed",1),$(this).wrap('
    '),$(this).after('"),current_refresh_timer&&"0"!=current_refresh_timer){var i=$(btn_str);$(this).find("i").before(timeout_box),$(this).find("i").remove();var a=current_refresh_timer;"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=''+(current_refresh_timer?current_refresh_timer:"0")+" ";localStorage.setItem(v___server_hostname+"-option_"+v___module+"_refresh",$(this).find("a").data("timeout")),current_refresh_timer=localStorage.getItem(v___server_hostname+"-option_"+v___module+"_refresh");var t=$(btn_str),i=t.parent();if(current_refresh_timer&&"0"!=current_refresh_timer){i.find(".refresh-timer-timeout").length||i.prepend(e),i.find(".refresh-timer-timeout").html(current_refresh_timer+" "),$(".fa-refresh-fi").remove();var a=current_refresh_timer;refreshTimer=setInterval(function(){if(--a,$(".refresh-timer-timeout").text(a),a<=0){var e=$(btn_str);$(e[0]).parent().trigger("click"),clearInterval(refreshTimer)}},1e3)}else $(".refresh-timer-timeout").remove(),!i.find(".fa-refresh-fi").length&&i.prepend('')})}),$.each($('form[action*="save_log.cgi"] select[name="idx"]'),function(){$(this).on("change",function(){var e=$("button.ui_submit.ui_form_end_submit");$(this).next().next('[name="filter"]').val(""),e.first().trigger("click"),e.addClass("disabled")})})}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&&($('[data-dcontainer="1"]').tooltip("destroy"), +;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(!Test.editing()&&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_navigation&&e[settings_hotkey_toggle_modifier]||String.fromCharCode(e.which).toLowerCase()==settings_hotkey_slider&&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(!v___available_session)return void e.preventDefault();"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_navigation&&window.matchMedia("(min-width: 1080px)").matches&&(e.preventDefault(),$('aside [data-collapse-trigger="1"]').addClass("m").trigger("click")),String.fromCharCode(e.which).toLowerCase()==settings_hotkey_slider&&window.matchMedia("(min-width: 1366px)").matches&&(e.preventDefault(),$('[data-trigger="side_slider_pinned"]').trigger("click")),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(),page_refresh());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 sysinfo_replace_dismiss_buttons(){var e=$('#system-status [onclick*="webmin/hide.cgi?id"], #right-side-tabs [onclick*="webmin/hide.cgi?id"], [data-referrer^="announce"] [onclick*="webmin/hide.cgi?id"]');$.each(e,function(){var e=$(this).attr("onclick"),t=$(this).text();$(this).is("input")&&(t=$(this).val()),$(this).before(' '+t+""),$(this).remove()});var t=$('#system-status [onclick*="window.open"][onclick*="_new"], #right-side-tabs [onclick*="window.open"][onclick*="_new"], [data-referrer^="announce"] [onclick*="window.open"][onclick*="_new"]');$.each(t,function(){var e=$(this).attr("onclick"),t=$(this).text();$(this).is("input")&&(t=$(this).val());var i="btn-primary",a=e.split('"')[1],n="fa fa-fw fa-external-link";a.includes("patreon")&&(n="fa2 fa-fw fa2-kiss-wink-heart-bold",i="btn-success"),$(this).before(' '+t+""),$(this).remove()})}function get_access_level(){return Core.var.level!==-1?parseInt(Core.var.level):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,s){var o=void 0===a?1:a,r=void 0===n||n,s=void 0===s?"":s;if("hide-all"===e)return void Messenger().hideAll();if($.isArray(e)&&(e=' '+e[1]),$.isArray(s)){var _=s;s="messenger-fixed ",s+="messenger-on-"+_.join(" messenger-on-")}else s=s.length?"messenger-fixed messenger-on-"+s:"messenger-fixed messenger-on-bottom";"function"==typeof Messenger&&(Messenger.options={extraClasses:s,theme:"air"},window["Messenger_"+o]=Messenger().post({message:e,extraClasses:s,hideAfter:t,showCloseButton:r,type:i,id:o}))}function theme_message_dismiss(e){void 0!==window["Messenger_"+e]&&window["Messenger_"+e].hide()}function theme_message_and_unlock(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:String(),n=arguments.length>4&&void 0!==arguments[4]?arguments[4]:"info",s=arguments.length>5&&void 0!==arguments[5]?arguments[5]:3,o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:0;theme_messenger(''+theme_language("theme_xhred_"+t)+" ",s,n,a,o),setTimeout(function(){page_remove_progress(i)},600)}function theme_alert(e,t,i,a,n,s,o,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===o||0==o)&&(o="7"),(void 0===r||0==r)&&(r=!1);var _=($.isArray(i),"modal-global-notification"),l='
    ";setTimeout(function(){$("body").hasClass("modal-open")||($("body").append(l),$("."+_).modal("show"),$("."+_).on("click",".modal-body a.label",function(e){$("."+_).modal("hide")}),$("."+_).on("hidden.bs.modal",function(e){$("."+_).remove()}))},r)}function theme_alert_charset(){var e=get_server_data("charset");if(e&&e.toLowerCase().indexOf("utf")===-1&&"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,t){function i(){"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"))}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;$(".ui_reset").remove();var a=$('.container-fluid textarea[name="data"], .container-fluid textarea[name="text"], .container-fluid textarea[name="directives"], .container-fluid textarea[name="manual"]').parents("form"),n=a.find('button[type="button"]').length?a.find('button[type="button"]'):a.find('input[type="submit"]'),s=$('.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();n.parents("table.ui_form_end_buttons").prev("br").remove(),n.parents("table.ui_form_end_buttons").prev("div.table-responsive").attr("style","margin-bottom: -4px !important"),n.replaceWith('\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t");var o=$('.container-fluid button[type="button"]:not(.ui_form_end_submit)'),r=$('.container-fluid button[type="submit"]:not(.ui_form_end_submit)');window.__cm_editor_static.on("change",function(e,t){__cm_editor_static.save(),o.addClass("btn-warning").removeClass("btn-success").attr("data-form-onbeforeunload",1),i()}),$("body").off("mousedown.cm1"),$("body").on("mousedown.cm1",".CodeMirror",function(e){i()}),$("body").off("keydown.cm1"),$("body").on("keydown.cm1",function(e){13==e.keyCode&&e.ctrlKey&&!e.shiftKey?o.trigger("click"):13==e.keyCode&&e.ctrlKey&&e.shiftKey&&r.trigger("click")});var _='button[type="submit"]:not(.disabled)';$("body").undelegate(_,"click.cm"),$("body").on("click.cm",_,function(e){set_onbeforeunload_status(0,0),$("button").addClass("disabled").find(".fa.fa-arrow-circle-o-left").addClass("invisible").after(''),o.attr("data-form-onbeforeunload",0)});var l='button[data-form="submitter"]:not(.disabled)';$("body").undelegate(l,"click.cm"),$("body").on("click.cm",l,function(e){e.preventDefault();var t=$(this),i=t.parents("form"),n=i.attr("enctype")&&i.attr("enctype").indexOf("form-data")>-1?0:1,s=n?i.serialize():new FormData(i[0]);$("button").addClass("disabled").find(".fa.fa-floppy-o").addClass("invisible").after(''),setTimeout(function(){$.ajax({type:"POST",url:a.attr("action"),data:s,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){return Test.strContains(e,v___page_signin_form)?void(v___available_session=0):(o.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"),o.removeClass("btn-success").addClass("btn-warning").attr("data-form-onbeforeunload",1),void $(".container-fluid > .panel > .panel-body").attr("data-cm-state","true")))},error:function(e){}})},300)}),editor_config_search(t)}}function editor_config_search(e){var t="dropdown-editor_config_search",i="[data-search-in-files-button]",a='[data-name="search-in-files"]',n="data-search-in-results-container",s="."+t,o=".panel-body form .select2",r="data-search-in-files-icon-find",_=theme_spinner_small(),l="data-no-results-initial",c="data-search-stats",d=0;setTimeout(function(){function e(){$("["+l+"]").removeClass("showing-results"),$(s).find("span.fa").removeClass("text-warning")}function h(){$("["+l+"]").addClass("showing-results"),$(s).find("span.fa").addClass("text-warning")}function f(e){e?$("["+c+"]").addClass("hidden"):$("["+c+"]").removeClass("hidden")}var g=$(o),p=g.prev("select"),u=p.attr("name"),m=g.parents("form").attr("action");if(g.addClass("z-index-10001"),!(p.find("option").length<=1)){g.parents("form").addClass("text-nowrap"),$(s).length||(g.after('
    "),setTimeout(function(){var e=uri_parse_param("editor_search");e&&($(a).val(e).trigger("keydown"),setTimeout(function(){$(i).removeClass("disabled").trigger("click")}))}));var v=$("["+n+"]");v.find("a").on("click",function(e){e.preventDefault(),get_pjax_content($(this).attr("data-href")+v[0].scrollTop)}),$(s).find("li").on("click",function(e){e.stopPropagation()}),$(s).on("show.bs.dropdown",function(){var e=$(o).prev("select").prev('input[type="submit"]'),t=-1,i=$(o).width();i<360&&(t+=$(o)[0].offsetLeft-(e.length?14:11));var a=t+i+$(s).width();$(this).find(".dropdown-menu").css("min-width",a).css("max-width",a).css("width",a);var n=$(this).parents("form").outerWidth(),r=$(this)[0].offsetLeft;if(rLine: '+i[1][1]+''+i[0]+""+i[1][0].replace(o,""+$.trim(e)+"")+""}).promise().done(function(){i.append(a),i[0].scrollTop=0,i.find("a").on("click",function(e){e.preventDefault(),get_pjax_content($(this).attr("data-href")+i[0].scrollTop)});var t,n=jQuery.unique(r).length;t=theme_language(1===r.length&&1===_?"theme_xhred_find_in_config_files_result_found_single":1===r.length&&_>1?"theme_xhred_find_in_config_files_result_found_multi":"theme_xhred_find_in_config_files_results_found"),t=t.replace("$1",_).replace("$2",n).replace("$3",""+e+""),$("["+c+"]").html(t)})}else i.append(""+theme_language("theme_xhred_filemanager_search_no_matches").replace(".","")+""),f(1),$(s).find("span.fa").removeClass("text-warning")},complete:function(){$("["+r+"]").removeClass("hidden")},error:function(){}})}})}})}function page_resized(){navigation_lock_width(),$(".mobile-menu-toggler").hasClass("selected")||"1"==$("html").attr("data-navigation-collapsed")||($("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(settings_side_slider_fixed!==!0||$(".mobile-menu-toggler:visible").length&&!Core.var.navigation_pinned||!v___available_navigation||settings_side_slider_fixed===!0&&window.matchMedia("(max-width: 1365px)").matches?0:1);var e=$('input[name="settings_leftmenu_width"]');if($(".mobile-menu-toggler:visible").length?e.prop("disabled",!0):e.prop("disabled",!1),v___location_path&&v___location_path.indexOf("/webmin/edit_themes.cgi")>-1){var t=!(!settings_navigation_always_collapse&&!window.matchMedia("(max-width: 1365px)").matches),i="false"!=$('input[name="settings_side_slider_enabled"]:checked').val();t&&!$.browser.mobile&&$('input[name="settings_side_slider_fixed"][value="false"], input[name="settings_side_slider_fixed_toggle"][value="false"]').trigger("click"),i&&$('input[name="settings_side_slider_fixed"], input[name="settings_side_slider_fixed_toggle"]').prop("disabled",t)}}function theme_config_store(){if("0"==v___user_level){var e=Core.get_global_vars(["settings_"],1);$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-settings=1&save=1",data:e,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0)},error:function(){}})}}function theme_config_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_config_check(){var e=v___location_path.indexOf("/webmin/edit_themes.cgi")>-1,t=v___location_path.indexOf("/settings-user.cgi")>-1,i="settings"+(t?"_"+get_server_data("user"):"")+".js",a=0,n=["settings_font_family","settings_navigation_color","settings_enable_container_offset","settings_contrast_mode","settings_right_page_hide_persistent_vscroll","settings_side_slider_enabled","settings_side_slider_fixed_toggle","settings_side_slider_sysinfo_enabled","settings_side_slider_notifications_enabled","settings_side_slider_favorites_enabled","settings_side_slider_palette","settings_navigation_always_collapse","settings_leftmenu_width","settings_leftmenu_user_html"];if(v___location_path&&(e||t)){var s=Core.get_global_vars(["config_","settings"]);$('script[src*="'+i+'"]').length?$.getScript(v___server_js_path+"/"+i,function(){for(var e=Core.get_global_vars(["config_","settings"]),t=0;t1&&void 0!==arguments[1]?arguments[1]:"backup_is_being_prepared",i=arguments.length>1&&void 0!==arguments[2]?arguments[2]:0,a=arguments.length>1&&void 0!==arguments[3]?arguments[3]:0,n=e.serialize(),s=e.attr("action"),o=e.attr("method");setTimeout(function(){$.download(s,n,o,a)},3300),theme_message_and_unlock("fa-download-cloud",t,i)}function theme_download_link(e){return v___module.includes("webminlog")&&Test.arrIntersect(["webminlog.csv"],e.url)||v___module.includes("software")&&Test.arrIntersect(["view.cgi"],e.url)||v___module.includes("mysql")&&Test.arrIntersect(["download.cgi"],e.url)||v___module.includes("postgresql")&&Test.arrIntersect(["download.cgi"],e.url)||v___module.includes("postfix")&&Test.arrIntersect(["detach_queue.cgi"],e.url)||v___module.includes("mailbox")&&Test.arrIntersect(["detach.cgi","detachall.cgi","slideshow.cgi"],e.url)||"view_mail.cgi"===v___location_file&&"1"==uri_parse_param("raw",e.url)?(theme_open_new_tab(e.url),1):0}function theme_unbind(e,t){$(e).off(t)}function bind_sameorigin(e){1===e?$.each($('aside ul.navigation a[href^="http"], aside ul.navigation a[href^="https"], aside ul.navigation a[href^="ftp"], aside ul.navigation a[href^="ftps"], aside ul.navigation a[data-href^="http"], aside ul.navigation a[data-href^="https"], aside ul.navigation a[data-href^="ftp"], aside 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")}):$.each($('.container-fluid a[href^="http"], .container-fluid a[href^="https"], .container-fluid a[href^="ftp"], .container-fluid a[href^="ftps"]'),function(){Core.linkSameOrigin($(this))||$(this).attr("target","_blank")})}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).length?$("#open_"+e).prop("checked",!0):$('.dynamic[name="product-switcher"]').first().prop("checked",!0)}),update_navigation_module_name())}function get_navigation_menu_webmin(e){v___initial_load;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(),"webmail"===e&&settings_mail_ui&&("object"==typeof mail?mail.folders.get():load.bundle(v___server_extensions_path+"/mail/mail",1,["mail.folders.get()"]))}}),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){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);$("body ul.user-links").html(e),theme_shell_link_control()}})}function get_default_content(){if(!get_onbeforeunload_status()){if(v___theme_processing_default_content)return void setTimeout(function(){ +v___theme_processing_default_content&&(v___theme_processing_default_content=0)},1001);v___theme_processing_default_content=1,$("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))return void(v___available_session=0);$("#____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);check_bundle(t),get_pjax_content(t,["success","v___theme_processing_default_content = 0"]),$("#____switch").remove()}})}}function get_default_virtualmin_content(e,t){if(!get_onbeforeunload_status()||t){if(v___theme_processing_default_content)return void setTimeout(function(){v___theme_processing_default_content&&(v___theme_processing_default_content=0)},1001);v___theme_processing_default_content=1;var i,a="/virtual-server";if(i=1==get_server_data("initial-wizard")?a+"/wizard.cgi":e!==!1?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,["success","v___theme_processing_default_content = 0"])}}function get_default_cloudmin_content(e,t){if(!get_onbeforeunload_status()||t){if(v___theme_processing_default_content)return void setTimeout(function(){v___theme_processing_default_content&&(v___theme_processing_default_content=0)},1001);v___theme_processing_default_content=1;var i;if(i=e===!1||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,["success","v___theme_processing_default_content = 0"])}}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 set_navigation_correspond_virtualmin(e){var e="object"==typeof e?e.attr("href"):e,t=URI.parseQuery(URI(e).query()).dom;t!=$('select[name="dom"]').val()&&get_navigation_menu_virtualmin(t)}function set_navigation_correspond_cloudmin(e){var e="object"==typeof e?e.attr("href"):e,t=URI.parseQuery(URI(e).query()).id,t=t?t:URI.parseQuery(URI(e).query()).d;t!=$('select[name="sid"]').val()&&get_navigation_menu_cloudmin(t)}function information_update(){if(!$("body .modal.in").length){if(!e)var e=get_server_data("webprefix");if(0==v___user_level){var t=$("body").find("#system-status"),i=t.length?t[0]:0;$("#right-side-tabs-sysinfo .graph-container").length||$("#right-side-tabs .info-container").html(get_right_panel_sysinfo_data());var a=$(".right-side-tabs-dismiss .fa-reload");a.addClass("fa-spin-fastest cursor-na"),setTimeout(function(){a.removeClass("fa-spin-fastest cursor-na")},3e3),$.ajax({type:"GET",url:e+"/index.cgi/?xhr-info=1",data:!1,dataType:"json",success:function(t){if(Test.strContains(t,v___page_signin_form))return void(v___available_session=0);t[0].is_data&&($.each(t[0],function(t,a){if("cpu_percent"!=t&&"mem_percent"!=t&&"virt_percent"!=t&&"disk_percent"!=t||(Test.numeric(a)?localStorage.setItem(v___server_hostname+"-sysinfo_"+t+"_stats",a):localStorage.setItem(v___server_hostname+"-sysinfo_"+t+"_stats","")),i){if($(i).find('span[data-id="sysinfo_'+t+'"]').html(a),"local_time"==t||"uptime"==t||"proc"==t){var n=$(i).find('span[data-id="sysinfo_'+t+'"]'),s=n.find("a").length?n.find("a"):n.find("span"),o=s,r=$(i).find('span[data-id="sysinfo_'+t+'"]').text();"local_time"==t?time.tictac(1,1):o&&o.length&&n.html(o.html(r))}if(page_sysinfo_sensor_update_label(),$(i).find('.piechart[data-charts="sysinfo_'+t+'"]').length){var _=$("body").find('.piechart[data-charts="sysinfo_'+t+'"]');_.length&&!isNaN(parseInt(a))&&_.data("easyPieChart").update(a)}"cpu_percent"!=t&&"mem_percent"!=t&&"virt_percent"!=t&&"disk_percent"!=t||localStorage.setItem(v___server_hostname+"-sysinfo_"+t+"_seen",a),$(i).find(".modal-backdrop").remove()}if($__id__=moment().unix(),"cpu_percent"==t||"mem_percent"==t||"virt_percent"==t||"disk_percent"==t||"csf_title"==t||"csf_remote_version"==t||"authentic_remote_version"==t||"package_message"==t?localStorage.getItem(v___server_hostname+"-sysinfo_"+t)||localStorage.setItem(v___server_hostname+"-sysinfo_"+t,a):a&&null!=a&&NaN!=a?localStorage.setItem(v___server_hostname+"-sysinfo_"+t,a):localStorage.setItem(v___server_hostname+"-sysinfo_"+t,""),localStorage.getItem(v___server_hostname+"-sysinfo_package_message_initial")||localStorage.setItem(v___server_hostname+"-sysinfo_package_message_initial",1),"authentic_theme_version"==t&&!localStorage.getItem(v___server_hostname+"-sysinfo_theme_current_version")&&a&&localStorage.setItem(v___server_hostname+"-sysinfo_theme_current_version",a.match(/^\d+|\d+\b|\d+(?=\w)/g)[0]+"."+a.match(/^\d+|\d+\b|\d+(?=\w)/g)[1]),"csf_data"==t&&!localStorage.getItem(v___server_hostname+"-sysinfo_csf_current_version")&&a&&localStorage.setItem(v___server_hostname+"-sysinfo_csf_current_version",a.match(/^\d+|\d+\b|\d+(?=\w)/g)[0]+"."+a.match(/^\d+|\d+\b|\d+(?=\w)/g)[1]),"csf_title"==t||"csf_data"==t||"csf_remote_version"==t||"authentic_remote_version"==t||"authentic_theme_version"==t||"package_message"==t){if("package_message"===t&&!Core.curModuleFile("package-updates","update.cgi")){if((localStorage.getItem(v___server_hostname+"-sysinfo_"+t)!=a||1==localStorage.getItem(v___server_hostname+"-sysinfo_package_message_initial"))&&a&&a.indexOf("badge-danger")>-1){var l=theme_language("theme_xhred_notifications_packages_updates"),c=$(a).html().replace(/badge-danger/g,"badge-success"),d=e+"/package-updates/index.cgi?mode=updates";localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_package_message",JSON.stringify({title:l,time:$__id__,timestamp:$__id__,message:c,readStatus:0,type:t,link:d})),slider_mark_group_notifications_read("package_message"),localStorage.setItem(v___server_hostname+"-sysinfo_"+t,a),localStorage.setItem(v___server_hostname+"-sysinfo_package_message_initial",0),notifications(l,c,t,d)}else"package_message"===t&&localStorage.setItem(v___server_hostname+"-sysinfo_"+t,a);$(a).find("i.badge:first-child").length||slider_mark_group_notifications_read("package_message")}var h=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"),h&&localStorage.getItem(v___server_hostname+"-sysinfo_authentic_remote_version")&&"authentic_remote_version"==t&&h',d=e+"/sysinfo.cgi";localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_authentic_remote_version",JSON.stringify({title:f,time:$__id__,timestamp:$__id__,message:g,readStatus:0,type:t,link:d})),localStorage.setItem(v___server_hostname+"-sysinfo_"+t,a),localStorage.setItem(v___server_hostname+"-sysinfo_theme_current_version",a),notifications(f,g,t,d)}if("authentic_theme_version"!==t||Test.strContains(a,"CHANGELOG.md")||slider_mark_group_notifications_read("authentic_remote_version"),settings_sysinfo_csf_updates){var p=localStorage.getItem(v___server_hostname+"-sysinfo_csf_current_version");if(p&&null!=p&&localStorage.getItem(v___server_hostname+"-sysinfo_csf_remote_version")&&"csf_remote_version"==t&&p-1&&1!=localStorage.getItem(v___server_hostname+"-sysinfo_csf_not_running")){var v=theme_language("theme_xhred_notifications_firewall_danger"),b=theme_language("theme_xhred_notifications_firewall_danger_message").replace("%v",moment.unix($__id__).format(config_portable_theme_locale_format_long)),d=e+"/csf/index.cgi?action=lfdstatus";localStorage.setItem(v___server_hostname+"-notifications_"+$__id__+"_csf_title",JSON.stringify({title:v,time:$__id__,timestamp:$__id__,message:b,readStatus:0,type:t,link:d})),slider_mark_group_notifications_read("csf_title"),localStorage.setItem(v___server_hostname+"-sysinfo_csf_not_running",1),notifications(v,b,"csf_remote_version",d)}else a&&a.indexOf("label-danger")===-1&&(slider_mark_group_notifications_read("csf_title"),localStorage.removeItem(v___server_hostname+"-sysinfo_csf_not_running"))}if("csf_deny"==t){var x=JSON.parse(a);$.each(x,function(i,a){var a=a.split("|"),n=a[0],s=a[1],o=a[2],r=a[3],_=(a[4],a[5],a[6],a[7]);if(_=_.replace("*Port Scan*",o&&r?'Port '+r+" scan":"Port scan"),!localStorage.getItem(v___server_hostname+"-allowed_trigger_"+(n+s.replace(/\./g,"0"))+"_csf_deny")){var l=theme_language("theme_xhred_notifications_firewall_warning"),c=_+(o&&r?" ("+o+":"+r+")":""),d=e+"/csf/index.cgi?action=temp";localStorage.setItem(v___server_hostname+"-notifications_"+(n+s.replace(/\./g,"0"))+"_csf_deny",JSON.stringify({title:l,time:$__id__,timestamp:$__id__,message:c,readStatus:0,type:t,link:d})),localStorage.setItem(v___server_hostname+"-allowed_trigger_"+(n+s.replace(/\./g,"0"))+"_csf_deny",1),notifications(l,c,t,d)}})}if("cpu_percent"!=t&&"mem_percent"!=t&&"virt_percent"!=t&&"disk_percent"!=t||null!==localStorage.getItem(v___server_hostname+"-sysinfo_"+t+"_seen")&&a>=85&&localStorage.getItem(v___server_hostname+"-sysinfo_"+t+"_seen"),(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 y=!localStorage.getItem(v___server_hostname+"-sysinfo_"+t+"_stats"),w=$(".info-container .graph-container."+t);y?w.addClass("hidden").next("br").addClass("hidden"):w.removeClass("hidden").next("br").removeClass("hidden"),"cpu_percent"==t&&($("#right-side-tabs-sysinfo .graph-container."+t+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_cpu")).text(theme_language("theme_xhred_global_cpu_load")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_cpu_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_cpu")+")"),$("#right-side-tabs-sysinfo .graph-container."+t+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_cpu_percent_stats")+"%")),"mem_percent"==t&&($("#right-side-tabs-sysinfo .graph-container."+t+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_mem")).text(theme_language("body_real")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_mem_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_mem")+")"),$("#right-side-tabs-sysinfo .graph-container."+t+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_mem_percent_stats")+"%")),"virt_percent"==t&&($("#right-side-tabs-sysinfo .graph-container."+t+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_virt")).text(theme_language("body_virt")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_virt_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_virt")+")"),$("#right-side-tabs-sysinfo .graph-container."+t+" .bar").attr("style","width:"+localStorage.getItem(v___server_hostname+"-sysinfo_virt_percent_stats")+"%")),"disk_percent"==t&&($("#right-side-tabs-sysinfo .graph-container."+t+" .description").attr("title",localStorage.getItem(v___server_hostname+"-sysinfo_disk")).text(theme_language("body_disk")+": "+localStorage.getItem(v___server_hostname+"-sysinfo_disk_percent_stats")+"% ("+localStorage.getItem(v___server_hostname+"-sysinfo_disk")+")"),$("#right-side-tabs-sysinfo .graph-container."+t+" .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="'+t+'"]').html(a),"package_message"==t&&Core.moduleAvailable("package-updates")){var k=a;$('#right-side-tabs .info-container .info-list-data span[data-data="'+t+'"]').html($(k).html($(k).html().split(",")[0])[0].outerHTML)}if("local_time"==t){var C=$('#right-side-tabs .info-container .info-list-data span[data-data="'+t+'"]'),O=C.find("a").length?C.find("a"):C.find("span");O&&O.length&&O.html(O.next("span").detach()),time.tictac(1,1)}if("cpu_temperature"==t){var T=0;$.each($(a).filter(".badge-cpustatus"),function(e,t){var i,n=parseInt($(this).text().split(":")[1]),s=n,o=$(this).text().indexOf("°C")>-1;i=$(this).text().indexOf("RPM")>-1?HTML.label.rpm(s):HTML.label.temperature(n,o),"bg-warning"!=i&&"bg-danger"!=i||(T=1),$("#right-side-tabs .info-container .badge-drivestatus.badge-cpustatus").length||$('strong[data-stats="cpu"] + br[data-stats="cpu"]').after(a.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(i+"-dark")}).promise().done(function(){T||"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"==t){var S=0;$.each($(a).filter(".badge-drivestatus:not(.badge-cpustatus)"),function(e,t){var i,n=parseInt($(this).text().split(":")[1]),s=$(this).text().indexOf("°C")>-1;i=HTML.label.temperature(n,s),"bg-warning"!=i&&"bg-danger"!=i||(S=1),$("#right-side-tabs .info-container .badge-drivestatus:not(.badge-cpustatus)").length||$('strong[data-stats="drive"] + br[data-stats="drive"]').after(a.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(i+"-dark")}).promise().done(function(){S||"undefined"!=typeof config_custom_force_display_drive_sensors?$('.info-container [data-stats="drive"]').removeClass("hidden"):$('.info-container [data-stats="drive"]').addClass("hidden")})}if("warning_si"==t){var M=$("#right-side-tabs .info-container .warning-list-data");M.html(a.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")),"
    "==a&&M.empty()}if("extended_si"==t){var M=$("#right-side-tabs .info-container .extended-list-data"),I=a.replace(/aria-expanded="true"/gi,'aria-expanded="false"').replace(/collapse in/gi,"collapse");opened_tabs=$("#extended_sysinfo .panel .in").map(function(){I=I.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+'"'),I=I.replace('div id="'+this.id+'" class="panel-collapse collapse"','div id="'+this.id+'" class="panel-collapse collapse in"')}).promise().done(function(){M.html('
    '+I);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");var t=e.find('[data-referrer="acl_logins"] .panel-body > table:first-child');t.removeClass().addClass("table table-striped table-hover"),t.wrap('
    '),$("#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("+")})})}"collect_interval"==t&&(Test.numeric(a)?settings_side_slider_background_refresh_time=parseFloat(a):settings_side_slider_background_refresh_time=0),$.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)}),sysinfo_replace_dismiss_buttons(),setTimeout(function(){slider_check_notifications()},3e3),time.localize())}})}settings_side_slider_enabled&&("number"==typeof iupdateTimer&&clearInterval(iupdateTimer),settings_side_slider_background_refresh_time>0&&(iupdateTimer=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_set(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,o=a.timestamp,r=a.message,_=a.readStatus,l=a.type,c=a.link,d=s+"_"+n;"csf_deny"===l&&(d=s+"_"+n.replace(/\W/g,"")+r.replace(/\W/g,"")),$current_localData_notifications[d]=i+"~~~~"+n+"~~~~"+s+"~~~~"+o+"~~~~"+r+"~~~~"+_+"~~~~"+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,o,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(){function e(){var e=theme_language("theme_xhred_notification_none");$(".right-side-tabs .list-group").prepend('
    '+e.toUpperCase()+"
    "),$(".right-side-tabs-no-notifications").animate({opacity:"1"},$settings_animation_left_slide_time,function(){})}var t=browser.detect.safari(1),i=t?2:0;0===$(".right-side-tabs .list-group-item").length&&(t?setTimeout(function(){e()},2):e()),setTimeout(function(){slider_display_notification_badges()},$settings_animation_left_slide_time+i)}function favicon_init(){var e=0;"object"==typeof favicon&&favicon.lastNum&&(e=favicon.lastNum),favicon=new Favico({animation:"none",fontFamily:"serif"}),favicon_set(e)}function favicon_set(e){favicon.badge(e),titlenotifier.set(e),favicon.lastNum=e}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_toolbar(e){var t;return t=[{name:"styles",items:["Font","FontSize","Format"]},{name:"basicstyles",items:["Bold","Italic","Underline","Strike","Subscript","Superscript"]},{name:"colors",items:["TextColor","BGColor"]},{name:"paragraph",items:["JustifyLeft","JustifyCenter","JustifyRight","JustifyBlock","-","NumberedList","BulletedList","-","Blockquote","-","Outdent","Indent","-","BidiLtr","BidiRtl","-","RemoveFormat"]}],"basic"===e?t:[{name:"document",items:["Source","-","Preview","Print"]},{name:"clipboard",items:["Undo","Redo"]},{name:"editing",items:["Find","-","Emojione"]},{name:"links",items:["Link","Unlink","Anchor"]},{name:"insert",items:["InsertPre","CreateDiv","-","Table","base64image","HorizontalRule","PageBreak","Iframe"]},{name:"forms",items:["Form","Checkbox","Radio","TextField","Textarea","Select","Button","ImageButton","HiddenField"]},{name:"tools",items:["ShowBlocks"]},"/"].concat(t)}function editor_html_init(e,t){function i(e){v___theme_night_mode_enabled||v___theme_night_mode?($(e).find("body").addClass("nightRider"),setTimeout(function(){$(e).find("body").addClass("nightRider")},0)):"basic"!==t&&"monokai"===settings_cm_editor_palette&&($(e).find("body").addClass("dark"),setTimeout(function(){$(e).find("body").addClass("dark") +},0))}function a(){CKEDITOR.config.extraPlugins="emojione",CKEDITOR.config.dialog_noConfirmCancel=!0,CKEDITOR.config.toolbar=editor_html_toolbar(t);var a=get_server_data("language-full"),o=$(window).height()/e[1];CKEDITOR.replace(n,{language:a,width:"100%",baseFloatZIndex:20001,height:s?e[1]:o}),CKEDITOR.instances[n].on("instanceReady",function(t){function a(e){setTimeout(function(){i(e)},10),setTimeout(function(){i(e)},80),setTimeout(function(){i(e)},100),setTimeout(function(){i(e)},200),setTimeout(function(){i()},300)}t.editor.on("panelShow",function(e){v___theme_night_mode_enabled||v___theme_night_mode?$(e.data.element.$.children[0]).contents().find("body").addClass("nightRider"):$(e.data.element.$.children[0]).contents().find("body").removeClass("nightRider")}),t.editor.on("afterCommandExec",function(e){"source"===e.data.name&&1===e.data.command.previousState&&a(e.editor.document.$)}),a(t.editor.document.$),CKEDITOR.instances[n].resize("100%",s?e[1]:o,!1)}),CKEDITOR.instances[n].on("instanceReady",function(e){$(e.editor.document.$).click(function(){var t=$(e.sender.container.$).parents(".jsPanel").attr("data-uid");t&&t.length&&parent.window["jsp_"+parseInt(t.replace("jsp_",""))].front()}),e.editor.on("dialogShow",function(e){$(e.data._.element.$).find(".cke_dialog_ui_checkbox").removeClass().addClass("awcheckbox awobject"),$(e.data._.element.$).find(".cke_dialog_ui_checkbox_input").removeClass().addClass("iawobject").next("label").addClass("lawobject"),e.data._.name})}),e[2]===!0&&CKEDITOR.instances[n].on("change",function(t){this.updateElement(),set_onbeforeunload_status(1,0);var i=parseInt(e[3].replace("html_editor_",""))-1;$("#jsPanel-"+i).find("._filemanager_file_editor_save").addClass("text-danger __locked__"),$("#jsPanel-"+i).find("select[data-encoding]").addClass("pointer-events-none")}),"edit_web"===e[3]&&setTimeout(function(){$("hr + b").removeClass("hidden"),$(".__tmp__spinner").remove()},100)}var n,s=!Test.string(e[0]);s?e[3]:e[0];s?(n="__hm_editor_"+e[3],e[0].attr("id",n)):n=e[0],"object"==typeof CKEDITOR?a():(progress.start(),CKEDITOR_BASEPATH=v___server_js_path+"/ckeditor/",$.getScript(v___server_js_path+"/ckeditor/ckeditor.js?"+v___theme_version_plain,function(e,t,i){a(),progress.end()}))}function table_proc_size_columns(){var e=[];$.each($(".container-fluid tr td"),function(){var t=$(this).parents("table"),i=$(this).find("span[data-filesize-bytes]"),a=$(this).index();i.length&&($(this).attr("data-order",i.attr("data-filesize-bytes")),!Test.arrContains(e,a)&&e.push(a),t.attr("data-ordered",1),i.contents().unwrap())}).promise().done(function(){for(var t=0;t-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 mail_load_folders(){this.timeout&&clearInterval(this.timeout),"object"==typeof $.ui&&"function"==typeof $.ui.fancytree&&"object"==typeof mail&&"object"==typeof mail.folders&&"function"==typeof mail.folders.get?mail.folders.get():this.timeout=setTimeout(function(){mail_load_folders()},200)}function mail_load(e){if($t_uri_webmail&&settings_mail_ui){page.handle.content.offset(!0);var t=uri_parse_param("id",e),i=uri_parse_param("folder",e),a=uri_parse_param("start",e);if("object"==typeof mail?mail.messages.get({id:t,folder:i,start:a}):load.bundle(v___server_extensions_path+"/mail/mail",1,["mail.messages.get()"]),v___initial_load){var t=uri_parse_param("id");"object"==typeof mail?mail.messages.get(t):load.bundle(v___server_extensions_path+"/mail/mail",1,["mail.messages.get()"])}}}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){if(Test.strContains(e,v___page_signin_form))return void(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="'+e+'"]').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,t=$("#favorites-menu .favorites-menu-content li:not(.exclude) a").map(function(e,t){return navigation_trigger($(t).attr("href"),1)}).toArray(),i=$("#headln2c > .favorites, .xcustom-favorites"),a=navigation_trigger(URI(v___location).resource(),1);e=a.includes("index.cgi")?a.replace("index.cgi",""):a+"index.cgi",$.inArray(a,t)>-1||$.inArray(e,t)>-1?i.addClass("fa-star").removeClass("fa-star-o"):i.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,o=a.indexOf("°C")>-1;i=a.indexOf("RPM")>-1?HTML.label.rpm(s):HTML.label.temperature(n,o),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]")||Test.strContains(v___location_path,"init/edit_")||$("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){var i="MacIntel"===window.navigator.platform?1:0;if(!(!i&&e.ctrlKey||i&&e.metaKey))if($(e.target).is(".awobject, .iawobject, .lawobject, .awcheckbox, .awradio, .ui_link, .btn")){if($(e.target).is(".ui_link, .btn")){e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation();var a=$(e.target).attr("href")||$(e.target).find("a").attr("href");if(a&&a.length>1){var n=$(e.target)||$(e.target).find("a");Core.linkSameOrigin(n)?get_pjax_content(a):theme_open_new_tab(a,1)}return}}else if($(t).find("a[href]")&&!$("body").hasClass("servers")){var s=$(t).find("a[href]")[0],o=($(this).parents("tr.ui_checked_columns"),$(e.target).find('input[type="checkbox"]:not(":disabled")')),r=o.length;!s||$(this).find("a").attr("href")!==$(s).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||($(s).attr("target")?(e.preventDefault(),!r&&window.open($(s).attr("href"),$(s).attr("target"))):e.originalEvent&&(e.preventDefault(),get_pjax_content($(s).attr("href")))),r&&get_pjax_content($(s).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")&&1!==$(this).hasClass("_select-unselect_")){$(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=$.trim((a?$___text.nodeValue:" ").replace(/
    /g,"<hr>").replace(/
    /g,"<header>")),n=n.length&&" "!=n?n+"  ":n,s=$(this).attr("type").toLowerCase(),o=$(this).parents(".tab-pane").attr("id"),o=o&&o.length?o.replace(/[^a-zA-Z0-9_-]+/g,""):0,r=Math.floor(9e4*Math.random())+1e4,_=$(this).attr("id"),l=("eid_"+(_&&$(this).attr("name")?$(this).attr("name"):r)+"_"+r+"_"+e+"_"+o).replace(/[^a-zA-Z0-9_-]+/g,"_"),l=_&&1===$("body").find("#"+_.replace(/[^a-zA-Z0-9_-]+/g,"_")).length?_.replace(/[^a-zA-Z0-9_-]+/g,"_"):l;if(0===$(this).next("label").length&&0===i.length&&a){$(this).addClass("iawobject");var c='for="'+l+'"';$(this).attr("id",l),$($___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",l),$(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",l),$(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",l),$(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))return void(v___available_session=0);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"),i.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"]'),o=$(".refInputData").prev("span").find('input[type="radio"]'),r=$(".refInputData").prev("select").find('option[value="*"]');s.length?s.trigger("click"):o.length?o.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($is_history_action){function __m_ico_row_tb(){$("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 __m_ico_row_t(){$("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 __m_ico_row_b(){$("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")}function __m_ico_row_func(){return 0}if(update_navigation_module_name(),$is_history_action&&"undefined"!=typeof __cm_editor_static&&(__cm_editor_static.toTextArea(),$('button[data-form="submitter"]').unwrap(),$('.CodeMirror, button[data-form="submitter"] + button, .-helper.__helper, .-helper.soft_wt').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")}(),table_proc_size_columns(),$("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 select_for_edited_file=$('select[name="file"]:first, select[name="manual"]:first');select_for_edited_file.addClass("onchange_form_submit_triggger"),select_for_edited_file.next("button.ui_form_end_submit").addClass("hidden")}time.localize();var $langLocaleLangStr=theme_language("theme_xhred_title_language_locale"),$userminModule=Core.curModule("language"),$webminModule=Core.curModule("change-user"),$webminConfModule=Core.curModuleFile("webmin","edit_lang.cgi");if(Core.curModule("webmin")){var $targetIconTitle=$('.icons-container a[href*="edit_lang.cgi"]'),$targetSmallIconTitle=$('.small-icons-container a[href*="edit_lang.cgi"]'),$targetNoIconTitle=$('a[href*="edit_lang.cgi"] p > .fa-angle-right');if($targetIconTitle.length){var $targetIconTitleImg=$targetIconTitle.find("img").detach();$targetIconTitle.text($langLocaleLangStr).prepend($targetIconTitleImg,"
    ")}else $targetSmallIconTitle.length?($targetSmallIconTitle.find(".hidden").text($langLocaleLangStr),$targetSmallIconTitle.parent().attr("title",$langLocaleLangStr)):$targetNoIconTitle.length&&$targetNoIconTitle.parent().html('  '+$langLocaleLangStr)}if(($webminConfModule||$webminModule||$userminModule)&&!$is_history_action){var $dateFormatTarget=$('.container-fluid form select[name="lang"]'),$dateFormatTargetMore=$userminModule?$dateFormatTarget.next(".ui_form_end_buttons").find("tbody"):$dateFormatTarget.parents("tr").first().parent("tbody"),$dateForm=$dateFormatTargetMore.parents("form").first(),$dateFormatFinalTarget=$userminModule?$dateFormatTargetMore:$dateFormatTargetMore.find('select[name="lang"]').parents("tr").first();$webminModule&&$('[name="overlay"]').parent("td").parent("tr").addClass("hidden"),$webminModule||$("span[data-main_title]").text($langLocaleLangStr);var insertionRow=' '+theme_language($webminModule?"theme_xhred_title_webmin_ui_locale":"theme_xhred_title_locale_config")+($userminModule?":   ":"")+' '+theme_language($webminModule?"theme_xhred_title_locale_config_format_ui":"theme_xhred_title_locale_config_format")+' '+($userminModule?"    ":"")+" "+theme_language("theme_xhred_title_locale_lang_based")+'    '+theme_language("theme_xhred_title_locale_full")+'  `LLLL`

    "+theme_language("theme_xhred_global_output_example")+": "+moment().format("LLLL")+'

    ">   '+theme_language("theme_xhred_title_locale_long")+'  `LL`

    "+theme_language("theme_xhred_global_output_example")+": "+moment().format("LL")+'

    ">
     
    '+theme_language("theme_xhred_title_locale_short")+'  `L`

    "+theme_language("theme_xhred_global_output_example")+": "+moment().format("L")+'

    ">
    '+(Core.moduleAvailable("webmin")?'
    '+theme_language("theme_xhred_title_locale_non_ui_config")+' 
    ':"")+" ";$userminModule?$dateFormatFinalTarget.prepend(insertionRow):($dateFormatFinalTarget.after(insertionRow),Core.setModuleData("/webmin/edit_ui.cgi",["dateformat"])),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-get_theme_locale_languages=1",data:!1,dataType:"text",async:v___available_navigation,success:function(e){$('select[data-select="locales"]').replaceWith(e),$('#config_portable_theme_locale_languages option[value="ru-su"]').remove();var t='input[id*="config_portable_theme_locale_language"], select[name="config_portable_theme_locale_languages"], input[name="config_portable_theme_locale_format_full"], input[name="config_portable_theme_locale_format_long"], input[name="config_portable_theme_locale_format_short"]',i=$(t);$(i).on("change keyup focus",function(e){var t=$(this).attr("name"),i=$(this).parent(),a=i.data("title"),n=$('select[name="config_portable_theme_locale_languages"]').val();t.indexOf("theme_locale_format_")>-1&&i.attr("title",a.replace(/g'>(.*)<\/i>/g,"g'>"+(n?moment().locale(n).format($(this).val()):moment().format($(this).val()))+"")).tooltip("fixTitle").tooltip("show");var s=$("._locale_config");"config_portable_theme_locale_language"===t&&"1"!=$(this).val()?"focus"!=e.type&&s.addClass("hidden"):"focus"!=e.type&&s.removeClass("hidden")}),$($dateForm).on("submit",function(){var e=$('[name="dateformat"]');e.length&&Core.updateModuleData("/webmin/edit_ui.cgi","/webmin/change_ui.cgi",{dateformat:$.trim(e.val())}),$.each($(t.replace('locale_language"]','locale_language"]:checked')),function(e,t){var i=$(this).attr("name"),a=$(this).val();"config_portable_theme_locale_languages"===i&&""===a&&(a=get_server_data("language-full")),localStorage.setItem(v___server_hostname+"-"+i,a),window[i]=a}).promise().done(function(){var e=$dateForm.find('select[name="lang"]').val();if(e.indexOf(".")>-1&&(e=e.split(".")[0]),$webminModule&&"1"==$dateForm.find('[name="lang_def"]:checked').val()){var t=$('[name="lang_def"][value="1"]').next("label").text().match(/\(([^)]+)\)/),t=t&&t[0]&&t[1]?t[1]:get_server_data("language-full");t.indexOf(".")>-1&&(t=t.split(".")[0]),e=t}moment.locale(config_portable_theme_locale_language&&"0"!=config_portable_theme_locale_language?config_portable_theme_locale_languages:e),theme_config("save"),setTimeout(function(){navigation_update()},2e3)})})}})}v___available_navigation&&Core.curModule("tunnel")&&$("form").on("submit",function(e){var t=$(quirks.active_element());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){if(Test.strContains(e,v___page_signin_form))return void(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 f__lnk_t_btn-el btn-transparent btn-link-bordered btn-xxs margined-top--3-5").removeClass("ui_link")}),0==get_access_level()&&v___available_navigation&&!$is_history_action&&$("#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(),!$is_history_action&&page_radios_evolve();var $onLoad_checkBox=$('.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"))return void(v___available_navigation?$(this).trigger("contextmenu"):$(this).parents(".gl-icon-container").trigger("contextmenu"));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&&i.indexOf("://")===-1?open(navigation_trigger(t,1)):open(i),e.preventDefault(),e.stopPropagation()}),Core.curModule("servers")&&$.each($('a[href*="link.cgi"]'),function(){var e=$(this).attr("href");e&&e.match(/(link.cgi\/\d+)/)&&$(this).attr("target","_blank")}),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.chooser_button").length>0&&$(this).css("margin-right","4px")}),!$is_history_action){$(".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, .opener_hidden").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"));var target_restore_selector='a[id*="opener"][id$="_restore"]';$('a[id*="opener"][id$="_restore"]').parent().is("p")&&($('a[id*="opener"][id$="_restore"]').next("a").parent("p").replaceTagName("div"),$('a[id*="opener"][id$="_restore"]').next("a").removeClass().addClass("opener_extra_container_a_style link_hover_effect").parent("div").addClass("opener_extra_container opener_extra_container_style margined-top-10"),$('a[id*="opener"][id$="_restore"]').remove()),$('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()})}if(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")){if(v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-user.cgi"){navigation_clear();var $target_parents_row=$('[name="settings_navigation_color"]').parent("td").parent("tr"),rows=' '+theme_language("settings_grayscale_level_navigation")+'
    '+theme_language("settings_grayscale_level_navigation_description")+'
    '+theme_language("settings_sepia_level_navigation")+'
    '+theme_language("settings_sepia_level_navigation_description")+'
    '+theme_language("settings_saturate_level_navigation")+'
    '+theme_language("settings_saturate_level_navigation_description")+'
    '+theme_language("settings_hue_level_navigation")+'
    '+theme_language("settings_hue_level_navigation_description")+'
    '+theme_language("settings_invert_level_navigation")+'
    '+theme_language("settings_invert_level_navigation_description")+'
    '+theme_language("settings_brightness_level_navigation")+'
    '+theme_language("settings_brightness_level_navigation_description")+'
    '+theme_language("settings_contrast_level_navigation")+'
    '+theme_language("settings_contrast_level_navigation_description")+'
    ';$target_parents_row.after(rows)}var ev_change_atsettings='form[action*="settings.cgi"] select, form[action*="save_config.cgi"] select, form[action*="settings.cgi"] input, form[action*="save_config.cgi"] input';$("body").undelegate(ev_change_atsettings,"change"),$("body").on("change",ev_change_atsettings,function(e){var t=$(this).val();if("true"==t||"false"==t){if("true"==t)var i=!0;else if("false"==t)var i=!1}else var i=t;if(window[$(this).attr("name")]=Test.numeric(i)?parseFloat(i):i,void 0!==e.originalEvent)if(v___initial_load&&"settings-user.cgi"!==v___location_file)v___initial_load=0;else{var a='input[name="settings_side_slider_enabled"]';!$(e.target).is(a)&&$(e.target).is(a)||theme_config_controls(1)}});var ev_keydown_atsettings='form[action*="settings.cgi"] input, form[action*="save_config.cgi"] input';$("body").undelegate(ev_keydown_atsettings,"keydown"),$("body").on("keydown",ev_keydown_atsettings,function(e){void 0!==e.originalEvent&&theme_config_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_update(),theme_config("save"),navigation_render_start(),spinnerfy_buttons($(this),[-.5,-25,"small",750]),setTimeout(function(){navigation_update()},1400)}),$(function(){function e(){$("body").undelegate("#atrestore:not(.disabled)","click"),$("#atrestore:not(.disabled)").off("click.confirm"),$("#atrestore:not(.disabled)").on("click",function(){var e=get_onbeforeunload_status();set_onbeforeunload_status(0),e&&setTimeout(function(){set_onbeforeunload_status(e)},2500)}),$("#atrestore:not(.disabled)").confirmation({classNameRemove:"btn-default"},function(){$(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){if(Test.strContains(e,v___page_signin_form))return void(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")&&!$is_history_action&&($(".container-fluid .nav.nav-tabs").prepend('
  • '),$(".container-fluid .tab-pane").first().before('
    '),$('.container-fluid .nav-tabs a[href="#atsettings"]').tab("show")),$is_history_action||$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-settings=1",data:!1,dataType:"text",success:function(t){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_shell","settings_hotkey_focus_search","settings_hotkey_navigation","settings_hotkey_slider","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_fixed_toggle","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&&"settings_side_slider_fixed_toggle"!=t||$('input[name="settings_side_slider_fixed"][value="false"], input[name="settings_side_slider_fixed_toggle"][value="false"]').trigger("click"),setTimeout(function(){$('input[name="'+t+'"], select[name="'+t+'"]').prop("disabled",!0).parent(".aradio").addClass("disabled")},10)}):$.each(t,function(e,t){("settings_side_slider_fixed"!=t||"settings_side_slider_fixed"==t&&"true"!=$('input[name="settings_navigation_always_collapse"]:checked').val())&&("settings_side_slider_fixed_toggle"!=t||"settings_side_slider_fixed_toggle"==t&&"true"!=$('input[name="settings_navigation_always_collapse"]:checked').val())&&$('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 o(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_navigation_always_collapse"]:checked'));var t=["settings_side_slider_fixed","settings_side_slider_fixed_toggle","settings_leftmenu_width"];"true"==e.val()?(Core.var.slider_pinned=-1,$.each(t,function(e,t){"settings_side_slider_fixed"!=t&&"settings_side_slider_fixed_toggle"!=t||$('input[name="settings_side_slider_fixed"][value="false"], input[name="settings_side_slider_fixed_toggle"][value="false"]').trigger("click"),setTimeout(function(){$('input[name="'+t+'"]').prop("disabled",!0).parent(".aradio").addClass("disabled")},10)})):$.each(t,function(e,t){"settings_side_slider_fixed"!=t&&"settings_side_slider_fixed_toggle"!=t||"false"==$('input[name="settings_side_slider_enabled"]:checked').val()||$('input[name="'+t+'"]').prop("disabled",!1).parent(".aradio").removeClass("disabled")})}if(Test.strContains(t,v___page_signin_form))return void(v___available_session=0);$("#atsettings").html(t);var _=get_server_data("theme-version"),l=$('input[name="settings_sysinfo_theme_updates"]').first().parents("td").parent("tr.atshover"),c=l.find("td").first(),d=c.find(".smaller");l.next("tr").find("td").first().find("b");d.append(' ('+theme_language("theme_xhred_global_installed_version").toLowerCase()+" "+_+')'+theme_spinner_small("in-btn-md tmp_spinner_theme_version"," ","width:10px; height:10px; margin-left: 5px;")),$.ajax({type:"POST",url:v___location_prefix+"/index.cgi/?xhr-theme_latest_version=1",data:!1,dataType:"json",success:function(e){var t=new String,i=e[0],a=i!=e[1]&&e[1],n=$("[data-text-installed]"),s=$(".tmp_spinner_theme_version"),o=$("em[data-theme-stable-version]"),r=$("span[data-theme-versions]");i&&i!=_&&(t+=", "+theme_language("theme_xhred_global_latest_stable").toLowerCase()+' '+i+""),a&&a!=_&&(t+=", "+theme_language("theme_xhred_global_latest_beta").toLowerCase()+' '+a+""),_&&_.length<=5&&i&&i.length<=5&&i!=_&&o.addClass("text-danger"),t&&!t.length&&(n.text(theme_language("theme_xhred_global_installed_and_latest_version").toLowerCase()),o.addClass("text-success")),r.replaceWith(t),s.remove()},error:function(){}}),page.render.module_config([0,1,0,0,0,0,0,0,1]);var h=$("div#atsettings").find(".ui_form");$__theme_text_right_save=h.data("text-save"),$__theme_text_right_saved=h.data("text-settings_right_saved"),$__theme_text_right_saving=h.data("text-settings_right_saving"),$__theme_text_right_restore_defaults=h.data("text-settings_right_restore_defaults"),$__theme_text_right_restored=h.data("text-settings_right_restored"),$__theme_text_right_restoring=h.data("text-settings_right_restoring"),$__theme_text_right_error=h.data("text-error"),$('.container-fluid .nav-tabs a[href="#atsettings"]').text(h.data("text-current_theme")),$("div#atsettings").removeClass("text-center"),e(),theme_config_update();var f=$("body").find(".fa.fa-sub-title").parent("span");$(f).next("br").remove(),$(f).next("div.smaller").attr("style","margin-top: -15px !important"),f.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))}),o(),$('input[name="settings_sysinfo_easypie_charts"]').on("change",function(){o($(this))}),$('select[name="settings_navigation_color"]').on("keyup change",function(e){var t=$(this).val(),i=$("link[data-palette]"),a="blue"!=t&&"white"!=t;a&&$("head").append(''),setTimeout(function(){get_server_data("data-theme",t),i.remove(),get_server_data("data-default-theme",t),$("body .user-link.palette-toggle").find(".fa-sun").trigger("click"),theme_config_update()},a?800:0)}),$('select[name="settings_background_color"]').on("click keyup change",function(){var e=$(this).val();get_server_data("data-background-style",e),get_server_data("data-background-style",e),$("link[data-palette]").remove(),"gainsboro"!=e&&($("head").append(''),$('select[name="settings_navigation_color"]').val("gunmetal").trigger("change")),theme_config_update()}),$('input[name="settings_enable_container_offset"]').change(function(){var e=$(this).val(),t=$(".container-fluid");"false"==e?t.removeClass("col-lg-10 col-lg-offset-1").addClass("margined-top-15"):t.addClass("col-lg-10 col-lg-offset-1").removeClass("margined-top-15")}),$('input[name="settings_contrast_mode"]').change(function(){var e=$(this).val();$("link[data-high-contrast]").remove(),"true"==e&&$("head").append(''),get_server_data("data-high-contrast","true"==e?"1":"0")}),$('input[name="settings_right_page_hide_persistent_vscroll"]').change(function(){var e=$(this).val(),t=$("#content.__page");"true"==e?t.removeClass("fvscroll"):t.addClass("fvscroll")}),$('select[name="settings_side_slider_palette"]').change(function(){$("body .right-side-tabs, body .right-side-tabs-toggler").attr("data-background-style",$(this).val())}),$('input[name="settings_side_slider_enabled"]').change(function(){"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_config_update(),page_resized()}),$('input[name="settings_side_slider_fixed"]').change(function(){Core.var.slider_pinned=-1;var e=$(".right-side-tabs-dismiss .fa2-collapse-right");"true"==$(this).val()?(set_side_slider_visibility(1),e.removeClass("fa-rotate-45")):(set_side_slider_visibility(0),e.addClass("fa-rotate-45")),theme_config_update()}),$('input[name="settings_side_slider_fixed_toggle"]').change(function(e){var t=$(".right-side-tabs-dismiss .fa2-collapse-right");"true"==$(this).val()?t.removeClass("hidden"):(("true"==$('input[name="settings_side_slider_fixed"]:checked').val()&&t.hasClass("fa-rotate-45")||"false"==$('input[name="settings_side_slider_fixed"]:checked').val()&&!t.hasClass("fa-rotate-45"))&&t.trigger("click"),t.addClass("hidden")),Core.var.slider_pinned=-1,theme_config_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_set(0))),theme_config_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 g=$('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"]');g.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_config_update()}),g.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")}),setTimeout(function(){$(".mobile-menu-toggler:visible").length&&$('input[name="settings_leftmenu_width"]').prop("disabled",!0)},100);var p=$('input[name="settings_leftmenu_width"]');p.on("click keyup change",function(e){page_adjust($(this).val(),$(this).val()),$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),theme_config_update(),settings_leftmenu_width_initial=$(this).val()}),$('input[name="settings_navigation_always_collapse"]').change(function(e){r($(this)),"true"==$(this).val()?($("html").attr("data-navigation-collapsed",1),$(".mobile-menu-toggler").removeClass("visible-xs"),navigation_hide()):"false"==$(this).val()&&($("html").attr("data-navigation-collapsed",0),$(".mobile-menu-toggler").addClass("visible-xs")),setTimeout(function(){page_resized()},10)}),r(),p.each(function(){$('code[data-name="'+$(this).attr("name")+'"]').text($(this).val()),settings_leftmenu_width_initial=$(this).val()}),"restored"==v___location_query&&(g.trigger("click"),p.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_real_time_status_disk"], 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_updates_for_usermin"], input[name="settings_show_theme_configuration_for_admins_only"]').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("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=$.merge($("head").find('link[href*="/authentic."]'),$("head").find('link[href*="/authentic."]')),a=a.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"),$(".right-side-tabs-toggler").length||($('input[name="settings_side_slider_enabled"][value="false"]').trigger("click"),$('input[name="settings_side_slider_enabled"]').attr("disabled","disabled")),page_resized(),$('input[name="settings_show_webmin_tab"]').parents("td").parent("tr").addClass("hidden")}})});var ev_click_atsettings="#atsave:not(.btn-inverse):not(.disabled)";$("body").undelegate("#atsave:not(.btn-inverse):not(.disabled)","click"),$("body").on("click","#atsave:not(.btn-inverse):not(.disabled)",function(e){e.preventDefault();var t=$(this);spinnerfy_buttons(t,[1.5,-33,"small",1e3]),set_onbeforeunload_status(0,0),theme_config_update(),theme_config("save"),Core.updateModuleData("/webmin/edit_startpage.cgi","/webmin/change_startpage.cgi",{gotomodule:$.trim($('select[name="goto_webmin_default_module"]').val())}),setTimeout(function(){$.ajax({type:"POST",url:v___location_prefix+"/index.cgi?xhr-settings=1&save=1",data:Core.get_global_vars(["settings_"],1),dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);navigation_update(),theme_config_controls(0),settings_sysinfo_real_time_status?"object"==typeof stats?(stats.general.timeout=settings_sysinfo_real_time_timeout,stats.general.query()):load.bundle(v___server_extensions_path+"/stats/stats",0,["stats.general.timeout = settings_sysinfo_real_time_timeout","stats.general.query()"]):"object"==typeof stats&&stats.general.kill()},error:function(){t.addClass("btn-danger").removeClass("btn-success btn-inverse opacity-0_5")}})},1e3)})}var theme_control_pages=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-logos.cgi"||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"settings-backgrounds.cgi";if($is_history_action||!theme_control_pages&&!Core.curModuleFile("webmin","edit_themes.cgi")||navigation_clear(),!$is_history_action&&theme_control_pages){check_location_resource("/settings-logos.cgi?saved=1")&&$.each($(".file_chooser_button_preview:first"),function(){$(this).hasClass("disabled")?$("aside + .__logo").remove():matchMedia("(max-width: 1080px)").matches||($("aside + .__logo").length?($(".__logo img").attr("src",$("[data-image-lga]").attr("data-image")),$("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 ev_click_atsettings2=".authentic_update:not(.disabled), .page_footer_ajax_submit:not(.disabled)";$("body").undelegate(ev_click_atsettings2,"click"),$("body").on("click",ev_click_atsettings2,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_language("theme_xhred_settings_right_theme_bgs")+' '+theme_language("theme_xhred_settings_right_theme_logos")+" '+theme_language("theme_xhred_global_save")+" ")}},1300)},10)}if($is_history_action||v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-logos.cgi"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-backgrounds.cgi"||($(function(){function e(e){void 0===e&&(e=i);var t=["authenticated_logo_file","authenticated_bg_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"==a&&$('input[name="'+t+'"]').parents(".file-input-wrapper").prev(".file_chooser_button_preview").removeClass("disabled")})}function t(e){void 0===e&&(e=n);var t=["unauthenticated_logo_file","unauthenticated_bg_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"==n&&$('input[name="'+t+'"]').parents(".file-input-wrapper").prev(".file_chooser_button_preview").removeClass("disabled")})}var i=$('input[name="authenticated_logo"]:checked, input[name="authenticated_bg"]:checked'),a=i.val(),n=$('input[name="unauthenticated_logo"]:checked, input[name="unauthenticated_bg"]:checked');n.val();e(),$('input[name="authenticated_logo"], input[name="authenticated_bg"]').on("change",function(){e($(this))}),t(),$('input[name="unauthenticated_logo"], input[name="unauthenticated_bg"]').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 > td").on("mouseover",function(){$(this).find(".btn-hidden").removeClass("hidden")}).on("mouseout",function(){$(this).find(".btn-hidden").addClass("hidden")}),(Core.curModule("software")&&Test.strContains(v___location_file,"tree.cgi")||Core.curModuleFile("cluster-software","edit_host.cgi"))&&($('img[src*="images/"]').each(function(e,t){var i=$(this);i.next("a").removeClass(),Test.strContains(i.attr("src"),"close")&&i.replaceWith(''),Test.strContains(i.attr("src"),"open")&&i.replaceWith(''),Test.strContains(i.attr("src"),"pack")&&i.replaceWith('')}),$('a[href*="closeall.cgi"]').before('
    ')),(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 $mail_ar_selector='form.ui_form[action="index.cgi"]',$mail_icon_class="fa fa-fw fa-lg text-semi-light vertical-align-baseline fa-angle-";$($mail_ar_selector+' img[src*="images/left"], center img[src*="images/left"]').each(function(){$(this).replaceWith('')}),$($mail_ar_selector+' img[src*="images/right"], center img[src*="images/right"]').each(function(){$(this).replaceWith('')}),$($mail_ar_selector+' img[src*="images/first"]').each(function(){$(this).replaceWith('')}),$($mail_ar_selector+' img[src*="images/last"]').each(function(){$(this).replaceWith('')}),$('button[name="razor"], button[name="ham"]').on("click",function(){$(this).parents("form").attr("target","_blank")})}if(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"))}),!$is_history_action){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 $_t_title=$('form[action="save.cgi"]').find(".table-title"),$_tt=$_t_title.find("tt").detach();$("#headln2c").find("[data-main_title]").after("
    "+$_tt[0].outerHTML+"
    "),$_t_title.remove()}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(".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: 21px !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-xxs btn-transparent btn-link-bordered f__lnk_t_btn-el").css("margin-right","3px").removeClass("ui_link").prepend(' '),$(this).parents("table").find("thead > tr > th:eq(2)").addClass("pointer-events-none")}),$('td.td_tag:contains("|")').contents().filter(function(){return 3==this.nodeType}).remove(),theme_buttonify(["/custom/","/custom/index.cgi"],".container-fluid table td.td_tag:nth-child(3)",'a[href^="form.cgi"]',"btn btn-primary btn-xxs vertical-align-top margined-top-2 margined-left--4 ---forced","fa-cog","","","","|"),theme_buttonify(["/custom/","/custom/index.cgi"],".container-fluid table td.td_tag:nth-child(3)",'a[href^="run.cgi"], a[href^="sql.cgi"]',"btn btn-success btn-xxs vertical-align-top margined-top-2 margined-left--4 ---forced","fa-play fa-0_85x","","","","|"),theme_buttonify(["/custom/","/custom/index.cgi"],".container-fluid table td.td_tag:nth-child(3)",'a[href^="view.cgi"]',"btn btn-info btn-xxs vertical-align-top margined-top-2 margined-left--4 ---forced","fa-pencil-square-o","","","","|"),theme_buttonify(["/custom/","/custom/index.cgi"],".container-fluid table td.td_tag:nth-child(3)",'a[href^="sqlform.cgi"]',"btn btn-info btn-xxs vertical-align-top margined-top-2 margined-left--4 ---forced","fa-cog","","","","|"),theme_buttonify(["/custom/","/custom/index.cgi"],".container-fluid table.ui_grid_table td:last-child",'a.ui_link[href^="edit_"]',"btn btn-default btn-transparent btn-transparent-link btn-xxs vertical-align-top margined-top-2 margined-right-5 pull-right btn-dnwo ---forced","fa-pencil","","","","|"),$("body.custom table.ui_grid_table tr td > form .table-responsive table tr:first-child td.col_header button.ui_submit").prepend(''),$.fn.mytxtW=function(e,t){return $.fn.mytxtW.fakeEl||($.fn.mytxtW.fakeEl=$("").hide().appendTo(document.body)),$.fn.mytxtW.fakeEl.text(e||this.val()||this.text()||this.attr("placeholder")).css("font",t||this.css("font")),$.fn.mytxtW.fakeEl.width()},$('table.ui_grid_table td input[type="text"], table.ui_grid_table td textarea').on("input",function(){var e=$(this).mytxtW()+10;$(this).css({width:e})}).trigger("input");var $empty_cells=$("table.ui_grid_table tbody tr.ui_grid_row td.ui_grid_cell");$.each($empty_cells,function(){var e=$(this).html();("
    "==e||e.length<10)&&$(this).remove()})}if(theme_buttonify(["/syslog-ng/list_destinations.cgi"],".container-fluid .table tbody tr td:last-child",'a[href*="view_log.cgi"]',"btn btn-transparent btn-link-bordered btn-xxs vertical-align-top margined-top-1",""),theme_buttonify(["/virtual-server/edit_newmysqls.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-1","fa-cog"),theme_buttonify(["/virtualmin-git/","/virtualmin-git/index.cgi"],".container-fluid table td.td_tag",'a[href*="delete.cgi"]',"btn btn-danger btn-xxs vertical-align-top margined-top-2 ---forced","fa-times-circle","","","","|"),theme_buttonify(["/virtualmin-git/","/virtualmin-git/index.cgi"],".container-fluid table td.td_tag",'a[href*="//"]',"btn btn-transparent btn-link-bordered btn-xxs vertical-align-top margined-left--4 margined-top-2 ---forced",""),theme_buttonify(["/virtualmin-git/","/virtualmin-git/index.cgi"],".container-fluid table td.td_tag",'a[href*="help.cgi"]',"btn btn-info btn-xxs vertical-align-top margined-left--4 margined-top-2 ---forced",""),theme_buttonify(["/webalizer/","/webalizer/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-1",0),theme_buttonify(["/cpan/edit_mod.cgi"],".container-fluid .table tbody tr td","a.ui_link","btn btn-transparent btn-link-bordered btn-xxs vertical-align-top margined-top-1 margined-right--5 btn-dnwo ---forced","","","","","|"),theme_buttonify(["/forward/index.cgi","/forward/"],".container-fluid",'.panel-body > a:first[href*="simple"]',"btn btn-default _btn-links-top btn-xs vertical-align-top margined-top-2 margined-left-3",0,"","","","|"),theme_buttonify(["/forward/index.cgi","/forward/"],".container-fluid",".panel-body > span[data-unckecked]","btn btn-info _btn-links-top btn-xs vertical-align-top margined-top-2 margined-left-3",0,"","","","|"),theme_buttonify(["/acl/list_sessions.cgi"],".container-fluid table td.td_tag",'a[href*="webminlog/"]',"btn btn-info btn-xxs vertical-align-top margined-top-2 ---forced",0,"","","","|"),theme_buttonify(["/acl/list_sessions.cgi"],".container-fluid table td.td_tag",'a[href*="delete_session.cgi"]',"btn btn-danger btn-xxs vertical-align-top margined-left--4 margined-top-2 ---forced","fa-unplugged"),theme_buttonify(["/firewall/index.cgi","/firewall6/index.cgi","/firewall/","/firewall6/"],".container-fluid","style + b + b:first, style + b + a + b:first, a.ui_link:first","btn btn-link btn-link-bordered _btn-links-top btn-xs vertical-align-top margined-top-2 margined-left-0",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 btn-dnwo f__lnk_t_btn-el margined-left-3 vertical-align-top margined-top-2","fa-eye","|",""),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 btn-dnwo margined-left-3 vertical-align-top margined-top-2 --to-new-tab",0,"","","","|"),theme_buttonify(["/virtual-server/","/virtual-server/index.cgi","/virtual-server/edit_plan.cgi"],".container-fluid form table tbody td",'a[href*="list_users.cgi?"], a[href*="list_aliases.cgi?"]',"btn btn-link btn-link-bordered btn-xxs btn-hover-hide vertical-align-top margined-top-2",0,"(~)"," ~ ",""),theme_buttonify(["/server-manager/","/server-manager/index.cgi"],".container-fluid form table tbody td",'a[href*="mass_update_form.cgi?"]',"btn btn-link btn-link-bordered btn-xxs btn-transparent btn-link-bordered vertical-align-top margined-left-3 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"),theme_buttonify(["/ldap-server/edit_schema.cgi"],".container-fluid table tr.ui_checked_columns td",'a[href*="view_sfile.cgi"]',"btn btn-info btn-xxs vertical-align-top margined-top-1 ---forced",0,"","","","|"),theme_buttonify(["/ldap-server/edit_schema.cgi"],".container-fluid table tr.ui_checked_columns td",'a[href*="edit_sfile.cgi"]',"btn btn-warning btn-xxs vertical-align-top margined-left--4 margined-top-1 ---forced","fa-pencil-square-o"),($('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+"/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 margined-top--2 f__lnk_t_btn-el").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 margined-top--2 f__lnk_t_btn-el").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 margined-top--2 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 f__lnk_t_btn-el").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 margined-top--2 f__lnk_t_btn-el").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 margined-top--2 f__lnk_t_btn-el").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 f__lnk_t_btn-el").removeClass("heighter-34").removeClass("ui_link")}),v___location_path==v___location_prefix+"/software/list_pack.cgi")){var __btn___str='td a.ui_link[href*="view.cgi"]';$('td a.ui_link[href*="view.cgi"]').html('').addClass("ui_link_replaced btn btn-default btn-xxs f__lnk_t_btn-el").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 __delete=[];$.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(),__delete.push(e))}), +$.isEmptyObject(__delete)||($(".panel-body > table.table.table-striped thead").find("th:nth-child(3)").remove(),delete __delete)}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 $table_header_links=$(".panel-heading > table.header > tbody > tr > td > a");$.each($table_header_links,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-logos.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-logos.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",trigger:"hover",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*="help.cgi/"], 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(!$is_history_action){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, form + script + a[href*="newdb_form.cgi"]').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()),(Core.curModuleFile("server-manager","index.cgi")||Core.curModuleFile("server-manager",""))&&$(this).parent('form[action="mass.cgi"]').length&&(($(this).is(":nth-child(1)")||$(this).is(":nth-child(6)"))&&$(this).html(' '+$(this).text()),($(this).is(":nth-child(2)")||$(this).is(":nth-child(7)"))&&$(this).html(' '+$(this).text()),($(this).is(":nth-child(3)")||$(this).is(":nth-child(8)"))&&$(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).html()):$(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()),$(this).attr("href")&&$(this).attr("href").indexOf("grace_form")>-1&&$(this).html(' '+$(this).text())),$(this).attr("href")&&$(this).attr("href").indexOf("edit_manual")>-1&&$(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")}),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"fetchmail/"&&$("a.ui_link").each(function(){function e(e){return' '}$(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(),$(this).attr("href").indexOf("edit_poll")>-1&&$(this).prepend(e("plus-square-o")),$(this).attr("href").indexOf("edit_global")>-1&&$(this).prepend(e("pencil-square-o")),$(this).attr("href").indexOf("check")>-1&&$(this).prepend(e("check-square-o"))}),v___location_directory_unslashed_trail_slashed==v___location_prefix_unslashed_trail_slashed+"filter/"&&$("a.ui_link").each(function(){function e(e){return' '}$(this).attr("href").indexOf("edit_auto")>-1&&$(this).find("i").replaceWith(e("reply")),$(this).attr("href").indexOf("edit_forward")>-1&&$(this).find("i").replaceWith(e("reply-all"))}),$('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"],"basic"),$("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 "+($editor_mode_link_button_state==-1?"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&&$('.container-fluid select.ui_select[name="id"] > 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-top: -27px !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($(".container-fluid input:not(.ui_upload)"),function(){"28px"==$(this).css("height")&&$(this).prev("input").addClass("heighter-28")}),(Core.curModule("syslog")||Core.curModule("phpini"))&&$(".container-fluid .chooser_button + .ui_form_end_submit").addClass("heighter-28"),Core.curModuleFile("virtual-server","backuplog.cgi")&&$('.container-fluid input[name="search"]').addClass("margined-top--1"),Core.curModuleFile("usermin","list_sessions.cgi")&&$('.container-fluid input[name="user"] + button + button').addClass("heighter-34-force"),$.each($(".container-fluid select"),function(){32==$(this).next("input").outerHeight()&&$(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.curModule("language")&&$('select[name="lang"]').addClass("heighter-34"),Core.curModuleFile("virtual-server","edit_script.cgi")){var x1z1x1c41=$('input[name="version"]');x1z1x1c41.length&&x1z1x1c41.attr("style",x1z1x1c41.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(".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(){32==$(this).next("input").outerHeight()||32==$(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")||Core.curModuleFile("server-manager","login.cgi")){var tmp__is__m__term=$("iframe");if(tmp__is__m__term.length){var $this=tmp__is__m__term;$this.on("load",function(){$this.contents().find("#term").css("width","99.3%").css("height","96vh").css("margin-top","1px")}),$(this).next("br").remove().next('input[type="button"]').remove(),$(this).next('input[type="button"]').remove(),$(this).next("p").remove()}}if($.each($(".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","").addClass("file_chooser_button_attached_input")}),$.each($(".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(.chooser_button)"),function(){$(this).removeClass("heighter-28").addClass("heighter-34")}),v___location_path!=v___location_prefix+"/virtualmin-svn/"&&v___location_path!=v___location_prefix+"/virtualmin-svn/index.cgi"||$.each($("tr > td.td_tag > button"),function(){$(this).addClass("btn-hover-wash_off-in-row bhw-sm heighter-28 heighter-28-force margined-top-2 margined-bottom-2"),$(this).find(".fa-backup").length&&$(this).removeClass("heighter-28-force")}),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"&&v___location_path!=v___location_prefix+"/server-manager/massshell.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(),setTimeout(function(){var e=$("#content");e.animate({scrollTop:e.find(v___page_container).outerHeight()},$settings_animation_tabs_slide_time/1.5)})),$.each($("input"),function(){28==$(this).outerHeight()&&28!=$(this).next("input").outerHeight()&&$(this).is(':not([type="hidden"])')&&$(this).next("input").addClass("heighter-28")}),$.each($(".container-fluid select"),function(){32==$(this).outerHeight()&&32!=$(this).next("select").outerHeight()&&$(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(){var e=$(this).attr("style");$(this).attr("style","vertical-align: top !important; "+(e?e:""))}),$("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&&!v___location_file&&!$('body[class*="smart-status"]').length||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")),Core.curModule("smart-status")&&($('select[name="drive"]').addClass("heighter-34"),$('select[name="drive"] + .ui_form_end_submit').addClass("heighter-34")),$('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"){var cpan_button=$('input[name="cpan"]').next("button");cpan_button.html('').attr("style","width: 40px; height: 28px; vertical-align:middle !important; margin-top:2px; margin-bottom:2px;"),cpan_button.attr("onclick",cpan_button.attr("onclick").replace("document.forms[0]","document.forms[1]"))}if($("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")),v___location_path!=v___location_prefix+"/lvm/"&&v___location_path!=v___location_prefix+"/lvm/index.cgi"&&v___location_path!=v___location_prefix+"/virtualmin-support/"&&v___location_path!=v___location_prefix+"/virtualmin-support/index.cgi"&&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"||function(){$("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")}(),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"||function(){$("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")}(),v___location_path==v___location_prefix+"//"&&function(){$("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")}(),$.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 $tables=$("form .table.table-striped.table-hover.table-condensed");$tables.addClass("table-resizable").resizeableTableColumns(),$tables.find(".ui_checked_checkbox").length&&$tables.find("thead tr th:first-child").addClass("nonresizable");var $___colspan=$("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",$___colspan).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 target=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:first-child"),container=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:last-child"),link=container.find("a");target.append(link),container.remove(),target.find("a").addClass("table_title_links pull-right btn btn-xs btn-warning").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 target=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:first-child"),container=$(".ui_form .table-responsive table.table.table-striped.table-condensed.table-subtable > thead tr th:last-child"),link=container.find("a");target.append(link),container.remove(),target.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",v___location_prefix+"/virtual-server/index.cgi"),$('.panel-default + a[href="/server-manager/"]').attr("href",v___location_prefix+"/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",v___location_prefix+"/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",v___location_prefix+"/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 $t__acl_title=$("br").next(".ui_grid_table.table-hardcoded").find("tbody").addClass("border-global-color").parent("table").prev("br").prev("b");$("br").next(".ui_grid_table.table-hardcoded").css("margin-bottom","3px"),$.each($t__acl_title,function(e,t){""==$(this).text()&&($(this).next("br").remove(),$(this).remove())}),$t__acl_title.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"),Core.curModuleFile("virtual-server","edit_limits.cgi")&&setTimeout(function(){var e=$("#headln2c tt").text().replace(/\..*/g,"").replace(/\.|\-/g,""),t="settings_show_webmin_tab_"+e;snippet.inject_extra_option("tr/yes:no",$('input[name="demo"]'),t,theme_language("theme_xhred_settings_show_webmin_tab"));var i="true"==document.querySelector('[name="'+t+'"]:checked').value?1:0,a=document.querySelector('input[name="modules"]'),n=a.nextElementSibling;a.disabled=!i,n.disabled=!i;for(var s=function(){var e="true"==this.value?1:0;a.disabled=!e,n.disabled=!e},o=document.querySelectorAll('[name="'+t+'"]'),r=0;r5&&($("#headln2c").append(""+$(".ui_post_header.hidden").html()+""),$(".ui_post_header.hidden").remove())}if(v___location_path&&v___location_path.indexOf("/sysinfo.cgi")>-1){if(!$is_history_action){$('#status_services-status-1-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-1-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-1-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?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")}})});var sorted_data=$(".__page .panel-group .panel-default").sort(function(e,t){return $(e).data("sorter")>$(t).data("sorter")?1:-1}).appendTo("#extended_sysinfo-1.panel-group");$('span[data-entry="nf_seen"]').parent("button").on("click",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()}}})}),$('span[data-entry="right_upok"]').parent("button").on("click",function(e){e.preventDefault();var t=($(this),$('form[action*="package-updates/update.cgi"]'));t.attr("method","POST"),$('').attr({type:"submit",value:1}).appendTo(t),$('input[name="u"]').appendTo(t),t.submit()})}time.tictac(1,1)}if(!$is_history_action){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"], select[name*="dateformat"], 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-transparent btn-link-bordered f__lnk_t_btn-el margined-left--4 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 v___URI=URI(v___location);v___location_file=v___URI.filename()}$("#headln2r, #headln2l").prepend('
    ').append("
    "),$("#headln2r a").detach().appendTo("#headln2r .btn-group"),$("#headln2l a").detach().appendTo("#headln2l .btn-group"),v___available_navigation||$("body").hasClass("file-manager")||$("#headln2l .btn-group").prepend(''),v___available_navigation||$("body").hasClass("file-manager")||get_server_data("data-slider-fixed",0),$.each($(".ui_form_end_submit"),function(){if(v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"proc/edit_proc.cgi"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"proc/kill_proc.cgi"&&v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"proc/renice_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");var i=$('select[name*="parentuser"]').first();if(Core.curModule("virtual-server")&&1===i.length){var a=i.addClass("heighter-34 pull-left").attr("style","margin-top: 0 !important; margin-right: -1px;").detach();$('button[name="add1"] + input').after(a)}})}),$.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_newshells.cgi")||Core.curModuleFile("virtual-server","view_backuplog.cgi")||Core.curModuleFile("virtual-server","edit_phpver.cgi")||Core.curModuleFile("virtual-server","edit_spf.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")||Core.curModuleFile("squid","edit_cachemgr.cgi")||Core.curModuleFile("fsdump","edit_dump.cgi")||Core.curModuleFile("mysql","backup_form.cgi")||Core.curModuleFile("postgresql","backup_form.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:not(.opener_table_style)").removeClass("table-hover").addClass("no-hover");var dynamic_switch_off_on=$(".fa-toggle-switch-off").parent("button.btn-default");if(1===dynamic_switch_off_on.length){"1"==dynamic_switch_off_on.parent("td").find('input[type="radio"]:checked').val()&&dynamic_switch_off_on.find(".fa-toggle-switch-off").addClass("fa-toggle-switch").removeClass("fa-toggle-switch-off")}var $parent_td=dynamic_switch_off_on.parents("td");$parent_td.find('[type="radio"]').length&&$parent_td.addClass("vertical-align-bottom");var my_editor_page=$('form[action*="manual"] > select[name="file"], form[action*="manual.cgi"] > select[name="manual"], form[action*="edit_"] > select[name="file"]');my_editor_page.length&&(my_editor_page.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, .chooser_button").addClass("heighter-34").css("margin-bottom","-1px"),$("#search").css("margin-top","1px"),$('form[action*="search.cgi"] .ui_form_end_submit').css("margin-top","2px").css("margin-right","-4px")),(Core.curModuleFile("mailboxes","")||Core.curModuleFile("mailboxes","index.cgi"))&&($("#user").addClass("heighter-34 vertical-align-middle margined-bottom-1"),$(".chooser_button").addClass("margined-top-2 margined-bottom-2")),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 attempt_make_all_elem=$('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(attempt_make_all_elem,function(e,t){if(!($(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))return $(this).prev(".awobject").length?void $(this).css("width","auto"):void(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-transparent btn-link-bordered btn-xxs margined-top--3"):Core.curModule("virtual-server")&&$('a[onclick^="window.open(\\"thumb_style.cgi?"]').html('').addClass("btn btn-transparent btn-link-bordered heighter-28-force"),Core.curModuleFile("virtual-server","edit_html.cgi")){$('.ui_form_end_submit:not([name="create"], [name="cancel"], [name="save"], [name="delete"])').addClass("heighter-28-force");var is_html_mode_edit_web_pages=v___location_query.indexOf("editok")!==-1||v___location_query.indexOf("createok")!==-1,is_text_mode_edit_web_pages=v___location_query.indexOf("textok")!==-1;is_html_mode_edit_web_pages&&$("#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"])):is_text_mode_edit_web_pages&&($("#textok").removeClass("btn-default").addClass("btn-grey"),editor_init_check()&&editor_init($("textarea"),!1,!1,"static",!1,!0,!1,$is_history_action)),$(".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 $magic_button_selector=' 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($($magic_button_selector).length&&$($magic_button_selector).each(function(){$(this).attr("data-mmclick",$(this).attr("onclick")).removeAttr("onclick");chooser_get_target($(this),0)}),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"){var obj=$('.panel-body > .ui_link, .panel-body > .ui_link_replaced,\t\t\t\t body[data-uri*="virtualmin-awstats"] .panel-body > form > .ui_link_replaced,\t\t\t\t body[data-uri*="edit_disk.cgi"] .panel-body p > a.ui_link_replaced,\t\t\t\t body[data-uri*="edit_newlinks.cgi"] .panel-body > form > .ui_link_replaced,\t\t\t\t body[data-uri*="edit_newlinks.cgi"] .panel-body > .ui_emptymsg + p > .ui_link_replaced'),text=$.trim(obj.first().text()),href=obj.first().attr("href");"undefined"!=typeof settings_hidden_force_table_header_links?href&&($("#headln2r .btn-group a").addClass("pull-left").attr("style",""),$("#headln2r .btn-group").prepend(' '),obj.next("br").remove(),obj.remove()):(obj.addClass("btn btn-inverse btn-tiny ui_link_replaced"),obj.find(".fa").length||obj.prepend(' '))}if(v___theme_night_mode_enabled||v___theme_night_mode){if($(".opener_shown").length>0){var __tmp_ui_grinTable=$(".opener_container, .opener_container:hidden").find(".ui_grid_table, .ui_grid_table:hidden");__tmp_ui_grinTable.length&&$.each(__tmp_ui_grinTable,function(e,t){$(this).parent("td").attr("style","padding: 0 !important")})}if($(".opener_table_style_small").length>0){var __tmp_ui_hardTable=$(".opener_table_style_small, .opener_table_style_small:hidden").find(".sub_table_container.table-hardcoded, .sub_table_container.table-hardcoded:hidden");__tmp_ui_hardTable.length&&$.each(__tmp_ui_hardTable,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.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||(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"),$.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(''))}),v___location_path==v___location_prefix+"/proc/index_search.cgi"&&$(".col_header").removeClass("col_header"),$('input[type="file"]:not([name="upfiles"])').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 visibility=[];"settings-user.cgi"===v___location_file&&(visibility=[1,0,0]),page.render.module_config(visibility)}}if(Core.curModuleFile("virtual-server","index.cgi")&&$('a[href*="list_users.cgi"], a[href*="list_aliases.cgi"], .ui_checked_columns').on("click",function(e){var t=$(this);t.off("click"),$(e.target).is('input[type="checkbox"]')||(t.is(".ui_checked_columns")&&(t=$(this).find("a").first()),set_navigation_correspond_virtualmin(t))}),Core.curModuleFile("server-manager","index.cgi")&&$('a[href*="mass_update_form.cgi"], .ui_checked_columns').on("click",function(e){var t=$(this);t.off("click"),$(e.target).is('input[type="checkbox"]')||(t.is(".ui_checked_columns")&&(t=$(this).find("a").first()),set_navigation_correspond_cloudmin(t))}),editor_init_check()&&editor_init($("textarea"),!1,!1,"static",!1,!0,!1,$is_history_action),Core.curModule("cshrc")||Core.curModule("plan")||Core.curModuleFile("virtual-server","mass_aedit_form.cgi")){var cshrc1=$(".panel-body form:eq(0) > textarea:visible"),cshrc2=$(".panel-body form:eq(1) > textarea:visible");$is_history_action&&page_refresh(1),cshrc2.length?(editor_init(cshrc1,!1,!1,"static1",!0,!1,!1,$is_history_action,.36),editor_init(cshrc2,!1,!1,"static2",!0,!1,!1,$is_history_action,.36)):editor_init(cshrc1,!1,!1,"static1",!0,!1,!1,$is_history_action,.51)}if(viewer_init_check()&&viewer_init(),settings_sysinfo_easypie_charts&&v___location_path==v___location_prefix+"/sysinfo.cgi"){var isNR=v___theme_night_mode_enabled||v___theme_night_mode?1:0;$("body").find("#system-status").find(".piechart").easyPieChart({barColor:function(e){return e<50?isNR?"#269373":"#5cb85c":e<85?isNR?"#c38d40":"#f0ad4e":"#cb3935"},trackColor:isNR?"#3b424b":"#f8f8f8",scaleColor:isNR?"#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(((v___location_path.indexOf(".cgi")===-1||v___location_path.indexOf("link.cgi")!==-1||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/"&&v___location_prefix.indexOf("servers/link.cgi")===-1||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("mysql","index.cgi")||Core.curModuleFile("postgresql","index.cgi")||Core.curModuleFile("custom","index.cgi")||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","")||Core.curModuleFile("virtualmin-git","index.cgi")||Core.curModuleFile("virtualmin-svn","")||Core.curModuleFile("virtualmin-svn","index.cgi")||Core.curModuleFile("server-manager","edit_domains.cgi")||Core.curModuleFile("net","list_ifcs.cgi")||Core.curModuleFile("net","list_hosts.cgi")||Core.curModuleFile("bind8","edit_recs.cgi")||Core.curModuleFile("virtual-server","list_records.cgi")||Core.curModule("firewall")||Core.curModule("firewall6")||Core.curModule("ruby-gems")||v___location_path==v___location_prefix+"/at/"||v___location_path==v___location_prefix+"/at/index.cgi"||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+"/package-updates/update.cgi"||v___location_path==v___location_prefix+"/security-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/")&&$(".__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);$(this).find("tr").each(function(e,i){t=Math.max(t,parseFloat(e))}),t<10&&$(this).parents(".dataTables_wrapper").find(".dataTables_filter").remove();if(($(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?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){sysinfo_replace_dismiss_buttons(),$("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")}),$("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)}),page_sysinfo_sensor_update_label(),"0"==v___user_level&&information_update();var chart_size_def_value=172;if(172!=settings_sysinfo_easypie_charts_size){ +var diff=parseInt(settings_sysinfo_easypie_charts_size-172),position_diff_label=.9*diff,position_diff_percent=.2*diff,font_diff_label=settings_sysinfo_easypie_charts_size<172?settings_sysinfo_easypie_charts_size<152?"8px":"8.5px":"9px",font_diff_percent=settings_sysinfo_easypie_charts_size<172?settings_sysinfo_easypie_charts_size<152?"1.6em":"1.7em":"1.8em",$piechart_label=$(".piechart .data-cnt .label"),piechart_label_right=parseInt($piechart_label.css("right")),piechart_label_bottom=parseInt($piechart_label.css("bottom")),$piechart_percent=$(".piechart .data-cnt .percent"),piechart_percent_top=parseInt($piechart_percent.css("top")),piechart_percent_left=parseInt($piechart_percent.css("left"));$piechart_label.css({bottom:parseInt(piechart_label_bottom-position_diff_label),right:parseInt(piechart_label_right-position_diff_label),fontSize:font_diff_label}),$piechart_percent.css({top:parseInt(piechart_percent_top+position_diff_percent),left:parseInt(piechart_percent_left+position_diff_percent),fontSize:font_diff_percent})}}if($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")||Core.curModuleFileQuery("syslog","save_log.cgi","new=")){var target=".panel-body .fa-refresh-fi",current_refresh_timer=localStorage.getItem(v___server_hostname+"-option_"+v___module+"_refresh"),current_icon_class_str=".fa-refresh-fi",refresh_timer_str=".refresh-timer-timeout",btn_str=target+", .panel-body .refresh-timer-timeout",timeout_box=''+(current_refresh_timer?current_refresh_timer:"0")+" ";$.each($(target+":not([data-processed])").parent("button"),function(e,t){if($(this).find("i").attr("data-processed",1),$(this).wrap('
    '),$(this).after('"),current_refresh_timer&&"0"!=current_refresh_timer){var i=$(btn_str);$(this).find("i").before(timeout_box),$(this).find("i").remove();var a=current_refresh_timer;"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=''+(current_refresh_timer?current_refresh_timer:"0")+" ";localStorage.setItem(v___server_hostname+"-option_"+v___module+"_refresh",$(this).find("a").data("timeout")),current_refresh_timer=localStorage.getItem(v___server_hostname+"-option_"+v___module+"_refresh");var t=$(btn_str),i=t.parent();if(current_refresh_timer&&"0"!=current_refresh_timer){i.find(".refresh-timer-timeout").length||i.prepend(e),i.find(".refresh-timer-timeout").html(current_refresh_timer+" "),$(".fa-refresh-fi").remove();var a=current_refresh_timer;refreshTimer=setInterval(function(){if(--a,$(".refresh-timer-timeout").text(a),a<=0){var e=$(btn_str);$(e[0]).parent().trigger("click"),clearInterval(refreshTimer)}},1e3)}else $(".refresh-timer-timeout").remove(),!i.find(".fa-refresh-fi").length&&i.prepend('')})}),$.each($('form[action*="save_log.cgi"] select[name="idx"]'),function(){$(this).on("change",function(){var e=$("button.ui_submit.ui_form_end_submit");$(this).next().next('[name="filter"]').val(""),e.first().trigger("click"),e.addClass("disabled")})})}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&&($('[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'); $('[data-dcontainer="1"]').tooltip({selector:'[data-toggle="tooltip"]:not([data-skip]), [data-toggle="virtualmin-license"], .panel-body td a:not([data-skip]), .icons-container',placement:"auto "+($(".gl-icon-container").length?"bottom":"top"),trigger:"hover",html:!0,delay:{show:600,hide:30}})),v___available_navigation&&(window.matchMedia("(max-width: 1080px)").matches||"1"==$("html").attr("data-navigation-collapsed")&&!Core.var.navigation_pinned)&&navigation_lock_width(),v___available_navigation&&(window.matchMedia("(max-width: 1365px)").matches||"1"==$("html").attr("data-navigation-collapsed")&&!Core.var.navigation_pinned)&&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"),$is_history_action||(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"),n=a.find('form[action="view_table.cgi"]').first().addClass("inline-block"),s=n.nextAll('input[name="search"], input[name="db"], input[name="table"]').slice(0,3);e.parent("td").prev("form");n.append(s.detach()),i.append(n.detach()),i.find("form").append(t.detach())}),$("body").hasClass("session_login")&&setTimeout(function(){page_display()},200),theme_to_new_tab(),page.handle.content.offset(!0),Core.curModuleFile("acl","save_twofactor.cgi")&&setTimeout(function(){var e=$("p > img"),t=e.attr("src");e.attr("src",t.replace(v___location_prefix+"/"+v___module+"/",""))},0),v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"proc/edit_proc.cgi"||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"proc/kill_proc.cgi"||v___location_path_lead_unslashed==v___location_prefix_unslashed_trail_slashed+"proc/renice_proc.cgi"){var proc_nice_level='form[action*="renice_proc.cgi"]',proc_nice_pid=$(proc_nice_level).next('input[name="pid"]'),proc_target=$('.col_value select[name="nice"]').parent("td"),proc_target_content=proc_target.html();$(proc_nice_level).append(proc_nice_pid.detach(),proc_target_content),proc_target.html($(proc_nice_level).detach()),$('.proc form[action*="kill_proc.cgi"]').on("submit",function(){var e=quirks.active_element(),t=$(this).find("input").filter(function(){return"pid"!=this.name&&"signal"!=this.name&&this.name!=e.name});return t.attr("disabled","disabled"),setTimeout(function(){},1),!0})}setTimeout(function(){v___blocked_navigation=0},10);var date_chooser_button=$(".date_chooser_button");date_chooser_button.length&&$.each(date_chooser_button,function(){var e=$(this).parent('td:contains("/")'),t=e.find("select"),i=t.prev("input");$year=t.next("input"),cls="margined-left--10",t.addClass(cls),$year.addClass(cls).attr("size",3),i.attr("size",1)}),$.each($(".date_chooser_button"),function(){var e=$('input[name="'+$(this).data("year")+'"]'),t=$('select[name="'+$(this).data("month")+'"]'),i=$('input[name="'+$(this).data("day")+'"]'),a=1==$(t).find("option:eq(0)").val()?0:1;$(this).datepicker({format:" yyyy-m-d",language:get_server_data("language"),autoclose:!0}).on("changeDate",function(n){var s=(n.date.getFullYear()+"-"+(n.date.getMonth()+1)+"-"+n.date.getDate()).split("-");s&&($(i).val(parseInt(s[2])),$(t).val(parseInt(s[1])-a),$(e).val(parseInt(s[0])))}).on("show",function(n){var s=$(this),o=parseInt($(i).val()),r=!!$(t).val()&&parseInt($(t).val())+a,_=$(e).val();o&&r&&_&&s.datepicker("update",_+"-"+r+"-"+o)})}),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\]/g,"document.forms["+i+"]")),e.attr("onclick",t.replace(/document\.forms\[1\]/g,"document.forms["+(i+1)+"]"))}),$("#print").on("click",function(e){e.preventDefault(),e.stopPropagation()})),Core.curModuleFile("forward","edit_alias.cgi")&&$.each($('[onchange*="document.forms"]'),function(){var e=$(this),t=e.attr("onchange"),i=$("aside form").length;e.attr("onchange",t.replace("document.forms[0]","document.forms["+i+"]"))}),(Core.curModuleFile("schedule","edit.cgi")||Core.curModule("mailbox"))&&$.each($('[onclick*="address_chooser"]'),function(e,t){$(this).attr("onclick",$(this).attr("onclick").replace(".forms[0]",".forms[1]")),$(this).next(".file_chooser_button_attached").removeClass("fa-files-o").addClass("fa-address-book-o")}),(Core.curModuleFile("server-manager","index.cgi")||Core.curModuleFile("server-manager",""))&&$.each($('[onclick*="document.forms"]'),function(){var e=$(this),t=e.attr("onclick"),i=$("aside form").length,a=$(".container-fluid .panel-body > form").length-1;e.attr("onclick",t.replace(/document\.forms\[\d*\]/g,"document.forms["+(i+a)+"]"))});var input_password_targets=document.querySelectorAll('input[type="password"]');for(i=0,length=input_password_targets.length;i30?1:0;span.classList.add("input_warning_caps"),span.setAttribute("title","Caps Lock"),isLargePassInput&&span.classList.add("large"),input_password_targets[i].classList.add("use_input_warning_caps"),input_password_targets[i].parentNode.insertBefore(span,input_password_targets[i].nextSibling),input_password_targets[i].addEventListener("blur",function(){this.nextSibling.classList.remove("visible")}),input_password_targets[i].addEventListener("keydown",function(e){"function"==typeof e.getModifierState&&(state=20===e.keyCode?!e.getModifierState("CapsLock"):e.getModifierState("CapsLock"),state?this.nextSibling.classList.add("visible"):this.nextSibling.classList.remove("visible"))})}var selectStr="select",select_for=$('select.ui_select[name="module"], select.ui_select[name="user"], select.ui_select[name="nuser"], select.ui_select[name="zone"], select.ui_select[name="serv"], select.ui_select[name="mod"], select.onchange_form_submit_triggger, select[name="idx"], select[name="file"]:first, select[name="manual"]:first'),originalSelectAddedHiddenClass="select2-hidden-accessible",select2Class="select2",select2ContentTriggerClass="select2-content",select2ContentContainerTriggerClass="select2-content-container",heighterStr="heighter",heighterType="34",v___page_hadEditor=0;if($is_history_action&&$.each($(".container-fluid .select2-hidden-accessible + .select2"),function(){v___page_hadEditor=1,$(this).prev(".select2-hidden-accessible").removeClass("select2-hidden-accessible"),$(this).remove()}),(Core.curModuleFile("webminlog","")||Core.curModuleFile("webminlog","index.cgi")||Core.curModuleFile("time","")||Core.curModuleFile("time","index.cgi")||Core.curModuleFile("firewalld","edit_serv.cgi")||Core.curModuleFile("php-pear","")||Core.curModuleFile("php-pear","index.cgi")||Core.curModuleFile("mysql","")||Core.curModuleFile("mysql","index.cgi")||Core.curModuleFile("mysql","edit_dbase.cgi")||Core.curModuleFile("fail2ban","edit_manual.cgi")||Core.curModuleFile("postgresql","")||Core.curModuleFile("postgresql","index.cgi")||Core.curModuleFile("postgresql","edit_dbase.cgi")||Core.curModuleFileQuery("syslog","save_log.cgi","view=1")||Core.curModuleFileQuery("syslog","save_log.cgi","new=")||v___page_hasEditor||v___page_hadEditor)&&((select_for.hasClass("heighter-28")||select_for.outerHeight()<=28)&&(heighterType="28"),select_for.select2({minimumResultsForSearch:5,containerCssClass:"select2-content heighter-"+heighterType,dropdownCssClass:"select2-content h"+heighterType}),select_for.next(".select2").addClass("select2-content-container"),select_for.next(".select2").next(".ui_form_end_submit").addClass("heighter-"+heighterType),select_for.on("select2:open",function(){$("body").find(".select2-container, "+v___class_select2_leak).removeClass("select2-aside")}),setTimeout(function(){bind_sameorigin(0)},100)),"install_mod.cgi"===v___location_file){var prev_req=Core.var.previous_request,$prev_req_file=$(prev_req.target).find('[name="file"]');"submit"===prev_req.type&&Test.strContains($(prev_req.target).attr("action"),v___location_file)&&$prev_req_file&&$prev_req_file.val()&&Test.strContains($prev_req_file.val(),"csfwebmin")&&($('.container-fluid a[href*="csf"]').on("click",function(e){e.preventDefault(),$('aside a[href*="csf/index.cgi"]').trigger("click")}),navigation_update(),$.ajax({type:"POST",url:v___location_prefix+"/index.cgi",success:function(e){},error:function(e){}}))}$is_history_action||v___location_path_lead_unslashed!=v___location_prefix_unslashed_trail_slashed+"settings-editor_read.cgi"||$('form[action*="settings-editor_write.cgi"] .btn-group.end_submits button.btn').on("click",function(){var custom_styles=$("[data-custom-style]"),custom_script=$("[data-custom-script]"),data=$('[name="data"]').val();Test.strContains($('[name="file"]').val(),"styles.css")&&(custom_styles.remove(),$("head").append("")),Test.strContains($('[name="file"]').val(),"scripts.js")&&(custom_script.remove(),eval(data))});var $bottom_js_back=$('.btn-lg.page_footer_submit[href*="javascript:history.back"]'),$topBackButton=$("#headln2l a i.fa.fa-arrow-left").parent("a");if($bottom_js_back&&$bottom_js_back.length?($topBackButton.attr("title",theme_language("theme_xhred_global_prev_page")).tooltip("fixTitle").attr("href","javascript:history.back()"),$topBackButton.one("click",function(e){e.preventDefault(),e.stopPropagation(),$bottom_js_back[0].click()})):v___module!==v___module_file_manager&&$topBackButton.find("i").addClass("fa-return").parent("a").addClass("btn-squiare-headln2 text-lighter-slight"),Core.curModule("backup-config")){var $fetch_form=$($('.container-fluid form[action*=".cgi"].ui_form')[0]);$fetch_form.on("submit",function(e){"4"==$fetch_form.find('input[name="dest_mode"]:checked').val()&&(e.preventDefault(),e.stopPropagation(),theme_download_form($(this)))});var $submit=$fetch_form.find('.ui_submit[name="backup"]'),$mods=$fetch_form.find('select[name="mods"]');$mods.length&&!$mods.val().length&&$submit.addClass("disabled"),$fetch_form.on("change",function(e){$mods.val().length?$submit.removeClass("disabled"):$submit.addClass("disabled")})}if(Core.curModuleFile("webmin","edit_mods.cgi")||Core.curModuleFile("usermin","edit_mods.cgi")){var $fetch_form=$($('.container-fluid form[action*=".cgi"].ui_form')[3]);$fetch_form.on("submit",function(e){"0"==$fetch_form.find('input[name="to"]:checked').val()&&(e.preventDefault(),e.stopPropagation(),theme_download_form($(this),"download_is_being_prepared"))});var $submit=$fetch_form.find('.ui_submit[name="ok"]');$submit.addClass("disabled"),$fetch_form.on("change",function(e){$fetch_form.find('select[name="mod"]').val()&&$fetch_form.find('select[name="mod"]').val().length?$submit.removeClass("disabled"):$submit.addClass("disabled")})}if(Core.curModuleFile("mysql","backup_form.cgi")||Core.curModuleFile("postgresql","backup_form.cgi")){var $backup_form=$('.container-fluid form[action*=".cgi"].ui_form');$backup_form.on("submit",function(e){"1"==$backup_form.find('input[name="dest"]:checked').val()&&(e.preventDefault(),e.stopPropagation(),theme_download_form($(this)))});var $submit=$backup_form.find('.ui_submit[name="backup"]'),$select_for_dbs_or_tables=$backup_form.find('select[name="tables"]');$backup_form.on("change",function(e){var t="1"==$backup_form.find('input[name="tables_def"]:checked').val();$select_for_dbs_or_tables.val()&&$select_for_dbs_or_tables.val().length||t?$submit.removeClass("disabled"):$submit.addClass("disabled"),$select_for_dbs_or_tables.prop("disabled",t)}),$backup_form.trigger("change")}if(Core.curModuleFile("mysql","csv_form.cgi")){var $backup_form=$('.container-fluid form[action*=".cgi"].ui_form');$backup_form.on("submit",function(e){"0"==$backup_form.find('input[name="dest"]:checked').val()&&(e.preventDefault(),e.stopPropagation(),theme_download_form($(this)))});var $submit=$backup_form.find('.ui_submit[name="ok"]'),$select_for_dbs_or_tables=$backup_form.find('select[name="cols"]');$backup_form.on("change",function(e){$select_for_dbs_or_tables.val().length?$submit.removeClass("disabled"):$submit.addClass("disabled")}),$backup_form.trigger("change")}if(Core.curModuleFile("virtual-server","backup_form.cgi")){var $vm_backup_form=$('form[action*="backup.cgi/backup"]');$vm_backup_form.on("submit",function(e){"4"==$vm_backup_form.find('select[name^="dest0_"]').val()&&(e.preventDefault(),e.stopPropagation(),theme_download_form($(this)))}),$vm_backup_form.find("a.select_all, a.select_invert").on("click",function(e){$vm_backup_form.trigger("change")}),$vm_backup_form.on("change",function(){var e=$('.ui_submit[name="now"]');!("1"==$vm_backup_form.find('[name="all"]:checked').val()&&$vm_backup_form.find('[name="doms"] option').length>=1||"2"==$vm_backup_form.find('[name="all"]:checked').val()&&$vm_backup_form.find('[name="doms"]').val().length>=1&&$vm_backup_form.find('[name="doms"] option').length>1||"2"!=$vm_backup_form.find('[name="all"]:checked').val()&&$vm_backup_form.find('[name="doms"]').val().length)||"1"!=$vm_backup_form.find('[name="plan_def"]:checked').val()&&!$vm_backup_form.find('[name="plan"]').val().length||"1"!=$vm_backup_form.find('[name="feature_all"]:checked').val()&&!$vm_backup_form.find('[name="feature"]:checked').length?e.addClass("disabled","1"):e.removeClass("disabled","1")}),$vm_backup_form.trigger("change"),$vm_backup_form.find('select[name^="dest0_"]').on("change",function(){var e=$("form").find('input[name="fmt"][value="0"]'),t=$("form").find('input[name="fmt"][value="1"], input[name="fmt"][value="2"]');"4"==$(this).val()?(t.prop("disabled",!0),e.prop("checked",!0)):t.prop("disabled",!1)})}$.each($(".container-fluid a.ui_link_replaced"),function(){this.href.includes("webminlog.csv")&&$(this).removeClass().addClass("btn btn-default ui_submit heighter-34").prepend(' ')}),Core.curModuleFile("virtual-server","edit_user.cgi")&&$('button[name="switch"]').attr("onclick","document.forms[document.forms.length - 1].target = '_blank'")}function page_refresh(e){if(e&&set_onbeforeunload_status(0,0),get_onbeforeunload_status())get_onbeforeunload_message(!1,"get_pjax_content(v___location_resource, false, false)","ev");else{var t=Core.var.previous_request,i=Core.var.source_request,a=unbuffered_header_processor_allow(!(!t||!t.target)&&t.target.action);"submit"===t.type?get_pjax_action_submit(t,!1):a&&i.length?get_pjax_content(i,!1,!1):get_pjax_content(v___location_resource,!1,!1)}}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")),v___location=location,$__theme_name__="authentic",$__theme_navigation="xnavigation=1",$__theme_event_deselectors=':not([href*="index.cgi?path="]):not([href*="config.cgi?path="]):not([href*="download.cgi?file="])',$__theme_default_deselectors=':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])',v___class_select2_leak=".select2-dropdown, .select2-search, .select2-results, aside .select2, aside .select2-selection, aside .select2-selection__rendered",v___user_level=get_server_data("access-level"),v___shell_type=0==v___user_level?"#":"$",v___shell_processing=0,v___debug=parseInt(get_server_data("debug")),v___source_type=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,"undefined"==typeof v___blocked_navigation&&(v___blocked_navigation=0),v___server_username=get_server_data("user"),v___server_userhome=get_server_data("user-home"),v___module=get_server_data("module"),"undefined"==typeof v___module_previous&&(v___module_previous=0),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_dversion=Test.strContains(v___theme_version,"-"),v___theme_mversion=get_server_data("theme-mversion").toString(),v___theme_version_plain=v___theme_version.replace(/\./g,"").replace(/-beta.*/g,"")+(v___debug||v___theme_dversion?moment().unix()+v___theme_mversion:"9999999999"+v___theme_mversion),v___theme_force_buffered=0,v___theme_reload=0,v___theme_connection_reestablish=0,v___theme_connection_triggered_origin=0,v___theme_ajax_error=0,"undefined"==typeof v___theme_pjax_call&&(v___theme_pjax_call=0),v___theme_state_visible=1,v___theme_visibility_check=0,v___theme_progress=0,v___theme_processing_default_content=0,"undefined"==typeof v___theme_content_history&&(v___theme_content_history=0),"undefined"==typeof v___location_previous&&(v___location_previous=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=function(){return $(".container-fluid")}(),v___page_signin_form="container session_login",v___page_signin_banner="form-signin-banner",v___page_activeElement=$("body")[0],v___page_hasEditor=editor_init_check(),v___target_servers_index="servers/link.cgi",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_css_path=v___location_prefix+"/unauthenticated/css",v___server_css_palettes_path=v___server_css_path+"/palettes",v___server_js_path=v___location_prefix+"/unauthenticated/js",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_change_mode(e,t){var i=CodeMirror.findModeByMIME(t);mode=i.mode,spec=i.mime,e.setOption("mode",spec),CodeMirror.autoLoadMode(e,mode)}function editor_modes(e){var t='";var s=0;if(!$(t).find("option[selected]").val()){var o=$(t);o.find('option[value="text/plain"]').attr("selected",1),s=o[0].outerHTML}return s||t}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=")||Core.curModuleFileQuery("nginx","edit_server.cgi","editfile=")||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||"feedback_form.cgi"===v___location_file||"notes"===$("textarea").attr("id")?0:(v___page_hasEditor=1,1):0}function editor_init(e,t,i,a,n,s,o,r,_){o=void 0!==o&&0!=o,_=void 0!==_&&0!=_&&_,o||(n=void 0!==n&&0!=n,s=void 0!==s&&0!=s,$.each(e,function(o,l){var c=($(this),["phpini","bind8"]),d=v___module;c.indexOf(d)>=0&&$(this).data("name","data"),CodeMirror.modeURL=v___location_prefix+"/unauthenticated/js/codemirror/mode/%N/%N.js";var h=null,f="text/plain",g=!1;v___location_path==v___location_prefix+"/custom/view.cgi"?g=$('form[action="save.cgi"]').find(".table-title").find("tt").text():$('body[class^="'+v___module_file_manager+'"]').length?(g=t.replace(/<(?:.|\n)*?>/gm,"").replace(/ *\([^)]*\) */g,""),t=g):g=$('select[name="file"]').val();var p,h,f,u=0,m=t?t:g;if(p=/.+\.([^.]+)$/.exec(m)){var v=CodeMirror.findModeByExtension(p[1]);v&&(h=v.mode,f=v.mime,u=[h,f])}else if(/\//.test(m)){var v=CodeMirror.findModeByMIME(m);v&&(h=v.mode,f=m,u=[h,f])}else h=null,f="text/plain",u=[h,f];if("apache"==d||"postfix"==d||"dovecot"==d||"spam"==d||"sendmail"==d||"samba"==d||"proftpd"==d||"fail2ban"==d||"sshd"==d||"squid"==d||"ldap-server"==d||"mysql"==d||"postgresql"==d?(h="rpm",f="rpm-spec"):"init"==d||"procmail"==d||"shorewall"==d||Test.strContains(d,"nginx")||Test.strContains(d,"cshrc")?(h="shell",f="text/x-sh"):"phpini"==d?(h="z80",f="text/x-z80"):"bind8"==d||Core.curModuleFile("virtual-server","manual_records.cgi")?(h="ttcn",f="text/x-ttcn"):"virtual-server"==d&&"body"==$(this).attr("name")&&(h="htmlmixed",f="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(l,{tabMode:"indent",matchBrackets:!0,lineNumbers:!0,keyMap:"sublime",highlightSelectionMatches:{annotateScrollbar:!0},lineWrapping:!1,indentUnit:0,autofocus:!0,foldGutter:!0,continueComments:!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",f),"rpm"!=h&&CodeMirror.autoLoadMode(window["__cm_editor_"+a],h),window["__cm_editor_"+a].addKeyMap({"Shift-Cmd-W":function(e){var t=!e.getOption("lineWrapping");e.setOption("lineWrapping",t)}}),setTimeout(function(){if($("body").find(".jsPanel").length){var e=document.getElementById("jsPanel-"+(a-1)),t=$(e).find("[data-mode-select]").find(".select-mode-info");u&&u[0]&&u[1]&&t.val(u[1]).trigger("change"),t.on("change",function(){editor_change_mode(window["__cm_editor_"+a],$(this).val())})}else $(l).parent("form").add($(l).parent("td")),$(".CodeMirror").before("'),1===$(".CodeMirror").length&&Core.curModule("custom")&&($(".CodeMirror").before('
    "),$(".CodeMirror").prev("[data-mode-select]").find(".select-mode-info").on("change",function(){editor_change_mode(__cm_editor_static,$(this).val())}));var i=$(".fa.fa-question-circle.__helper:not(.soft_wt), .__helper___:not(.soft_wt)");$.ajax({type:"GET",url:v___location_prefix+"/help.cgi/authentic-theme/editor",data:!1,dataType:"text",success:function(e){i.popover({container:"body",placement:"auto left",title:''+theme_language("theme_xhred_editor_help_title"),content:e,trigger:"click",html:!0})}}),i.on("inserted.bs.popover",function(){$("body").find(".theme_xhred_editor_help").parents(".popover").addClass("_helper").next("header").remove(),$("body").find(".popover-content > .ui_subheading").remove()})},100),s&&window["__cm_editor_"+a].on("change",function(e,t){Test.strContains(v___location_path,"init/edit_")||set_onbeforeunload_status(1,0)});var b=$(".container-fluid > .panel > .panel-body").attr("data-cm-line"),x=$(".container-fluid > .panel > .panel-body").attr("data-cm-state");r&&b&&__cm_editor_static.setCursor(parseInt(b.split(",")[0]),parseInt(b.split(",")[1]));var y=uri_parse_param("editor_line");if(y&&__cm_editor_static.setCursor(parseInt(y)-1,0),_){var w=$(l).parents("form"),k=w.find('input[type="submit"]:visible, .ui_form_end_submit.btn-success[type="button"]:visible');w.on("submit",function(e){set_onbeforeunload_status(0,0)}),k.prev("br").length&&k.addClass("margined-top--10"),$(window).resize(function(){window["__cm_editor_"+a].setSize(null,$(window).outerHeight()*_)}).trigger("resize"),window["__cm_editor_"+a].on("change",function(){set_onbeforeunload_status(1,0),k.removeClass("btn-default btn-success").addClass("btn-danger")})}else"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?i:4,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&&!!b&&"true"==x,r)}}))}function viewer_init_check(){return $('body[class^="syslog"]').length&&v___location_query&&(v___location_query.indexOf("view=1")>-1||v___location_query.indexOf("new=")>-1)||$('body[class^="syslog-ng"]').length&&v___location_file&&"view_log.cgi"===v___location_file&&v___location_query&&v___location_query.indexOf("dest=")>-1?1:0}function viewer_init(){if($("pre[data-cm-viewer]").remove(),$(".panel-body pre").find("i").length){var e=0,t=$('.panel-body [name="filter"]');t.length&&t.val()&&(e=1),$(".panel-body pre > i").addClass("label label-transparent-15").text(theme_language(e?"theme_xhred_global_no_results_found":"theme_xhred_global_empty").toUpperCase()),$(".panel-body pre").addClass("text-center")}else{var i=!1;$(".panel-body pre").each(function(e,t){var a=$(this),n=Convert.htmlStrip(Convert.uriDecodeComponent(a.html()));a.addClass("hidden"),a.after("
    "),$target=$("pre[data-cm-viewer-id-"+(e+1)+"]");var s=$.trim($('[name="filter"]:first').val());s&&s.length&&CodeMirror.defineMode("highlightSearch",function(e,t){var i={token:function(e,t){var i=e.string.match(new RegExp(s,"i"));if(i&&i[1]&&(s="",$.each(i,function(e,t){Test.numeric(e)&&e>0&&(s.length?s+="|"+t:s=t)})),s=new RegExp(s,"i"),e.match(s))return"highlightSearch";for(;null!=e.next()&&!e.match(s,!1););return null}};return CodeMirror.overlayMode(CodeMirror.getMode(e,t.backdrop),i)}),i=CodeMirror($target[0],{value:n,lineNumbers:!1,mode:s?"highlightSearch":null,theme:v___theme_night_mode?"monokai":settings_cm_editor_palette,readOnly:!0})}).promise().done(function(){})}}function notifications(e,t,i,a){function n(e,t){t&&(check_bundle(t),navigation_clear(),get_pjax_content(t),e.close()),window.focus()}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," ");if("granted"===Notification.permission){var s=new Notification(e,{body:t,icon:v___location_prefix+"/images/notifications_"+i+".png"});s.onclick=function(){n(s,a)}}else"denied"!==Notification.permission&&Notification.requestPermission(function(s){if("granted"===s){var o=new Notification(e,{body:t,icon:v___location_prefix+"/images/notifications_"+i+".png"});o.onclick=function(){n(o,a)}}})}}function uri_parse(e,t){var i=URI(t?t:v___location);return"directory"===e?i.directory():"directory"===e?i.directory():"file"===e?i.filename():"query"===e?i.query():void 0}function uri_parse_param(e,t){var i=URI.parseQuery(URI(t?t:v___location_resource).query())[e];return i?i:String()}function unbuffered_header_post(e){if(Test.strContains(e.responseText,"theme_post_save")){var t=e.responseText.match(/theme_post_save(.*)$/gm);if(t){navigation_update(t[0].split("=")[1])}}}function unbuffered_header_processor_allow(e){var t=URI(v___location),i=t.path();return void 0!==e&&(i=e),i&&Test.strContains(i,".cgi")&&(Test.strContains(i,"webmin/install_theme.cgi")||Test.strContains(i,"usermin/install_theme.cgi")||i.indexOf("/virtual-server/import.cgi")>-1||i.indexOf("/virtual-server/edit_newlinks.cgi")>-1||i.indexOf("/virtual-server/postsave.cgi")>-1||i.indexOf("/virtual-server/validate.cgi")>-1||i.indexOf("/server-manager/edit_serv.cgi")>-1||i.indexOf("/server-manager/save_serv.cgi")>-1||i.indexOf("/server-manager/index.cgi")>-1||i.indexOf("/server-manager/list_ifaces.cgi")>-1||i.indexOf("/server-manager/mass_update.cgi")>-1||i.indexOf("/server-manager/mass_update_form.cgi")>-1||i.indexOf("/server-manager/get_images.cgi")>-1||i.indexOf("/server-manager/edit_newlinks.cgi")>-1||i.indexOf("/server-manager/list_gces.cgi")>-1||i.indexOf("/server-manager/list_ec2s.cgi")>-1||i.indexOf("/server-manager/unpause.cgi")>-1||i.indexOf("/server-manager/find.cgi")>-1||i.indexOf("useradmin/batch_exec.cgi")>-1||i.indexOf("useradmin/gbatch_exec.cgi")>-1||i.indexOf("useradmin/mass_delete_user.cgi")>-1||i.indexOf("virtual-server/domain_setup.cgi")>-1||i.indexOf("virtual-server/upgrade.cgi")>-1||i.indexOf("virtual-server/mass_create.cgi")>-1||i.indexOf("virtual-server/restore.cgi")>-1||i.indexOf("virtual-server/save_newip.cgi")>-1||i.indexOf("virtual-server/mass_domains_change.cgi")>-1||i.indexOf("virtual-server/save_domain.cgi")>-1||i.indexOf("virtual-server/backup.cgi")>-1||i.indexOf("virtual-server/save_phpmode.cgi")>-1||i.indexOf("virtual-server/script_install.cgi")>-1||i.indexOf("virtual-server/mass_change.cgi")>-1||i.indexOf("virtual-server/save_ratelimit.cgi")>-1||i.indexOf("virtual-server/mass_scripts.cgi")>-1||i.indexOf("virtual-server/mass_upgrade.cgi")>-1||i.indexOf("virtual-server/save_newips.cgi")>-1||i.indexOf("virtual-server/letsencrypt.cgi")>-1||i.indexOf("virtual-server/migrate.cgi")>-1||i.indexOf("virtual-server/save_mail.cgi")>-1||i.indexOf("virtual-server/mass_delete_domains.cgi")>-1||i.indexOf("virtual-server/delete_domain.cgi")>-1||i.indexOf("virtual-server/unscript_install.cgi")>-1||i.indexOf("virtual-server/mass_uninstall.cgi")>-1||i.indexOf("virtual-server/clone.cgi")>-1||i.indexOf("virtual-server/fix_symlinks.cgi")>-1||i.indexOf("virtual-server/disable_domain.cgi")>-1||i.indexOf("virtual-server/delete_databases.cgi")>-1||i.indexOf("virtual-server/move.cgi")>-1||i.indexOf("virtual-server/enable_domain.cgi")>-1||i.indexOf("virtual-server/transfer.cgi")>-1||i.indexOf("virtual-server/mass_disable.cgi")>-1||i.indexOf("virtual-server/rename.cgi")>-1||i.indexOf("virtual-server/save_dbname.cgi")>-1||i.indexOf("virtual-server/mass_enable.cgi")>-1||i.indexOf("virtual-server/save_frame.cgi")>-1||i.indexOf("virtual-server/check.cgi")>-1||i.indexOf("virtual-server/save_newchroot.cgi")>-1||i.indexOf("virtual-server/enable_dkim.cgi")>-1||i.indexOf("virtual-server/save_proxy.cgi")>-1||i.indexOf("virtual-server/save_dbpass.cgi")>-1||i.indexOf("virtual-server/save_dbhosts.cgi")>-1||i.indexOf("virtual-server/unalias.cgi")>-1||i.indexOf("virtual-server/save_newautoconfig.cgi")>-1||i.indexOf("virtual-server/quotacheck.cgi")>-1||i.indexOf("virtual-server/unsub.cgi")>-1||i.indexOf("virtual-server/save_domdkim.cgi")>-1||i.indexOf("virtual-server/fix_modphp.cgi")>-1||i.indexOf("virtual-server/connectivity.cgi")>-1||i.indexOf("virtual-server/all_webmin.cgi")>-1||i.indexOf("virtualmin-support/send_ticket.cgi")>-1||i.indexOf("virtualmin-support/enable_login.cgi")>-1||i.indexOf("virtualmin-support/disable_login.cgi")>-1||i.indexOf("server-manager/empty.cgi")>-1||i.indexOf("server-manager/exec_vbackup.cgi")>-1||i.indexOf("server-manager/exec_vsync.cgi")>-1||i.indexOf("server-manager/failover.cgi")>-1||i.indexOf("server-manager/find.cgi")>-1||i.indexOf("server-manager/gcescan.cgi")>-1||i.indexOf("server-manager/install_kvm.cgi")>-1||i.indexOf("server-manager/install_xen.cgi")>-1||i.indexOf("server-manager/manual_image.cgi")>-1||i.indexOf("server-manager/mass.cgi")>-1||i.indexOf("server-manager/mass_move.cgi")>-1||i.indexOf("server-manager/mass_script.cgi")>-1||i.indexOf("server-manager/massupload.cgi")>-1||i.indexOf("server-manager/move.cgi")>-1||i.indexOf("server-manager/move_disk.cgi")>-1||i.indexOf("server-manager/newami.cgi")>-1||i.indexOf("server-manager/pause.cgi")>-1||i.indexOf("server-manager/reset.cgi")>-1||i.indexOf("server-manager/restore.cgi")>-1||i.indexOf("server-manager/restore_domain.cgi")>-1||i.indexOf("server-manager/save_ec2address.cgi")>-1||i.indexOf("server-manager/save_limits.cgi")>-1||i.indexOf("server-manager/save_pass.cgi")>-1||i.indexOf("server-manager/save_vcpus.cgi")>-1||i.indexOf("server-manager/scan.cgi")>-1||i.indexOf("server-manager/transfer.cgi")>-1||i.indexOf("server-manager/unpause.cgi")>-1||i.indexOf("server-manager/upgrade.cgi")>-1||i.indexOf("server-manager/upload.cgi")>-1||i.indexOf("server-manager/add.cgi")>-1||i.indexOf("server-manager/backup.cgi")>-1||i.indexOf("server-manager/boot.cgi")>-1||i.indexOf("server-manager/clone.cgi")>-1||i.indexOf("server-manager/convert_image.cgi")>-1||i.indexOf("server-manager/create_address.cgi")>-1||i.indexOf("server-manager/create.cgi")>-1||i.indexOf("server-manager/create_dimage.cgi")>-1||i.indexOf("server-manager/create_dkvolume.cgi")>-1||i.indexOf("server-manager/create_domain.cgi")>-1||i.indexOf("server-manager/create_ec2attach.cgi")>-1||i.indexOf("server-manager/create_ec2_snapshot.cgi")>-1||i.indexOf("server-manager/create_gceattach.cgi")>-1||i.indexOf("server-manager/create_gdisk.cgi")>-1||i.indexOf("server-manager/create_gimage.cgi")>-1||i.indexOf("server-manager/create_gsnapshot.cgi")>-1||i.indexOf("server-manager/create_image.cgi")>-1||i.indexOf("server-manager/create_volume.cgi")>-1||i.indexOf("server-manager/delete_addresses.cgi")>-1||i.indexOf("server-manager/delete_backuplogs.cgi")>-1||i.indexOf("server-manager/delete_ec2attach.cgi")>-1||i.indexOf("server-manager/delete_ec2_snapshots.cgi")>-1||i.indexOf("server-manager/delete_gceattach.cgi")>-1||i.indexOf("server-manager/delete_volumes.cgi")>-1||i.indexOf("server-manager/download.cgi")>-1||i.indexOf("server-manager/ec2scan.cgi")>-1||i.indexOf("cluster-usermin/upgrade.cgi")>-1||i.indexOf("cluster-usermin/install.cgi")>-1||i.indexOf("cluster-usermin/update.cgi")>-1||i.indexOf("ldap-useradmin/batch_exec.cgi")>-1||i.indexOf("ldap-useradmin/mass_delete_user.cgi")>-1||i.indexOf("usermin/upgrade.cgi")>-1||i.indexOf("usermin/update.cgi")>-1||i.indexOf("cpan/download.cgi")>-1||i.indexOf("cpan/install.cgi")>-1||i.indexOf("burner/save_profile.cgi")>-1||i.indexOf("burner/burn.cgi")>-1||i.indexOf("bind8/mass_create.cgi")>-1||i.indexOf("bind8/mass_rcreate.cgi")>-1||i.indexOf("bind8/mass_delete.cgi")>-1||i.indexOf("bind8/mass_update.cgi")>-1||i.indexOf("bind8/zone_dnssecmigrate_dt.cgi")>-1||i.indexOf("bind8/mass_rdelete.cgi")>-1||i.indexOf("bind8/enable_zonekey.cgi")>-1||i.indexOf("bind8/enable_zonedt.cgi")>-1||i.indexOf("bind8/disable_zonedt.cgi")>-1||i.indexOf("webalizer/save_log.cgi")>-1||i.indexOf("bacula-backup/restore.cgi")>-1||i.indexOf("bacula-backup/backup.cgi")>-1||i.indexOf("bacula-backup/gbackup.cgi")>-1||i.indexOf("bacula-backup/label.cgi")>-1||i.indexOf("bacula-backup/mount.cgi")>-1||i.indexOf("cluster-software/install_pack.cgi")>-1||i.indexOf("updown/download.cgi")>-1||i.indexOf("software/install_pack.cgi")>-1||i.indexOf("software/do_install.cgi")>-1||i.indexOf("software/apt_upgrade.cgi")>-1||i.indexOf("software/rhn_check.cgi")>-1||i.indexOf("software/yum_upgrade.cgi")>-1||i.indexOf("software/urpmi_upgrade.cgi")>-1||i.indexOf("software/csw_upgrade.cgi")>-1||i.indexOf("software/ports_upgrade.cgi")>-1||i.indexOf("webmin/letsencrypt.cgi")>-1||i.indexOf("webmin/delete_webmincron.cgi")>-1||i.indexOf("webmin/test_sendmail.cgi")>-1||i.indexOf("package-updates/update.cgi")>-1||i.indexOf("custom/run.cgi")>-1||i.indexOf("custom/sql.cgi")>-1||i.indexOf("virtualmin-init/save.cgi")>-1||i.indexOf("virtualmin-init/mass.cgi")>-1||i.indexOf("backup-config/save.cgi")>-1||i.indexOf("squid/init_cache.cgi")>-1||i.indexOf("squid/clear.cgi")>-1||i.indexOf("squid/chown.cgi")>-1||i.indexOf("ldap-client/check.cgi")>-1||i.indexOf("sendmail/del_mailqs.cgi")>-1||i.indexOf("sendmail/flushq.cgi")>-1||i.indexOf("init/mass_start_stop.cgi")>-1||i.indexOf("init/mass_launchd.cgi")>-1||i.indexOf("init/mass_systemd.cgi")>-1||i.indexOf("init/mass_upstarts.cgi")>-1||i.indexOf("init/mass_rcs.cgi")>-1||i.indexOf("init/save_services.cgi")>-1||i.indexOf("ldap-server/create.cgi")>-1||i.indexOf("change-user/change.cgi")>-1||i.indexOf("virtualmin-slavedns/save.cgi")>-1||i.indexOf("proc/trace.cgi")>-1||i.indexOf("proc/run.cgi")>-1||i.indexOf("proc/kill_proc_list.cgi")>-1||i.indexOf("fsdump/backup.cgi")>-1||i.indexOf("fsdump/restore.cgi")>-1||i.indexOf("webmin_search.cgi")>-1||i.indexOf("security-updates/update.cgi")>-1||i.indexOf("virtualmin-mailrelay/save.cgi")>-1||i.indexOf("cluster-copy/exec.cgi")>-1||i.indexOf("cron/save_cron.cgi")>-1||i.indexOf("cron/exec_cron.cgi")>-1||i.indexOf("virtualmin-registrar/import.cgi")>-1||i.indexOf("virtualmin-registrar/save_ns.cgi")>-1||i.indexOf("virtualmin-registrar/transfer.cgi")>-1||i.indexOf("virtualmin-registrar/renew.cgi")>-1||i.indexOf("virtualmin-registrar/create.cgi")>-1||i.indexOf("htaccess-htpasswd/search.cgi")>-1||i.indexOf("acl/makedn.cgi")>-1||i.indexOf("acl/cert_issue.cgi")>-1||i.indexOf("acl/maketables.cgi")>-1||i.indexOf("acl/schema.cgi")>-1||i.indexOf("filter/move.cgi")>-1||i.indexOf("fetchmail/check.cgi")>-1||i.indexOf("servers/find.cgi")>-1||i.indexOf("cluster-cron/exec.cgi")>-1||i.indexOf("raid/mkfs.cgi")>-1||i.indexOf("lvm/pvmove.cgi")>-1||i.indexOf("lvm/mkfs.cgi")>-1||i.indexOf("ppp-client/init.cgi")>-1||i.indexOf("fdisk/mkfs.cgi")>-1||i.indexOf("fdisk/tunefs.cgi")>-1||i.indexOf("fdisk/fsck.cgi")>-1||i.indexOf("spam/deleteall_awl.cgi")>-1||i.indexOf("quota/check_quotas.cgi")>-1||i.indexOf("virtualmin-awstats/generate.cgi")>-1||i.indexOf("postfix/flushq.cgi")>-1||i.indexOf("/webmin/upgrade.cgi")>-1)?1:0}function unbuffered_header_processor_allow_scroll(){var e=["webmin_search.cgi"],t=Core.curModule("package-updates")&&$('form[action*="update.cgi"]').length?1:0;return Test.arrContains(e,v___location_file)||t||!settings_perform_content_scrolling?0:1}function unbuffered_header_processor(e,t){if(t){var i=e,a=$(i.target),n=i.target.action;Core.var.source_request=v___location_resource;var s=$(quirks.active_element()).attr("name"),o=$.trim(quirks.active_element().innerText),r=quirks.active_element().value;a.find('input[name="'+s+'"]')&&a.find('input[name="'+s+'"]').val()==(o?o:r)||$('').attr({type:"hidden",name:s,value:o?o:r}).appendTo(a);var _=Test.strContains(a.attr("enctype"),"multipart/form-data"),l=_?new FormData(a[0]):a.serialize();if(_||(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,f=(v___location.href,0),g=$('div[data-dcontainer="1"] > .panel.panel-default').clone();progress.start(),set_onbeforeunload_status(1,1),$("body").addClass("loading-bg"),progressive_request=$.ajax({xhr:function(){var e=new window.XMLHttpRequest;return header_content_type="",e.responseType="",scrolled_by_user=0,e.addEventListener("progress",function(t){var i=XHR.headers(e)[1];if(i&&i.includes("application/"))return void(e.responseType="arraybuffer");var a=t.target.responseText,n=$(a),s='div[data-dcontainer="1"]',o=n.filter(s).html(),r=n.filter(s).find("pre").length;if(Test.strContains(a,v___page_signin_form))return v___available_session=0,void progressive_request.abort();if(!!o&&d++,0===f){f=1;$(window).off("popstate.unbuffered"),$(window).on("popstate.unbuffered",function(){$(this).unbind("popstate.unbuffered"),$('.container-fluid[data-dcontainer="1"]').html(g),setTimeout(function(){get_pjax_event_end_funcs(0)},41)})}if((r||d>1)&&!c){if(o){var _=$(".__page");if($('div[data-dcontainer="1"]').html(o),c++,unbuffered_header_processor_allow_scroll()){_.hasScrollBar()?scrolled_by_user||_.scrollTop(_[0].scrollHeight):_.scrollTop(0)}_.scroll(function(e){var t=this.scrollTop===this.scrollHeight-this.offsetHeight;t||(scrolled_by_user=1),t&&scrolled_by_user&&(scrolled_by_user=0)}),_.addClass("progressing"),unbuffered_header_processor_allow_scroll()||_.addClass("static"),get_pjax_event_end(!1,t.target)}$("body").addClass("loading-bg")}else if(c){var l=extract_content(a,'
    ',"
    ",0);l&&$('div[data-dcontainer="1"]').find(".panel-body").html(l),!scrolled_by_user&&unbuffered_header_processor_allow_scroll()&&$(".__page").scrollTop($(".__page")[0].scrollHeight)}},!1),e},type:get_pjax_type(a?a:h),url:h,processData:!t||!_,contentType:(!t||!_)&&"application/x-www-form-urlencoded; charset=UTF-8",data:!!t&&l,beforeSend:function(e){e.setRequestHeader("X-Progressive-URL",h),e.setRequestHeader("X-Requested-From",v___module||v___module_previous),e.setRequestHeader("X-Requested-From-Tab",get_navigation_module_folder_name())},complete:function(e){$('div[data-dcontainer="1"]').html($(e.responseText).filter('div[data-dcontainer="1"]').html()),window.history.pushState(null,null,navigation_trigger(this.url,2)),get_pjax_event_end(!1,e),unbuffered_header_processor_allow_scroll()&&$(".__page").scrollTop($(".__page")[0].scrollHeight);var t=$(".progressing pre > i");t.is(":first-child")&&t.is(":last-child")&&$(".progressing pre").addClass("no_data").find("i:first-child").addClass("label text-center label-transparent-15 text-uppercase"),$(".__page").removeClass("progressing static"),$("#headln2c .favorites").remove(),progress.end(),set_onbeforeunload_status(0,1),$("body").removeClass("loading-bg"),unbuffered_header_post(e),$(".__page").off("scroll"),Core.curModuleFile("package-updates","update.cgi")&&information_update()}})}function check_selected_text(){return window.getSelection().toString()}function check_location_resource(e){return v___location_resource===v___location_prefix+e}function check_current_file(e){return v___location_file==e}function vwTOpx(e){var t=window,i=document,a=i.documentElement,n=i.getElementsByTagName("body")[0];return(t.innerWidth||a.clientWidth||n.clientWidth)*e/100}function vhTOpx(e){var t=window,i=document,a=i.documentElement,n=i.getElementsByTagName("body")[0];return(t.innerHeight||a.clientHeight||n.clientHeight)*e/100}function pxTOvw(e){var t=window,i=document,a=i.documentElement,n=i.getElementsByTagName("body")[0];return 100*e/(t.innerWidth||a.clientWidth||n.clientWidth)}function pxTOvh(e){var t=window,i=document,a=i.documentElement,n=i.getElementsByTagName("body")[0];return 100*e/(t.innerHeight||a.clientHeight||n.clientHeight)}!function(){browser.detect.internet_explorer()>5&&browser.detect.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 a!==-1&&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}}),function(e){e.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()})}}(jQuery),function(e){e.fn.replaceTagName=function(t){for(var i=[],a=this.length;a--;){for(var n=document.createElement(t),s=this[a],o=s.attributes,r=o.length-1;r>=0;r--){var _=o[r];n.setAttribute(_.name,_.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){var i=document.body.createTextRange();i.moveToElementText(t),i.select()}else if(window.getSelection){var a=window.getSelection(),i=document.createRange();i.selectNodeContents(t),a.removeAllRanges(),a.addRange(i)}},function(e){e.fn.replaceText=function(t,i,a){return this.each(function(){var n,s,o=this.firstChild,r=[];if(o)do 3===o.nodeType&&(n=o.nodeValue,(s=n.replace(t,i))!==n&&(!a&&/this.height()}}(jQuery),$.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",classNameRemove:"",timeout:2500},e),$(this).each(function(i,a){function n(){o.removeClass(e.className).data("confirmed",!1).find(".tmp_question").remove(),e.classNameRemove&&o.addClass(e.classNameRemove)}var s,o=$(a);o.html();o.data("confirmed",!1),o.on("click.confirm",function(i){i.preventDefault(),o.data("confirmed")?(t.call(o,i),n()):(o.data("confirmed",!0),e.classNameRemove&&o.removeClass(e.classNameRemove),o.append('?').addClass(e.className).bind("mouseout.confirm",function(){s=setTimeout(n,e.timeout)}).bind("mouseover.confirm",function(){clearTimeout(s)}))}).removeClass(e.className),e.classNameRemove&&o.addClass(e.classNameRemove)}),$(this)},RegExp.quote=function(e){return e.replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1")},$.fn.contentText=function(e){return $(this).contents().filter(function(){return $(this).text().trim()==e.trim()})},$(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)}),$.getScripts=function(e){var t=$.map(e,function(e){return $.getScript(e)});return t.push($.Deferred(function(e){$(e.resolve)})),$.when.apply($,t)},$.download=function(e,t,i,a){if(a=void 0===a||1==a||a===!0?String():'target="_blank"',e&&t){t="string"==typeof t?t:$.param(t);var n="";$.each(t.split("&"),function(){var e=this.split("=");n+=''}),$("
    '+n+"
    ").appendTo("body").submit().remove()}},$.fn.resizeableTableColumns=function(){var e,t,i,a,n=!1;$(document).on("mousemove.tmp",function(a){if(n){var s=t+(a.pageX-e);i.css("min-width",s).width(s)}}).on("mouseup.tmp",function(){n&&(a.removeClass("resizing"),n=!1)}).on("mousedown.tmp",".table-resizable th:not(.nonresizable):not(:last-child)",function(s){i=$(this),n=!0,e=s.pageX,t=i.width(),a=i.closest(".table-resizable").addClass("resizing")}).on("dblclick.tmp",".table-resizable thead",function(){$(this).find("th[style]").css("min-width","").css("width","")}),$(document).one("pjax:complete",function(){theme_unbind(document,"dblclick.tmp mousemove.tmp mousedown.tmp mouseup.tmp")})};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}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="mail"),"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="white"),"undefined"==typeof settings_grayscale_level_navigation&&(settings_grayscale_level_navigation="0"),"undefined"==typeof settings_sepia_level_navigation&&(settings_sepia_level_navigation="0"),"undefined"==typeof settings_saturate_level_navigation&&(settings_saturate_level_navigation="1"),"undefined"==typeof settings_hue_level_navigation&&(settings_hue_level_navigation="0"),"undefined"==typeof settings_invert_level_navigation&&(settings_invert_level_navigation="0"),"undefined"==typeof settings_brightness_level_navigation&&(settings_brightness_level_navigation="1"),"undefined"==typeof settings_contrast_level_navigation&&(settings_contrast_level_navigation="1"),"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_contrast_mode&&(settings_contrast_mode=!1),"undefined"==typeof settings_enable_container_offset&&(settings_enable_container_offset=!0),"undefined"==typeof settings_right_page_hide_persistent_vscroll&&(settings_right_page_hide_persistent_vscroll=!0),"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_records_per_page="undefined"!=typeof localStorage&&null==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_records_per_page")?20:parseInt(localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_records_per_page")),config_portable_module_filemanager_default_sort="undefined"!=typeof localStorage&&null==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_default_sort")?"0":localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_default_sort"),config_portable_module_filemanager_hide_tree_view="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_hide_tree_view"),config_portable_module_filemanager_tree_expand_search="undefined"==typeof localStorage||"false"!=localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_tree_expand_search"),config_portable_module_filemanager_tree_view_depth="undefined"!=typeof localStorage&&null==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_tree_view_depth")?2:parseInt(localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_tree_view_depth")),config_portable_module_filemanager_tree_exclude_on_first_load="undefined"==typeof localStorage||"false"!=localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_tree_exclude_on_first_load"),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_calculate_size="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_calculate_size"),config_portable_module_filemanager_force_tar="undefined"==typeof localStorage||"false"!=localStorage.getItem(v___server_hostname+"-config_portable_module_filemanager_force_tar"),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||"false"!=localStorage.getItem(v___server_hostname+"-config_portable_module_xsql_fit_content_screen_height"),"undefined"==typeof settings_show_webmin_tab&&(settings_show_webmin_tab=!0),"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_navigation&&(settings_hotkey_navigation="a"),"undefined"==typeof settings_hotkey_slider&&(settings_hotkey_slider="e"),"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,#"),config_portable_theme_locale_languages="undefined"!=typeof localStorage&&localStorage.getItem(v___server_hostname+"-config_portable_theme_locale_languages")?localStorage.getItem(v___server_hostname+"-config_portable_theme_locale_languages"):get_server_data("language-full"),config_portable_theme_locale_language="undefined"!=typeof localStorage&&"true"==localStorage.getItem(v___server_hostname+"-config_portable_theme_locale_language"),config_portable_theme_locale_format_full="undefined"==typeof localStorage||localStorage.getItem(v___server_hostname+"-config_portable_theme_locale_format_full")?localStorage.getItem(v___server_hostname+"-config_portable_theme_locale_format_full"):"LLLL",config_portable_theme_locale_format_long="undefined"==typeof localStorage||localStorage.getItem(v___server_hostname+"-config_portable_theme_locale_format_long")?localStorage.getItem(v___server_hostname+"-config_portable_theme_locale_format_long"):"LL",config_portable_theme_locale_format_short="undefined"==typeof localStorage||localStorage.getItem(v___server_hostname+"-config_portable_theme_locale_format_short")?localStorage.getItem(v___server_hostname+"-config_portable_theme_locale_format_short"):"L","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_navigation_always_collapse&&(settings_navigation_always_collapse=!1),"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=1e3: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_csf_updates&&(settings_sysinfo_csf_updates=!1),"undefined"==typeof settings_sysinfo_link_mini&&(settings_sysinfo_link_mini=!1),"undefined"==typeof settings_perform_content_scrolling&&(settings_perform_content_scrolling=!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),"undefined"==typeof settings_mail_ui&&(settings_mail_ui=!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&&($(document).on("submit","form",function(e){if(void 0!==e.originalEvent&&(v___theme_content_history=0),"true"!=$(this).attr("data-download")){if("_blank"===e.target.target){var t=$(this);return void setTimeout(function(){t.removeAttr("target"),get_pjax_content(v___location_resource)},100)}e.preventDefault(),get_onbeforeunload_status()&&$(quirks.active_element()).is("a"+$__theme_event_deselectors)?get_onbeforeunload_message(e,this):get_pjax_action_submit(e)}}),$(document).on("click","a"+$__theme_default_deselectors,function(e){void 0!==e.originalEvent&&(v___theme_content_history=0),get_onbeforeunload_status()&&$(quirks.active_element()).is("a"+$__theme_event_deselectors)?(e.preventDefault(),get_onbeforeunload_message(e,this)):get_pjax_action_click(e,this)}),$(document).on("pjax:error",function(e,t,i,a,n){if("error"===i){var s=$.active;if(s&&($.active=s-1),Test.strContains(n.url,"/csf/index.cgi"))return void theme_reload()}}),$(document).on("pjax:start",function(e,t){get_server_data("loading",1),$("body").addClass("loading-bg"),Core.var.page_user_inactive=1,"number"==typeof set_server_theme_temp_data_timeout&&clearTimeout(set_server_theme_temp_data_timeout)}),$(document).on("pjax:beforeReplace",function(e,t,i){settings_mail_ui&&uri_parse("directory",i.url).indexOf("/mailboxes")===-1&&uri_parse("directory",i.url).indexOf("/mailbox")>-1&&(!uri_parse("file",i.url)||uri_parse("file",i.url).indexOf("index.cgi")>-1)&&(Core.var.pjax_replace_contents=0),navigation_form_control(0),pjax.clear.modules(i),i.push===!1&&(Test.strContains(i.url,"/config.cgi?")||Test.strContains(i.url,"/uconfig.cgi?"))&&t.find(".btn-accordion-filter, .btn-toggle-accordions").remove()}),$(document).on("ready pjax:beforeSend",function(e,t,i){if(theme_download_link(i))return!1;if($t_uri_webmail&&settings_mail_ui&&Core.moduleAvailable("mailbox")&&("object"==typeof mail?0===$("aside .fancytree-container").length&&mail_load_folders():load.bundle(v___server_extensions_path+"/mail/mail",1,["mail.folders.get()"])),settings_mail_ui&&Core.curModule("mailbox")&&(Core.curModuleFile("mailbox","")||Core.curModuleFile("mailbox","index.cgi"))&&uri_parse("directory",i.url).indexOf("/mailboxes")===-1&&uri_parse("directory",i.url).indexOf("/mailbox")>-1&&(!uri_parse("file",i.url)||uri_parse("file",i.url).indexOf("index.cgi")>-1))return mail_load(i.url),!1;progress.start(),"number"==typeof v___theme_postponed_fetcher&&clearInterval(v___theme_postponed_fetcher);var a=$(e.relatedTarget),n=a.attr("href");n=n?n: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&&check_bundle(n),"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])]),v___theme_pjax_call+=1}),$(document).on("pjax:success",function(event,data,status,xhr,options){"object"==typeof options.callback&&"success"===options.callback[0]&&(options.callback[3]?setTimeout(function(){"string"==typeof options.callback[1]?eval(options.callback[1]):window[options.callback[1].apply(this,options.callback[2])]},options.callback[3]):"string"==typeof options.callback[1]?eval(options.callback[1]):window[options.callback[1].apply(this,options.callback[2])])}),$(document).on("pjax:complete",function(e,t,i){Core.var.allow_ui_features=1,v___theme_reload&&theme_reload(),setTimeout(function(){$(".container-fluid-loading").length||progress.end()},10),get_server_data("loading",0,1),$("body").removeClass("loading-bg"),v___theme_connection_triggered_origin=0,"object"==typeof stats&&stats.general.error&&stats.general.enable(),navigation_links()}),$(document).on("ready pjax:end",function(e,t){0!==v___available_session&&1!==v___theme_reload&&(void 0!=t&&t.responseText&&t.responseText.includes("data-predownload")||(navigation_form_control(1),get_pjax_event_end(e,t),setTimeout(function(){var e=navigation_trigger(location.hash,1).replace("#","");if(e&&e.length>0){var t=$('[name="'+e+'"]');t.length&&t[0].scrollIntoView({duration:200,smooth:!0,direction:"vertical",complete:function(){}})}},200),v___page_container.find(".panel > .panel-body:first").one("click mousedown keypress",function(){Core.var.page_user_inactive=0})))}),$(document).on("pjax:popstate",function(e){var t=e.state;setTimeout(function(){get_pjax_event_end_funcs(0),navigation_links(),Core.var.previous_request=new String,Core.var.source_request=new String},40);var i=v___module_file_manager+"/config.cgi",a=Test.strContains(v___location_resource,i),n=Test.strContains(t.url,i),s=a||n,o=Test.strContains(t.url,v___module_file_manager),_=v___module===v___module_file_manager,r=Test.strContains(t.url,"/csf/"),l="csf"===v___module,d="csf"!==v___module,c=theme_language("theme_xhred_global_firewall"),p=Test.strContains(t.url,"/settings-user.cgi"),g=Test.strContains(t.url,"/edit_themes.cgi")||p,f=Test.strContains(t.title,v___server_hostname)?theme_language("theme_xhred_datatable_sloadingrecords")+'':t.title;(o||_)&&(_&&!s&&page.handle.content.preloader(r?1200:400,r?c:f),o&&!n&&(page.handle.content.preloader(-2,f),jsPanel.closeChildpanels("body"),__f_____undel(),v___theme_pjax_call=0,setTimeout(function(){page_refresh()},41))),g||!r&&!l||(l&&(d||!r)&&!o&&!_&&page.handle.content.preloader(400,r?c:f),r&&((a||d&&!o&&!_)&&page.handle.content.preloader(1200,c),setTimeout(function(){d&&(v___theme_pjax_call=0,page_refresh())},41))),(g||n)&&((!o&&!_||n)&&page.handle.content.preloader(400,f),setTimeout(function(){page_refresh()},41))})),v___available_session&&($.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){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);get_server_data("available-modules",JSON.parse(e))}}),$.ajax({type:"GET",url:v___location_prefix+"/index.cgi/?xhr-get_user_level=1",data:!1,dataType:"text",async:v___available_navigation,success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);Core.var.level=e}}),theme_config("load")),$(function(){if(1===v___initial_load&&v___available_navigation&&(page_display(),navigation_display(),0===get_access_level()&&settings_sysinfo_real_time_status&&load.bundle(v___server_extensions_path+"/stats/stats",0,["stats.general.timeout = settings_sysinfo_real_time_timeout","stats.general.query()"])),time.tictac(0,1),browser.detect.safari(1)&&$("html").css("overflow","auto"),browser.detect.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",n=$('.switch-toggle input:not([id="open_'+a+'"]):checked').length;n&&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):n&&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.start()},300)}).ajaxSuccess(function(e,t){v___theme_ajax_error=0,"object"==typeof stats&&stats.general.error&&0===get_access_level()&&settings_sysinfo_real_time_status&&(stats.general.enable(),stats.general.error=0)}).ajaxError(function(e,t){"canceled"!==t.statusText&&connection_error(t,0)}),$.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.start(),navigation_links()},beforeSend:function(e,t){t.url=navigation_trigger(t.url,1),e.setRequestHeader("X-Requested-From",v___module||v___module_previous),e.setRequestHeader("X-Requested-From-Tab",get_navigation_module_folder_name())}})),function(){if("function"==typeof Messenger.Message){var e,t,i,a={}.hasOwnProperty,n=function(e,t){function i(){this.constructor=e}for(var n in t)a.call(t,n)&&(e[n]=t[n]);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 n(a,t),a.prototype.template=function(t){var n;return n=a.__super__.template.apply(this,arguments),n.append(e(i)),n},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+(v___debug?" (debug)":String())+"\nhttps://github.com/authentic-theme/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&&"undefined"==typeof t_uri_get_content&&(get_navigation_menu_virtualmin_summary(),get_default_virtualmin_content(!1)),$t_uri_cloudmin&&"undefined"==typeof t_uri_get_content&&get_default_cloudmin_content(!1),$t_uri_virtualmin||$t_uri_cloudmin||"undefined"!=typeof t_uri_get_content||get_default_content(),t_uri_get_content=1};$.when(get_server_theme_temp_data("goto",0,e)).then(function(t,i,a){if(!a.responseText||get_server_data("initial-wizard")||unbuffered_header_processor_allow(a.responseText))e();else{if(Test.strContains(a.responseText,"//")&&URI(a.responseText).hostname()!==URI(location.href).hostname()||Test.strContains(a.responseText,"/servers/link.cgi/")||Test.strContains(a.responseText,"settings-user.cgi")||"/"===a.responseText||a.responseText==="/?"+$__theme_navigation)return void get_pjax_content(v___location_prefix+"/sysinfo.cgi");if(Test.strContains(a.responseText,"virtual-server")){var n=URI.parseQuery(URI(a.responseText).query()).dom,s=n?n:$('select[name="dom"]').val();set_switch_position("virtualmin"),get_navigation_menu_virtualmin(!!s&&s)}else if(Test.strContains(a.responseText,"server-manager")){var o=URI.parseQuery(URI(a.responseText).query()).id,_=o?o:$('select[name="sid"]').val();set_switch_position("cloudmin"),get_navigation_menu_cloudmin(!!_&&_)}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));check_bundle(a.responseText),get_pjax_content(a.responseText,["success","v___theme_content_history = 1"])}})},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(){if($("body").hasClass("loading-bg"))return void $(this).blur();navigation_init_autocomplete("c",!1)}),$("body").on("blur",".sidebar-search",function(){setTimeout(function(){navigation_init_autocomplete("c",!0)},150)}),setTimeout(function(){information_update()},1e4),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(get_server_data("webmail")!==-1&&13==e.keyCode)return e.preventDefault(),!1}),$("body").on("click",".mobile-menu-toggler",function(e){var t=$settings_animation_left_slide_time?$settings_animation_left_slide_time:1;$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*t)},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*t),$(".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"),i=t.is("[data-has-sub-link]");e.is(a)||(e.removeClass("active"),"#search"!=e.find("a").attr("href")&&i&&$(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="MacIntel"===window.navigator.platform?1:0;if(!(!t&&e.ctrlKey||t&&e.metaKey)){var i=$(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(""),i.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(),page_refresh()}),$("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_theme_temp_data("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 n=navigation_trigger(a,2);set_server_theme_temp_data("goto",navigation_trigger(n,1)),setTimeout(function(){theme_open_new_tab(n)},200)}else if("webmail"===t){var s=v___location_prefix+"/mailbox/index.cgi?"+$__theme_navigation;set_server_theme_temp_data("goto",navigation_trigger(s,1)),setTimeout(function(){theme_open_new_tab(s)},200)}else{ var s=v___location_prefix+"/sysinfo.cgi?"+$__theme_navigation;set_server_theme_temp_data("goto",navigation_trigger(s,1)),setTimeout(function(){theme_open_new_tab(s)},200)}}),$(".switch-toggle").on("click","input.dynamic",function(e){if(get_onbeforeunload_status()){e.preventDefault();var t=$(".switch-toggle input:checked").attr("id");return void get_onbeforeunload_message([],{href:"::switch::"+t})}return"open_thirdlane"==$(this).attr("id")?void(location.href=v___location_prefix+"/asterisk/index.cgi"):(set_switch_position($(this).attr("id").replace("open_","")),"open_dashboard"==$(this).attr("id")?void get_pjax_content(v___location_prefix+"/sysinfo.cgi"):void get_navigation_and_content($(this).attr("id").replace("open_",""),0,0))}),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}),$("body").on("click","[data-shell-config]",function(e){3!==get_access_level()&&$.ajax({type:"GET",url:v___location_prefix+"/config.cgi?shell",data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);var t=$(e).find(".ui_form"),i=t.find("table.sub_table_container"),a=v___location_prefix+"/config_save.cgi";i.find("a").contents().unwrap();var n=i.find("tbody"),s=$(e).find("tr th.table-title b").text();theme_alert(s,'
    '+n[0].outerHTML+'
    ",!1,"md","info","cogs",'10 modal-shell-config" data-keyboard="false" data-backdrop="static',0),setTimeout(function(){$("[data-save-shell-config]").on("click",function(e){e.preventDefault();var t=$(this);if(!t.hasClass("disabled")){var i=$(".modal-shell-config"),n=i.find("form").serialize();t.addClass("disabled").find("i").replaceWith(theme_spinner_small(!1," ")),$.ajax({type:"POST",url:a,data:n,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);i.find('[data-dismiss="modal"]').trigger("click")},error:function(){}})}})},300)}})});var e=$("body").find(".-shell-port-"),t=e.find('input[data-command="true"]'),a=e.find("div[data-output]"),n=e.find(".-shell-port-container"),s=e.data("autocomplete");if($(window).keydown(function(i){var o=theme_shell_status(),_=$(".modal-shell-config:visible").length;if(!o&&v___available_session&&(navigation_focus_search(i),theme_shortcuts(i)),o&&27===i.keyCode&&!_)return void theme_shell_close(e);if(o&&38===i.keyCode&&(t.is(":focus")||$(".form-control.sidebar-search").is(":focus"))&&i.preventDefault(),o&&9===i.keyCode&&t.is(":focus")){if(i.preventDefault(),!s)return;var r=t.val().trim().split(/\s+(?!-)/),l=r.length,d=r[0]&&r[0].indexOf("-")===-1?0:1,c=r[1]&&r[1].indexOf(":")===-1?0:1,p=t.val().endsWith(" "),g="service"===$.trim(r[0]),f="systemctl"===$.trim(r[0]),u=$.trim(r[0])&&$.trim(r[0]).startsWith("chown"),m=1!==r.length||!t.val().length||d||p?g||f?"services":u?"permissions":"lists":"commands";if(!$.trim(t.val()).length)return;var h=t.val(),v=e.find(".-shell-port-pwd"),b=v.attr("data-pwd");if("services"===m){if("systemctl"===(m=g?"service":"systemctl")&&3!==r.length)return;h="service"==m?$.trim(r[1]):$.trim(r[2]),"service"===$.trim(r[0])&&(2===r.length&&p||3===r.length)&&(h=3===r.length?"::::"+$.trim(r[1])+"::::"+$.trim(r[2]):"::::"+$.trim(r[1]))}if(u){if(1===l&&!p)return void t.val($.trim(r[0])+" ");c&&$.trim(r[1])?p||r[2]?(m="lists",h=b+"/::::"+$.trim(r[2])):(m="groups",h=$.trim($.trim(r[1]).split(":")[1])):(m="users",h=$.trim(r[1]))}"lists"!==m||u||(h=b+"/::::"+$.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="+m+"&xhr-get_autocomplete_string="+h,data:!1,dataType:"json",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);var i=e.length;if(1===i)if("service"===m||"systemctl"===m||"lists"===m){var s=$.trim(r[0]),o=$.trim(r[0])+" "+$.trim(r[1]);"lists"===m?("cd"===s&&e[0].endsWith("/")||"cd"!==s)&&("cd"===s||"cat"===s?t.val(s+" "+e[0]):$.trim(r[2])?t.val(o+" "+e[0]):t.val(s+" "+e[0])):"service"!==s||2!==r.length&&3!==r.length?"systemctl"===s&&3===r.length&&t.val(s+" "+$.trim(r[1])+" "+e[0]):2===r.length?t.val(s+" "+e[0]+" "):3===r.length&&t.val($.trim(r[0])+" "+$.trim(r[1])+" "+e[0])}else u?c?p||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")),n.scrollTop(n[0].scrollHeight)}setTimeout(function(){t.focus().mousedown()},10)},error:function(){}})}}),$(window).keyup(function(n){var s=theme_shell_status(),o=$(".modal-shell-config:visible").length;if(s&&!o){var _=0,r=0,l=0,d=$(".form-control.sidebar-search"),c=$t_uri_cloudmin&&$('a[target="page"][href*="/server-manager/save_serv.cgi"][href*="shell=1"]').length,p=$('select[name="sid"]').val(),g=0,f=0;if(c)f=v___location_prefix+"/server-manager/shell.cgi";else{if(!Core.moduleAvailable("shell"))return;f=v___location_prefix+"/shell/index.cgi"}if((s||d.is(":focus"))&&8===n.keyCode&&(__shell_commands__i__=0),s?(_=$.trim(t.val()),r=1,l=1):(_=d.val(),r=void 0!==d.val(),l=0),(l||r&&(!_.trim()||_.trim().startsWith("!")))&&(38==n.keyCode||40==n.keyCode)){n.preventDefault(),n.stopPropagation(),void 0===localStorage.getItem(v___server_hostname+"-shell_commands")&&localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify({}));var u=JSON.parse(localStorage.getItem(v___server_hostname+"-shell_commands")),m=u?u.length:0;if(0===__shell_commands__i__&&!_&&40==n.keyCode)return;if(0===__shell_commands__i__&&_&&38==n.keyCode)return void(g=1);if(__shell_commands__i__=40==n.keyCode?++__shell_commands__i__:--__shell_commands__i__,__shell_commands__i__<0&&38===n.keyCode?__shell_commands__i__=m-1:__shell_commands__i__>m&&(__shell_commands__i__=0),u&&u[__shell_commands__i__%m]){if(!$.isEmptyObject(u)&&(__shell_commands__i__==m&&38===n.keyCode||__shell_commands__i__==m&&40===n.keyCode||g))return s?t.val("").focus():d.val("").focus(),void(__shell_commands__i__=0);if(s){var h=u[__shell_commands__i__%m].replace(/^!/,"");t.val(Convert.htmlUnEscape(h)).focus()}}return}if(r&&_.trim().startsWith("!")&&27==n.keyCode)return n.preventDefault(),n.stopPropagation(),void d.val("").focus();if(r&&_.trim().startsWith("!")&&13==n.keyCode&&(d.addClass("_shell_form_"),n.preventDefault(),n.stopPropagation(),1==Core.moduleAvailable("shell")||c)){t.val(_.trim().substring(1)).focus(),theme_shell_open(e);var v=$.Event("keyup");v.keyCode=13,t.trigger(v)}var b=e.find(".-shell-port-container"),y=e.find(".-shell-port-pwd"),x=y.attr("data-pwd"),k=$.trim(t.val()),w=0,C=n.keyCode?n.keyCode:n.which,T=n.altKey&&"l"==String.fromCharCode(n.which).toLowerCase();if(t.is(":focus")||check_selected_text()||(n.ctrlKey||n.altKey||n.shiftKey||n.metaKey||t.val(t.val()+String.fromCharCode(n.which).toLowerCase()),t.focus()),(k&&13===C||T)&&(Core.moduleAvailable("shell")||c)){if(1===v___shell_processing)return;v___shell_processing=1,("clear"==k||"reset"==k||"exit"==k||T)&&(a.find("pre").html(""),theme_shell_clear(t),"exit"==k&&theme_shell_close(e)),"cd ~"==k&&(w=k,k="cd "+y.attr("data-home"));var S=!1;if("cd /"==k&&(S="/"),"history -c"==k){localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify({}));var I=""+$(".-shell-port-type").text()+" "+k+"\n";a.find("pre").append(I),theme_shell_clear(t),b.scrollTop(b[0].scrollHeight);var j='',D=new FormData($(j)[0]);$.ajax({type:"POST",url:f+"?stripped=1&stripped=2",data:D,dataType:"text",cache:!1,contentType:!1,processData:!1,success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0)},error:function(e){}})}else if($.trim(k).startsWith("history -d")){var P=k.split(" "),O=P[2];O&&O.length&&Test.numeric(O)&&$.ajax({type:"POST",url:v___location_prefix+"/index.cgi/?xhr-shell-pop="+O+"&xhr-shell-cms="+c+"&xhr-shell-cmsid="+p,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(O)-1})))}},error:function(e){}}),theme_shell_clear(t)}else if(k.startsWith("history")){theme_shell_clear(t);var q=JSON.parse(localStorage.getItem(v___server_hostname+"-shell_commands")),A=q?q.length:0,E=A?A.toString().length:0,I=""+$(".-shell-port-type").text()+" "+k+"\n";$.each($(q),function(e,t){var a=e.toString().length,n="";for(i=0;i '+(c?'':"")+' ',z=new FormData($(R)[0]);t.attr("readonly","true");var K=0,L=0,U=!1,M=0;shell_request=$.ajax({xhr:function(){var e=new window.XMLHttpRequest;return e.addEventListener("progress",function(e){var t=e.target.responseText;if(Test.strContains(t,v___page_signin_form))return v___available_session=0,void shell_request.abort();if(t&&t.length&&/[\x1B]/.test(t))return M=1,void shell_request.abort();if(!!t&&L++,L>2&&!K)t&&($(".-shell-port-cmd").after("
    "),K++,$(".-shell-port-container").addClass("progressing"));else if(K){var i=extract_content(t,"
    ","
    ",1);i&&(i=i.replace(/<(b)[^>]*>[^<]*(<\/b>)/i,""),U=i),$(".-shell-port-cmd").next("pre").replaceWith(i),b.scrollTop(b[0].scrollHeight)}},!1),e},type:"POST",url:f+"?stripped=1&stripped=2",data:z,dataType:"text",cache:!1,contentType:!1,processData:!1,complete:function(e){if($(".-shell-port-container").removeClass("progressing"),e=e.responseText,Test.strContains(e,v___page_signin_form))return void(v___available_session=0);if(M)return a.find("pre").append(""+$(".-shell-port-type").text()+" "+t.val()+" \nError opening terminal: unknown.\n"),void theme_shell_call_done(".-shell-port-cmd",t,b);var i=$(".-shell-port-type").text(),n=$(e).find("pre").length?$(e).find("pre"):$(e).filter("pre"),s=n.html().replace(/>>/g,">"+i),o=$(e).find('input[name="previous"][type="hidden"]').map(function(){return Convert.htmlEscape($(this).val())}).get();localStorage.setItem(v___server_hostname+"-shell_commands",JSON.stringify(o)),newPwd=$(e).find('input[name="pwd"]').val(),a.find("pre").append(w?s.replace(new RegExp(k,"g"),w):s),y.text(S?S:newPwd==y.attr("data-home")?"~":newPwd.split("/").filter(function(e){return""!=$.trim(e)}).slice(-1)[0]).attr("data-pwd",S?S:newPwd).attr("title",S?S:newPwd),theme_shell_call_done(".-shell-port-cmd",t,b)},error:function(e){}})}}}),$("body").on("keyup","#webmin_search_form",function(e){var t=$(this),i=t.find("input.sidebar-search"),a=i.val(),n=$("body").find(".-shell-port-");if(a&&13==e.keyCode)if(a.startsWith("!"))theme_shell_open(n,a);else{$(this).find('input[name="mod"], input[name="title"]').remove(),"virtual-server"!==get_navigation_module_folder_name()&&"server-manager"!==get_navigation_module_folder_name()||$("").attr({type:"hidden",name:"mod",value:get_navigation_module_folder_name()}).appendTo($(this));var s=get_navigation_module_folder_name(1),o=theme_language("theme_xhred_search_in_"+("mailbox"===s?"usermin":s));o=o?o:theme_language("theme_xhred_filemanager_context_search"),$("").attr({type:"hidden",name:"title",value:o}).appendTo($(this)),$(this).trigger("submit"),i.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_init(),0==v___user_level){var o=localStorage.getItem(v___server_hostname+"-right-side-tab")?localStorage.getItem(v___server_hostname+"-right-side-tab"):"#right-side-tabs-sysinfo",_='
    '+theme_language("theme_xhred_notification_no_data").toUpperCase()+"
    ",r='
    '+theme_language("theme_xhred_notification_no_favorites").toUpperCase()+"
    ",l=' \t\t \t\t \t';browser.detect.safari(1)?setTimeout(function(){$("body").append(l)},0):$("body").append(l),$('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",'i[data-trigger="side_slider_pinned"]',function(e){e.stopImmediatePropagation();var t="1"==get_server_data("data-slider-fixed")?0:1;Core.var.slider_pinned=t,settings_side_slider_fixed=!settings_side_slider_fixed,set_side_slider_visibility(t,void 0!==e.originalEvent?1:0),$(".dropdown.open.obj-settings .dropdown-toggle").dropdown("toggle")}),$("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"),n=a.indexOf("cpu_")>-1?"cpu":a.indexOf("mem_")>-1?"mem":a.indexOf("virt_")>-1?"virt":"disk";"cpu"==n&&i?t=v___location_prefix+"/proc/index_cpu.cgi":"mem"!=n&&"virt"!=n||!i?"disk"==n&&Core.moduleAvailable("disk-usage")?t=v___location_prefix+"/disk-usage":"disk"==n&&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)})}else get_server_data("data-slider-fixed","0"),$(".right-side-tabs-toggler").addClass("hidden");$("body").on("click","aside [data-collapse-trigger]",function(e){e.stopImmediatePropagation();var t="1"==get_server_data("data-navigation-collapsed")?0:1;Core.var.navigation_pinned=t,settings_navigation_always_collapse=!settings_navigation_always_collapse,settings_navigation_always_collapse?(get_server_data("data-navigation-collapsed",1),$(".mobile-menu-toggler").removeClass("visible-xs"),navigation_hide(1,void 0!==e.originalEvent?1:0)):(get_server_data("data-navigation-collapsed",0),$(".mobile-menu-toggler").addClass("visible-xs")),setTimeout(function(){page_resized()},0)}),$(".right-side-tabs .tab-pane").each(function(){$(this).css("height",$("body").outerHeight()-13)}),$(".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))});var d=".right-side-tabs-dismiss i.fa-reload, ._sync_sysinfo_.fa-reload";$("body").on("click",d,function(e){if(!$(this).hasClass("cursor-na")){var t=Core.moduleAvailable("virtual-server")?"virtual-server":"system-status",i=$(d);i.addClass("fa-spin-fastest cursor-na"),$.ajax({type:"GET",url:v___location_prefix+"/"+t+"/recollect.cgi",data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);"sysinfo.cgi"===v___location_file&&get_pjax_content(v___location_prefix+"/sysinfo.cgi"),information_update()},error:function(e){i.removeClass("fa-spin-fastest cursor-na"),theme_messenger(''+theme_language("theme_xhred_sysinfo_update_failed"),20,"error","sysinfoRecollect")}})}}),$(".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)}),$("body").on("click",".-shell-port-close",function(t){theme_shell_check_available()&&theme_shell_close(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(),n=$(".sub_active").text().trim(),s="",o="" -;($t_uri_virtualmin||$t_uri_cloudmin)&&(s=$("aside .ui_select option:selected").text()),$('body[class^="'+v___module_file_manager+'"]').length&&(o=URI.parseQuery(URI(v___location).query()).path,o=o?"["+o+"]":"[/]"),favorites_add(t,(s.length?s+" - ":"")+(a.length?a+"/":"")+(n.length?n+(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){var t="MacIntel"===window.navigator.platform?1:0;if(!t&&e.ctrlKey||t&&e.metaKey){var i=navigation_trigger($(e.target).attr("href"),1),a=$(e.target).find("a").attr("href")||$(e.target).parents("a").attr("href"),n=navigation_trigger(a,1),s=$(e.target).find("a").length?$(e.target).find("a"):$(e.target).parents("a"),o=Math.floor(1e4*Math.random());(i&&!Test.strContains(i,"javascript")||n&&!Test.strContains(n,"javascript"))&&(i?($(e.target).attr("href",navigation_trigger(i+(Test.strContains(i,"?")?"&":"?")+"randomized="+o,2)),setTimeout(function(){$(e.target).attr("href",navigation_trigger(i,2))})):n&&(s.attr("href",navigation_trigger(n+(Test.strContains(n,"?")?"&":"?")+"randomized="+o,2)),setTimeout(function(){s.attr("href",navigation_trigger(n,2))})))}$(e.target).is('.wbm-sm, .fa-stack, input[name="product-switcher"], label[for*="open_"], span, .sidebar-search, .select2-search, .select2-search__field, .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","a#atclearcache",function(e){set_onbeforeunload_status(0,0),localStorage.clear(),$(".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]),setTimeout(function(){theme_reload()},500)}),$("body").on("click",function(e){$(".tooltip").tooltip("hide"),$(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(".fa-trash-o")||$(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=$(this),i="1"==t.data("stable")?1:0,a="1"==t.data("force")?1:0;theme.update(i,a)}),$("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)})):("0px"==___________content_initial_?$("#content").removeAttr("style"):$("#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;var e=($(this),$("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=$(".versionSeparator:last").text(),________multi_in_branch=$(".versionSeparator").length,_____version__x=________version_first_text+"..."+v___theme_version;var t=$(".versionSeparator"),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"),n=$(this).find(".modal-body h4:first");if(!$(this).find(".modal-body h4:first .diffctl").length){var s=new RegExp(RegExp.quote(________version_curr_text),"g");________multi_in_branch&&(a.replaceText(s,""+_____version__x+""),a.replaceText(/Version/,"Versions"));var o=$(this).find('.modal-body h4:contains("beta")').length;if(a.length&&o){var _=$(this).find('.modal-body a[href*="authentic-theme/releases"]:first').text().match(/-?(?:\d+(?:\.\d*)?|\.\d+)/);latest_release=parseFloat(_?_[0]:v___theme_version);var r=n.text(),l=r.split("..."),d=0,c=$('a.versionSeparator[href*="releases"]:not(:empty)').first().text();l[1]&&(d=l[0].replace("Versions ",""),n.text(n.text().replace(d,c))),n.append(''),n.after(' '+i+"")}else n.append('').append(''+________version_curr_text+"")}var p=[];$.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)"),n=a.length;________multi_in_branch?(p.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),n+" ",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(){function e(e,t){return parseInt($(t).text().replace("#",""))
    • Fixed bugs
    '),$(".modal-body span[data-bugs-container]").append(p),$(".modal-body span[data-bugs-container] a").sort(e).appendTo(".modal-body span[data-bugs-container]");var t=$("span[data-fixed-bugs]"),i=($("span[data-bugs-container]"),$(".modal-body span[data-bugs-container]").find("a:not(.bctl)")),a=i.length;t.html([t.text().slice(0,6),a+" ",t.text().slice(6)].join("")),t.append(''),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 n=$("div[data-bugs]"),s=n.find("a:not(.bctl)").length;!s&&n.prev(".hr-dashed").remove(),!s&&n.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($(".versionSeparator: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",".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(),get_onbeforeunload_status()?get_onbeforeunload_message(this,"$($eventData).parent('form').submit()","ev"):$(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"),a.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()});var n=e.attr("name")?e.attr("name"):e.attr("id"),s=$.trim(e.val());$('').attr({type:"hidden",name:n,value:s}).appendTo(a),e.trigger("click")}),$("body").on("click",'.ui_form_end_submit:not(.disabled), .page_footer_submit:not(.disabled):not([href*="javascript:history"])',function(){Core.curModule("csf")?spinnerfy_buttons($(this),[2,-29,"small",!1]):spinnerfy_buttons($(this),!1,!1,!1)}),$("body").on("dblclick",'.mppopup a[onclick*="fileclick("], .mppopup a[onclick*="parentdir("]',function(e){e.preventDefault()});var c=0,p=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(),c++,$data_mppopup_value.val($v__mpp__g_ol),1===c)p=setTimeout(function(){if(c=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},450);else if(clearTimeout(p),c=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),Core.curModule("custom")&&refInput.trigger("input")}),$("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 n=$(".mppopup .mppopup_multi_done:visible");n.length&&setTimeout(function(){n.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 s=$(".mppopup table tbody tr:visible:not(.noresults)"),o=$(".mppopup table tbody tr.noresults");s.length?o.addClass("hidden"):o.removeClass("hidden")}}),$("body").on("click","button[data-mmclick]:not(.disabled), input[data-mmclick]:not(.disabled)",function(e){function t(e,t,i,a,s){var o;o=s?' ":' ";var _=' ";$("body").append(_),refInput.addClass("refInputData"),$("body .mppopup").modal("show")}function i(e){e[1].startsWith("/")?$v__mpp__g_op=e[1]:$v__mpp__g_op="/"+e[1]}e.preventDefault(),e.stopPropagation(),refInput=chooser_get_target($(this),1);var a=$(this),n=refInput.val(),s=encodeURIComponent(n),o=$(this).attr("data-mmclick"),_=o.match("window.open\\(['\"]*(.*?)(\\s*['\"]*,.*?)"),r=_[1].match(/(\w+\.[a-z]{3,4})/gi)[0],l=r.replace(".cgi","");if(a.addClass("disabled").attr("disabled","disabled"),_[1]){var d=_[1].replace("encodeURIComponent(ifield.value)","refInputCurrValSafe");d=d.replace('"+"',"").replace('"+',"").replace("refInputCurrValSafe",s),$.ajax({type:"POST",url:d,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);var a=e,n=e.match(')<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/<\/body>|<\/html>/gi,""),a=$(i).filter(".table").html(),n=$(i).filter(".table").prev("b").html(),s=chooser_breadcrumbs(n);0===$(a).find("td").length&&(a=a.replace("thead","tbody"),a=a.replace("",''+theme_language("theme_xhred_datatable_semptydirectory")+"")),i=s+''+a+"
    ",t(i,"type1",0,refInput,0)}});else if($.isArray(n))i(n),$.ajax({type:"POST",url:$v__mpp__g_op,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);var i=e.replace(/<(!doctype|script|link|meta)\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/<\/body>|<\/html>/gi,"");i=''+$(i).filter("table").html()+"
    ",t(i,"type2",0,refInput,1)}});else{if($.isArray(n)&&n[1].indexOf("&multi=1")===-1)return;var s=a,o=$(s).filter("table").html();t(''+o+"
    ","",1,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/?"+$__theme_navigation+'"], aside a[href="'+v___location_prefix+"/server-manager/shell.cgi?"+$__theme_navigation+'"], aside a[href*="shell=1"]:not(a[href*="login.cgi"])',function(e){e.preventDefault(),e.stopPropagation(),$(".user-link.ported-console:visible").trigger("click")}),$("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_theme_temp_data("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()}}),$("body").on("click",'form[action*="save_user.cgi"] button[name="but_switch"], a[href*="virtual-server/switch_user.cgi"]',function(e){v___theme_reload=1}),$(window).on("resize",function(){page_resized(),theme_shell_adapt()}),$("body").on("click",'[href*="javascript:history"]',function(e){v___theme_content_history&&(e.preventDefault(),e.stopPropagation(),v___theme_content_history=0,get_pjax_content(v___location_directory))}),$("body").on("click",".ui_multi_select_row select[multiple] option",function(e){var t=$(this).parent("select"),i=t.parent("td"),a=i.parent("tr"),n=i.index();e.ctrlKey||e.metaKey||e.shiftKey||e.altKey||0!==n&&2!==n||a.find("td:eq(1)").find('[onclick*="multi_select_move"][onclick*="'+(n?0:1)+'"]').trigger("click")}),$("body").on("click",'.container-fluid a[href], .container-fluid button, .container-fluid input[type="button"], .right-side-tabs a[href], .right-side-tabs button, .right-side-tabs input[type="button"], .right-side-tabs .info-container .graph-container-fw, .right-side-tabs-dismiss i, .favorites-menu li a',function(){v___blocked_navigation=0}),document.addEventListener("visibilitychange",function(){"hidden"===document.visibilityState?v___theme_state_visible=0:v___theme_state_visible=1,theme.visibility(v___theme_state_visible)}),window.addEventListener("focus",function(){v___theme_state_visible=1,theme.visibility(v___theme_state_visible),theme_window_focused()}),window.addEventListener("blur",function(){v___theme_state_visible=0,theme.visibility(v___theme_state_visible)}),window.addEventListener("popstate",function(){$('[data-trigger-injected="1"]').remove()}),$("body").on("click",".help_popup",function(e){e.stopPropagation(),e.preventDefault();var t=$(this),i=$(this).attr("href"),a=$(this).parent();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))return void(v___available_session=0);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='',o=t.attr("href").indexOf("showpass.cgi")>-1,_=t.attr("href").indexOf("/locale")>-1;o&&(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"))})}})}),$("body").on("click",'#extended_sysinfo-1 .panel-collapse[aria-labelledby="status-virtual-server-1"] a:not(.ui_link)',function(e){e.preventDefault();var t=$(this),i=t.attr("href");if(!t.hasClass("disabled")){t.addClass("disabled opacity-0_4");var a=t.find(".fa-refresh");a&&a.addClass("fa-spin"),progress.start(),$.ajax({type:"GET",url:i,data:!1,statusCode:{200:function(){$.ajax({type:"GET",url:v___location_prefix+"/sysinfo.cgi",success:function(e){var t="#status-virtual-server-1-collapse",i=$(e).find(t).find(".panel-body");$('[data-dcontainer="1"]').find(t).find(".panel-body").replaceWith(i),progress.end()}})}}})}}),setTimeout(function(){window.onbeforeunload=function(){if(get_onbeforeunload_status())return progress.end(),!0},$(function(){v___available_navigation||progress.end()})},100),setTimeout(function(){theme_alert_charset()},2e3),favorites_detect(),page_render(0),setTimeout(function(){v___initial_load=0},1e3),setTimeout(function(){Core.var.available_modules=get_server_data("available-modules")},1e4)}); \ No newline at end of file +;($t_uri_virtualmin||$t_uri_cloudmin)&&(s=$("aside .ui_select option:selected").text()),$('body[class^="'+v___module_file_manager+'"]').length&&(o=URI.parseQuery(URI(v___location).query()).path,o=o?"["+o+"]":"[/]"),favorites_add(t,(s.length?s+" - ":"")+(a.length?a+"/":"")+(n.length?n+(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){var t="MacIntel"===window.navigator.platform?1:0;if(!t&&e.ctrlKey||t&&e.metaKey){var i=navigation_trigger($(e.target).attr("href"),1),a=$(e.target).find("a").attr("href")||$(e.target).parents("a").attr("href"),n=navigation_trigger(a,1),s=$(e.target).find("a").length?$(e.target).find("a"):$(e.target).parents("a"),o=Math.floor(1e4*Math.random());(i&&!Test.strContains(i,"javascript")||n&&!Test.strContains(n,"javascript"))&&(i?($(e.target).attr("href",navigation_trigger(i+(Test.strContains(i,"?")?"&":"?")+"randomized="+o,2)),setTimeout(function(){$(e.target).attr("href",navigation_trigger(i,2))})):n&&(s.attr("href",navigation_trigger(n+(Test.strContains(n,"?")?"&":"?")+"randomized="+o,2)),setTimeout(function(){s.attr("href",navigation_trigger(n,2))})))}$(e.target).is('.wbm-sm, .fa-stack, input[name="product-switcher"], label[for*="open_"], span, .sidebar-search, .select2-search, .select2-search__field, .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","a#atclearcache",function(e){set_onbeforeunload_status(0,0),localStorage.clear(),$(".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]),setTimeout(function(){theme_reload()},500)}),$("body").on("click",function(e){$(".tooltip").tooltip("hide"),$(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(".fa-trash-o")||$(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=$(this),i="1"==t.data("stable")?1:0,a="1"==t.data("force")?1:0;theme.update(i,a)}),$("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)})):("0px"==___________content_initial_?$("#content").removeAttr("style"):$("#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;var e=($(this),$("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=$(".versionSeparator:last").text(),________multi_in_branch=$(".versionSeparator").length,_____version__x=________version_first_text+"..."+v___theme_version;var t=$(".versionSeparator"),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"),n=$(this).find(".modal-body h4:first");if(!$(this).find(".modal-body h4:first .diffctl").length){var s=new RegExp(RegExp.quote(________version_curr_text),"g");________multi_in_branch&&(a.replaceText(s,""+_____version__x+""),a.replaceText(/Version/,"Versions"));var o=$(this).find('.modal-body h4:contains("beta")').length;if(a.length&&o){var _=$(this).find('.modal-body a[href*="authentic-theme/releases"]:first').text().match(/-?(?:\d+(?:\.\d*)?|\.\d+)/);latest_release=parseFloat(_?_[0]:v___theme_version);var r=n.text(),l=r.split("..."),d=0,c=$('a.versionSeparator[href*="releases"]:not(:empty)').first().text();l[1]&&(d=l[0].replace("Versions ",""),n.text(n.text().replace(d,c))),n.append(''),n.after(' '+i+"")}else n.append('').append(''+________version_curr_text+"")}var p=[];$.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)"),n=a.length;________multi_in_branch?(p.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),n+" ",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(){function e(e,t){return parseInt($(t).text().replace("#",""))
    • Fixed bugs
    '),$(".modal-body span[data-bugs-container]").append(p),$(".modal-body span[data-bugs-container] a").sort(e).appendTo(".modal-body span[data-bugs-container]");var t=$("span[data-fixed-bugs]"),i=($("span[data-bugs-container]"),$(".modal-body span[data-bugs-container]").find("a:not(.bctl)")),a=i.length;t.html([t.text().slice(0,6),a+" ",t.text().slice(6)].join("")),t.append(''),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 n=$("div[data-bugs]"),s=n.find("a:not(.bctl)").length;!s&&n.prev(".hr-dashed").remove(),!s&&n.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($(".versionSeparator: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",".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(),get_onbeforeunload_status()?get_onbeforeunload_message(this,"$($eventData).parent('form').submit()","ev"):$(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"),a.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()});var n=e.attr("name")?e.attr("name"):e.attr("id"),s=$.trim(e.val());$('').attr({type:"hidden",name:n,value:s}).appendTo(a),e.trigger("click")}),$("body").on("click",'.ui_form_end_submit:not(.disabled), .page_footer_submit:not(.disabled):not([href*="javascript:history"])',function(){Core.curModule("csf")?spinnerfy_buttons($(this),[2,-29,"small",!1]):spinnerfy_buttons($(this),!1,!1,!1)}),$("body").on("dblclick",'.mppopup a[onclick*="fileclick("], .mppopup a[onclick*="parentdir("]',function(e){e.preventDefault()});var c=0,p=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(),c++,$data_mppopup_value.val($v__mpp__g_ol),1===c)p=setTimeout(function(){if(c=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},450);else if(clearTimeout(p),c=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),Core.curModule("custom")&&refInput.trigger("input")}),$("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 n=$(".mppopup .mppopup_multi_done:visible");n.length&&setTimeout(function(){n.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 s=$(".mppopup table tbody tr:visible:not(.noresults)"),o=$(".mppopup table tbody tr.noresults");s.length?o.addClass("hidden"):o.removeClass("hidden")}}),$("body").on("click","button[data-mmclick]:not(.disabled), input[data-mmclick]:not(.disabled)",function(e){function t(e,t,i,a,s){var o;o=s?' ":' ";var _=' ";$("body").append(_),refInput.addClass("refInputData"),$("body .mppopup").modal("show")}function i(e){e[1].startsWith("/")?$v__mpp__g_op=e[1]:$v__mpp__g_op="/"+e[1]}e.preventDefault(),e.stopPropagation(),refInput=chooser_get_target($(this),1);var a=$(this),n=refInput.val(),s=encodeURIComponent(n),o=$(this).attr("data-mmclick"),_=o.match("window.open\\(['\"]*(.*?)(\\s*['\"]*,.*?)"),r=_[1].match(/(\w+\.[a-z]{3,4})/gi)[0],l=r.replace(".cgi","");if(a.addClass("disabled").attr("disabled","disabled"),_[1]){var d=_[1].replace("encodeURIComponent(ifield.value)","refInputCurrValSafe");d=d.replace('"+"',"").replace('"+',"").replace("refInputCurrValSafe",s),$.ajax({type:"POST",url:d,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);var a=e,n=e.match(')<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/<\/body>|<\/html>/gi,""),a=$(i).filter(".table").html(),n=$(i).filter(".table").prev("b").html(),s=chooser_breadcrumbs(n);0===$(a).find("td").length&&(a=a.replace("thead","tbody"),a=a.replace("",''+theme_language("theme_xhred_datatable_semptydirectory")+"")),i=s+''+a+"
    ",t(i,"type1",0,refInput,0)}});else if($.isArray(n))i(n),$.ajax({type:"POST",url:$v__mpp__g_op,data:!1,dataType:"text",success:function(e){if(Test.strContains(e,v___page_signin_form))return void(v___available_session=0);var i=e.replace(/<(!doctype|script|link|meta)\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/(script|link|meta)>/gi,"").replace(/<\/body>|<\/html>/gi,"");i=''+$(i).filter("table").html()+"
    ",t(i,"type2",0,refInput,1)}});else{if($.isArray(n)&&n[1].indexOf("&multi=1")===-1)return;var s=a,o=$(s).filter("table").html();t(''+o+"
    ","",1,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/?"+$__theme_navigation+'"], aside a[href="'+v___location_prefix+"/server-manager/shell.cgi?"+$__theme_navigation+'"], aside a[href*="shell=1"]:not(a[href*="login.cgi"])',function(e){e.preventDefault(),e.stopPropagation(),$(".user-link.ported-console:visible").trigger("click")}),$("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_theme_temp_data("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()}}),$("body").on("click",'form[action*="save_user.cgi"] button[name="but_switch"], a[href*="virtual-server/switch_user.cgi"]',function(e){v___theme_reload=1}),$(window).on("resize",function(){page_resized(),theme_shell_adapt()}),$("body").on("click",'[href*="javascript:history"]',function(e){v___theme_content_history&&(e.preventDefault(),e.stopPropagation(),v___theme_content_history=0,get_pjax_content(v___location_directory))}),$("body").on("click",".ui_multi_select_row select[multiple] option",function(e){var t=$(this).parent("select"),i=t.parent("td"),a=i.parent("tr"),n=i.index();e.ctrlKey||e.metaKey||e.shiftKey||e.altKey||0!==n&&2!==n||a.find("td:eq(1)").find('[onclick*="multi_select_move"][onclick*="'+(n?0:1)+'"]').trigger("click")}),$("body").on("click",'.container-fluid a[href], .container-fluid button, .container-fluid input[type="button"], .right-side-tabs a[href], .right-side-tabs button, .right-side-tabs input[type="button"], .right-side-tabs .info-container .graph-container-fw, .right-side-tabs-dismiss i, .favorites-menu li a',function(){v___blocked_navigation=0}),document.addEventListener("visibilitychange",function(){"hidden"===document.visibilityState?v___theme_state_visible=0:v___theme_state_visible=1,theme.visibility(v___theme_state_visible)}),window.addEventListener("focus",function(){v___theme_state_visible=1,theme.visibility(v___theme_state_visible),theme_window_focused()}),window.addEventListener("blur",function(){v___theme_state_visible=0,theme.visibility(v___theme_state_visible)}),window.addEventListener("popstate",function(){$('[data-trigger-injected="1"]').remove()}),$("body").on("click",".help_popup",function(e){e.stopPropagation(),e.preventDefault();var t=$(this),i=$(this).attr("href"),a=$(this).parent();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))return void(v___available_session=0);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='',o=t.attr("href").indexOf("showpass.cgi")>-1,_=t.attr("href").indexOf("/locale")>-1;o&&(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"))})}})}),$("body").on("click",'#extended_sysinfo-1 .panel-collapse[aria-labelledby="status-virtual-server-1"] a:not(.ui_link)',function(e){e.preventDefault();var t=$(this),i=t.attr("href");if(!t.hasClass("disabled")){t.addClass("disabled opacity-0_4");var a=t.find(".fa-refresh");a&&a.addClass("fa-spin"),progress.start(),$.ajax({type:"GET",url:i,data:!1,statusCode:{200:function(){$.ajax({type:"GET",url:v___location_prefix+"/sysinfo.cgi",success:function(e){var t="#status-virtual-server-1-collapse",i=$(e).find(t).find(".panel-body");$('[data-dcontainer="1"]').find(t).find(".panel-body").replaceWith(i),progress.end()}})}}})}}),$("body").on("click","[data-href-background]",function(e){e.preventDefault();var t=$(this).attr("data-href-background");progress.start(),$.post(t,function(e){information_update(),v___location_path&&v___location_path.indexOf("/sysinfo.cgi")>-1&&page_refresh()})}),setTimeout(function(){window.onbeforeunload=function(){if(get_onbeforeunload_status())return progress.end(),!0},$(function(){v___available_navigation||progress.end()})},100),setTimeout(function(){theme_alert_charset()},2e3),favorites_detect(),page_render(0),setTimeout(function(){v___initial_load=0},1e3),setTimeout(function(){Core.var.available_modules=get_server_data("available-modules")},1e4)}); \ No newline at end of file