@charset "UTF-8";
/*
 * z-indices
 *
 * 0 - default UI
 * 1000 - partial overlay
 * 2000 - full screen overlay base
 * 2300 - full screen overlay background
 * 2600 - full screen overlay
 * 3000 - loading screen
 * 5000 - dialogs
 */

/* Override the jQuery UI z-index */

.ui-dialog {
    z-index: 5000 !important;
}

/* Prevent content jumping left/right while reloading
   main content with overflow */

html {
    margin-left: calc(100vw - 100%);
}

/* base content styles */

body, input, textarea, select {
    background-color: #fff;
    color: #666;
}

/* body tag style */

body {
    margin: 0px auto;
    padding: 0px;
    background-image: url(/resources/images/backgrounds/page-background.png);
    background-repeat: repeat-x;
}

/* input, textarea and select tag styles */

input, textarea, select {
    padding: 3px 10px 3px 10px;
    border: 2px solid #d3d3d3;
    border-radius: 3px;
    font-family: inherit;
}

input:disabled, select:disabled {
    color: #d3d3d3;
    background: #f1f1f1;
}

input.error, select.error {
    margin: 1px;
    border: 1px solid #cc0022;
    box-shadow: 0 0 5px #cc0022;
    outline-width: 0;
}

/* Hide browser radio */

input[type=radio] {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

input[type=radio]+label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 5px;
    padding-left: 30px;
    background: url(/resources/images/icons/radio-box-default.png) no-repeat;
}

input[type=radio]:checked+label {
    background: url(/resources/images/icons/radio-box-checked.png) no-repeat;
}

input[type=radio]:disabled+label {
    background: url(/resources/images/icons/radio-box-default-disabled.png) no-repeat;
}

input[type=radio]:checked:disabled+label {
    background: url(/resources/images/icons/radio-box-checked-disabled.png) no-repeat;
}

input[type=button] {
    transition: all 0.5s;
    font-size: 20px;
    padding: 10px 20px 8px 20px;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    cursor: pointer;
    background: #fbfbfbfb;
}

input[type=button]:disabled {
    color: #d8d8d8;
    pointer-events: none;
}

/* A button that does something when clicked */

input[type=button].action-button {
    color: #fff;
}

input[type=button].action-button:disabled {
    border-color: #dedede;
    background: #aaaaaa;
    color: #c2c2c2;
}

h1, h2 {
    font-weight: normal;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* page title style */

h1 {
    text-align: center;
}

/* all section titles except the first in a page need extra margin */

h2~h2 {
    margin-top: 60px;
}

/* unordered list style */

ul {
    list-style: none outside none;
}

/* Div based table defaults */

div.default-table, div.default-table-fixed,
div.default-table-center, div.default-table-dynamic {
    display: table;
}

div.default-table, div.default-table-fixed {
    width: 100%;
}

div.default-table-fixed {
    table-layout: fixed;
}

div.default-table-center {
    margin-left: auto;
    margin-right: auto;
}

div.default-row {
    display: table-row;
}

div.default-cell, div.default-cell-left, div.default-cell-right {
    display: table-cell;
    padding: 3px 10px;
}

div.default-cell-right {
    text-align: right;
}

div.default-cell-left {
    text-align: left;
}

div.default-column-title {
    font-size: 20px;
    color: #1f1f1f;
}

table {
    width: 100%;
    border-spacing: 0px;
    text-align: left;
}

th {
    border: solid #ffffff;
    border-width: 0px 1px 0px 1px;
    padding: 15px 20px;
    vertical-align: middle;
}

td {
    padding: 15px 20px;
    background-color: #ffffff;
}

td:only-of-type {
    text-align: center;
}

.change-link {
    padding-left: 15px;
    color: #00AADD;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 12px 12px;
    text-decoration: underline;
}

.change-link:hover {
    cursor: pointer;
}

.small-error-container {
    display: block;
    padding-top: 5px;
    padding-left: 35px;
    min-height: 29px;
    background: url(/resources/images/icons/error-icon.svg) no-repeat 0px 0px;
    background-size: 29px 29px;
    white-space: nowrap;
}

.small-error-container>span {
    font-size: 16px;
    vertical-align: middle;
    color: #cc0022;
    white-space: pre;
}

.small-error-container>span.wrap {
    white-space: pre-wrap;
}

.button-area {
    text-align: right;
}

.no-wrap {
    white-space: nowrap;
}

/* Use with action button to produce and even larger button */

input[type=button].large-button {
    margin-top: 40px;
    padding: 15px 30px 10px 30px;
    font-size: 24px;
}

/* Password strength bar */

.password-strength-container {
    position: relative;
    width: 220px;
    margin-top: 10px;
    /* Needed to override parent styling which may mess with the indicator */
    text-align: left;
}

.password-strength-bar {
    width: 220px;
    /* Align the image in the middle of the div */
    margin-left: auto;
    margin-right: auto;
}

/* Default arrow image style */

.password-strength-indicator-not-sufficient>img, .password-strength-indicator-good>img, .password-strength-indicator-strong>img, .password-strength-indicator-very-strong>img {
    position: absolute;
    width: 6px;
    height: 5px;
    margin-top: 0px;
}

/* Arrow image and text positions */

.password-strength-indicator-not-sufficient>img, .password-strength-indicator-not-sufficient>p {
    left: 0px;
}

.password-strength-indicator-good>img, .password-strength-indicator-good>p {
    left: 70px;
    /* 1/3 less half the arrow */
}

.password-strength-indicator-strong>img, .password-strength-indicator-strong>p {
    left: 143px;
    /* 3/3 less half the arrow */
}

.password-strength-indicator-very-strong>img, .password-strength-indicator-very-strong>p {
    left: 213px;
    /* width less the arrow */
}

/* Default text style. We use an inline block to allow us to set the width. A
   width has been chosen to fix all the various translations. Alignment is used
   to position the text within the box. */

.password-strength-indicator-not-sufficient>p, .password-strength-indicator-good>p, .password-strength-indicator-strong>p, .password-strength-indicator-very-strong>p {
    display: inline-block;
    position: relative;
    width: 100px;
    /* Enough for different languages (hopefully) */
    margin: 5px -47px 0px;
    text-align: center;
}

/* Text colo(u)rs. */

.password-strength-indicator-not-sufficient>p {
    color: #cc0022;
}

.password-strength-indicator-good>p {
    color: #ff6600;
}

.password-strength-indicator-strong>p {
    color: #11aa44;
}

.password-strength-indicator-very-strong>p {
    color: #11aa44;
}

/* An info icon and tooltip on hover */

.info-icon {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    height: 18px;
    width: 18px;
    vertical-align: middle;
    background: url(/resources/images/icons/info-icon.svg) no-repeat;
}

.info-icon .info-tooltip {
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    min-height: 18px;
    width: 220px;
    border: 1px solid #dbdbdb;
    padding: 10px;
    font-size: 15px;
    text-align: left;
    background: #ededed;
}

.info-tooltip {
    white-space: pre-wrap;
}

.info-icon:hover .info-tooltip {
    visibility: visible;
    z-index: 1;
}

.info-tooltip.top {
    transform: translateY(-2%) translateY(-13px)
}

/* Tooltip arrow */

.info-tooltip::after, .info-tooltip::before {
    position: absolute;
    height: 0;
    width: 0;
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
}

.info-tooltip.top::after, .info-tooltip.top::before {
    top: calc(2% + 13px);
}

/* Tooltip arrow background */

.info-tooltip::after {
    margin-top: -12px;
    border-width: 12px;
    border-right-color: #ededed;
}

/* Tooltip arrow border */

.info-tooltip::before {
    margin-top: -13px;
    border-width: 13px;
    border-right-color: #dbdbdb;
}

/* Loading overlay definition */

.fullscreen-loading-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url(/resources/images/animations/loading.gif) center 20% no-repeat #fff;
    z-index: 3000;
    opacity: 1.0;
}

/* TABS */

/* ---- */

/* Override the defaults */

.ui-tabs .ui-tabs-panel {
    padding: 20px;
}

.ui-widget {
    font-family: inherit;
}

/* Tab text size and background when selected */

.network-status-tabs.ui-tabs .ui-tabs-nav .ui-tabs-active.ui-state-active a {
    outline-width: 0;
    background: #ffffff;
}

.network-status-tabs .heading {
    font-size: 22px;
    color: #000;
}

.network-status-tabs.ui-tabs {
    padding: 0;
    border: 0;
}

.network-status-tabs.ui-tabs .ui-tabs-nav li {
    margin-top: 0;
    border-radius: 0;
}

.network-status-tabs.ui-tabs .ui-widget-header {
    background-color: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    padding: 0;
}

.network-status-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    background: #fff;
}

.network-status-tabs table.vertical tbody th {
    text-align: start;
    border: 1px solid #fff;
    min-width: 180px;
}

.network-status-tabs table.vertical td {
    text-align: start;
}

.network-status-tabs table.vertical {
    border: 1px solid #f2f2f2;
    margin-bottom: 55px;
}

/* END TABS */

/* Admin - Info styles */

.admin-info-table .default-row .default-cell:first-child {
    width: 220px;
}

.admin-info-table .default-row .default-cell:nth-child(2) {
    width: 10px;
}

.disabled-link {
    pointer-events: none;
    opacity: 0.6;
}

/* Admin - Static IP styles */

.admin-static-table .default-row .default-cell:first-child {
    width: 220px;
}

.admin-static-table .default-row .default-cell:last-child {
    width: 10px;
}

/*First Install Login*/

#first-install-login-error, #first-install-updated-login-error{
    font-size: 16px;
    color: #cc0022;
}

.first-install-password-error-content {
    height: 29px;
}

img.first-install-password-error-content {
    width: 29px;
    vertical-align: middle;
}