html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: middle;
  line-height: 1;
}

html {
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  overflow: visible;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #2b2a33;
  background: #fff;
  font-family: "Consolas", monospace, sans-serif;
  font-family: sans-serif;
  font-size: 14px;
}

/* Globalized elements
-------------------------------------------------------------- */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul, dl, blockquote, pre, table, p,
h1, h2, h3, h4, h5, h6, hr {
  margin: 0 0 20px;
}

*, *:before, *:after {
  outline: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Elements with border-box model
-------------------------------------------------------------- */
input,
textarea,
select,
button,
img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

fieldset {
    padding: 20px 20px 10px;
    margin: 0 0 20px;
    border: 1px solid #ccc;
}
fieldset.flex-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
fieldset.flex-inline > * {
    margin: 0;
}
fieldset.flex-inline > .break {
    width: 100%;
    clear: both;
}
fieldset legend {
    margin: 0 10px;
    padding: 0 10px;
    font-weight: bold;
}
fieldset label {
    display: inline-block;
    padding: 0 0 5px;
}

/* General element styles
-------------------------------------------------------------- */
a {
  color: #b32e2e;
  font-size: inherit;
  font-family: inherit;
  text-decoration: none;
}
a:hover {
  color: #E23C3C;
}
a:active {
  color: #E23C3C;
}

a.dark-link {
    color: #222222;
}
a.dark-link:hover {
    color: #b32e2e;
}

h1, h2, h3, h4, h5, h6 {
  color: #2b2a33;
  font-family: sans-serif;
  font-weight: 200;
  text-decoration: none;
}

h1 {
  font-size: 2.875em;
}

h2 {
  font-size: 2.600em;
}

h3 {
  font-size: 2.375em;
}

h4 {
  font-size: 2.125em;
}

h5 {
  font-size: 1.875em;
}

h6 {
  font-size: 1.675em;
}

p > * {
    vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

ol, ul {
  margin-left: 10px;
  padding-left: 10px;
}
ol li, ul li {
  font-size: inherit;
  line-height: 1.5;
}
ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}

dl {
  overflow: hidden;
}
dl dt, dl dd {
  margin: 0 0 5px;
  padding: 0;
  font-size: inherit;
  line-height: 1.5;
}
dl dt {
  float: left;
  clear: left;
  padding: 0;
  width: 100px;
  text-align: left;
  font-weight: bold;
  color: inherit;
}
dl dt:after {
  content: none;
}
dl dd {
  margin-left: 120px;
}
dl dd:after {
  content: "";
  display: table;
  clear: both;
}

blockquote {
  quotes: none;
  position: relative;
  padding: 20px;
  background: #eee;
  color: #777;
}
blockquote p {
  margin: 0;
  padding: 0;
}
blockquote strong,
blockquote cite {
  display: block;
  margin: 5px 0 0 0;
  color: #333;
  line-height: 1.5;
  font-style: normal;
  font-weight: bold;
  white-space: nowrap;
}
blockquote:before, blockquote:after {
  content: '';
  content: none;
}
blockquote > *:last-child {
  margin-bottom: 0;
}

blockquote,
blockquote > p,
q {
  font-style: italic;
  color: #777;
}

q {
  padding: 0.3em 0.5em;
  background: #fff;
}

p,
address {
  font-size: inherit;
  line-height: 1.4;
  color: inherit;
}

p:empty {
  display: none;
}

p * {
    vertical-align: baseline;
}

p.note {
    font-size: 0.9em;
}

hr {
  display: block;
  border: none;
  height: 1px;
  border: none;
  background: #ddd;
}

strong, em {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

pre, code {
  font-family: 'Consolas', 'Courier New', Courier, monospace;
  font-size: inherit;
  font-weight: normal;
}

pre {
  overflow: auto;
  padding: 15px;
  background: #eee;
  color: #333;
  font-size: 12px;
  border-left: 5px solid #00aaff;
  line-height: 1.3;
  text-align: left;
  font-family: "Consolas", monospace, sans-serif;
}

code {
  padding: 5px 10px;
  background: #fff;
  font-family: "Consolas", monospace, sans-serif;
}

code.formatted {
    background: #f4f4f4;
    border: 1px solid #ddd;
    font-size: 12px;
    border-radius: 5px;
}

code.basic {
  padding: 0;
  background: none;
}

.command {
    margin: 0 0 20px;
    padding: 10px;
    border: 1px solid #e6e6e6;
}
.command > h6 {
    margin: 0 0 10px;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Consolas', 'Courier New', Courier, monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.command > pre {
    margin: 5px 0 0;
    padding: 0 0 0 7px;
    background: none;
    border-left: 2px solid #00aaff;
}

/* Table styles
-------------------------------------------------------------- */
table tr th,
table tr td {
    padding: 10px;
}
table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
}
table.table caption {
  padding: 12px 10px;
  margin: 0 0 -1px;
  background: #444;
  color: #ffffff;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.4;
}
table.table tr {
  margin: 0;
  padding: 0;
}
table.table tr th,
table.table tr td {
  padding: 10px;
  text-align: left;
  font-size: 1em;
  line-height: 1.4;
  border: 1px solid #ddd;
  vertical-align: middle;
}
table.table tr th.alignleft,
table.table tr td.alignleft {
  text-align: left;
}
table.table tr th.aligncenter,
table.table tr td.aligncenter {
  text-align: center;
}
table tr th.alignright,
table tr td.alignright {
  text-align: right;
}
table.table tr th {
  color: inherit;
  font-weight: bold;
}
table.table tr td {
  color: inherit;
}
table.table thead tr th,
table.table thead tr td {
  border-top: none;
  border-bottom: none;
}
table.table thead tr th {
  background: #444;
  border-color: #333;
  color: #ffffff;
}
table.table tbody tr:nth-child(odd) th {
  background: #fff;
}
table.table tbody tr:nth-child(odd) td {
  background: #f8f8f8;
}
table.table tbody tr:nth-child(even) th {
  background: #fff;
}
table.table tbody tr:nth-child(even) td {
  background: #f4f4f4;
}

table.table.reduce-padding caption,
table.table.reduce-padding tr th,
table.table.reduce-padding tr td {
    padding: 5px;
}

table.hover-row tr td {
    transition: opacity 0.1s;
}
table.hover-row:hover tr td {
    opacity: 0.375;
}
table.hover-row tr:hover td {
    opacity: 1;
    background-color: #fff !important;
}

/* Column/Grid Styles
-------------------------------------------------------------- */
.row {
  margin: 0 -1.5%;
  padding: 0;
  clear: both;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.row > [class*="col-"],
.row > [class*="grid-"] {
  float: left;
  clear: none;
  margin: 0 1.5% 3%;
  padding: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.row > [class*="col-"] > *:last-child,
.row > [class*="grid-"] > *:last-child {
  margin-bottom: 0;
}
.row.no-margin, .row.no-margin > [class*="col-"], .row.no-margin > [class*="grid-"] {
  margin-bottom: 0;
}

.col-full {
  width: 97%;
}

.col-12 {
  width: 47%;
}

.col-13 {
  width: 30.333%;
}

.col-23 {
  width: 63.666%;
}

.col-14 {
  width: 22%;
}

.col-34 {
  width: 72%;
}

.col-15 {
  width: 17%;
}

.col-25 {
  width: 37%;
}

.col-35 {
  width: 57%;
}

.col-45 {
  width: 77%;
}

.grid-12 {
  width: 97%;
}

.grid-11 {
  width: 88.666%;
}

.grid-10 {
  width: 80.333%;
}

.grid-9 {
  width: 72%;
}

.grid-8 {
  width: 63.666%;
}

.grid-7 {
  width: 55.333%;
}

.grid-6 {
  width: 47%;
}

.grid-5 {
  width: 38.666%;
}

.grid-4 {
  width: 30.333%;
}

.grid-3 {
  width: 22%;
}

.grid-2 {
  width: 13.666%;
}

.grid-1 {
  width: 5.333%;
}

@media (max-width: 640px) {
  .row {
    margin: 0;
  }
  .row > [class*='col-'],
  .row > [class*='grid-'] {
    float: none;
    width: auto;
    margin: 0 0 20px;
  }
}
/* Form/input/button styles
-------------------------------------------------------------- */
input,
textarea,
select,
button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: normal;
  line-height: 1.4;
  color: inherit;
  vertical-align: middle;
  border: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="datetime"],
input[type="number"],
input[type="range"],
input[type="tel"],
input[type="range"],
input[type="file"],
textarea, select {
    margin: 0 0 10px;
    padding: 0 10px;
    height: 32px;
    background: #eee;
    border: 1px solid #bbb;

    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

textarea {
  padding: 10px;
  height: auto;
  line-height: 1.2;
  resize: vertical;
}

textarea.code-edit {
    font-family: "Segoe UI Mono", "Courier New", monospace;
    font-size: 12px;
    background: #161616;
    border: 1px solid #111;
    color: #fff;
}
textarea.code-edit.hacker {
    background: #060606;
    color: #20C20E;
}

input[type="radio"],
input[type="checkbox"] {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1;
  vertical-align: baseline;
}

input[type="submit"],
button,
.btn,
.button {
  display: inline;
  display: inline-block;
  height: 32px;
  padding: 0 20px;
  margin: 0;
  color: #fff;
  background: #b32e2e;
  border: none;
  font-size: 1em;
  font-family: inherit;
  font-weight: normal;
  vertical-align: middle;
  text-transform: uppercase;
  -webkit-appearance: none;
  border-radius: 3px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
input[type="submit"]:hover,
button:hover,
.btn:hover,
.button:hover {
    color: #fff;
    background-color: #e32b2b;
    cursor: pointer;
}

.btn.btn-dark,
.button.btn-dark {
    background-color: #111;
}

.btn.btn-dark:hover,
.button.btn-dark:hover {
    background-color: #333;
}

.btn.btn-green,
.button.btn-green {
    background-color: #145927;
}

.btn.btn-green:hover,
.button.btn-green:hover {
    background-color: #1b6e32;
}

a.btn,
a.button {
  line-height: 32px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a.btn.btn-small,
a.button.btn-small,
button.btn.btn-small {
    height: 24px;
    padding: 0 12px;
    line-height: 24px;
}

a.btn.btn-outline,
button.btn.btn-outline {
    background-color: transparent;
    border: 1px solid #555;
    color: #555;
}

a.btn.btn-outline.btn-small,
button.btn.outline.btn-small {
    line-height: 22px;
}

a.btn.btn-outline:hover,
button.btn.outline:hover {
    background: #333;
    color: #fff;
}

html > body form.inline-elements {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 20px;
}

html > body form.inline-elements > * {
    margin: 0;
}

label {
    vertical-align: middle;
}

.label-sm {
    display: inline-block;
    margin: 0 5px 0 0;
    padding: 3px 5px;
    min-width: 75px;
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: #444;
    border-radius: 5px;
}

::-webkit-input-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

input:-moz-placeholder {
  color: #888;
}

.alert {
  margin: 0 0 20px;
  padding: 10px;
  background: #777;
  line-height: 1.3;
  color: #fff;
}
.alert.error {
  background: #f64b2f;
}
.alert.success {
  background: #7eb62e;
}
.alert.warning {
  background: #e1b311;
}
.alert.notice {
  background: #2fa9f6;
}

.info-box {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9125em;
    font-style: italic;
    color: #777;
}

.page-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8125em;
    font-weight: 300;
}

#hdr {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-end;
    height: 60px;
    padding: 0 20px 0 200px;
    background: #2b2a33;
    font-family: 'Open Sans', sans-serif;
}
#hdr.no-login {
    padding-left: 30px;
}
#hdr figure.logo {
    margin: 0;
    padding: 12px 0;
    color: #fff;
    font-size: 1.375em;
    line-height: 1;
    font-weight: 200;
    text-transform: uppercase;
    word-spacing: nowrap;
}
#hdr figure.logo > a > * {
    display: inline-block;
    vertical-align: bottom;
    color: #fff;
}
#hdr figure.logo img.logo {
    position: relative;
    top: 1px;
    margin: 0 4px 0 0;
    height: 32px;
}
#hdr figure.logo strong {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}
#hdr .info {
    padding: 12px 0;
}
#hdr .info > * {
    display: inline-block;
    vertical-align: bottom;
    line-height: 1;
    font-size: 14px;
    color: white;
}

#hdr table.load-averages {
    position: absolute;
    top: 10px;
    right: 20px;
    width: auto;
}

#hdr table.load-averages th,
#hdr table.load-averages td {
    margin: 0;
    padding: 4px 5px;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 11px;
    text-align: center;
}

#content {
    padding: 90px 30px 30px 230px;
}
#content.no-login {
    padding-left: 30px;
}

#nav {
    position: fixed;
    z-index: 10;
    width: 200px;
    top: 0;
    left: 0;
    bottom: 0;
    background: #2b2a33;
    margin: 0;
    padding: 80px 0 0 0;
}
#nav li {
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #3f3e49;
    list-style: none;
}
#nav li:first-child {
    border-top: 1px solid #444;
}
#nav li a {
    display: block;
    margin: 0;
    padding: 12px 20px;
    color: #fff;
    font-weight: 200;
    font-family: 'Open Sans', sans-serif;
}
#nav li.current a {
    font-weight: 300;
    background-color: #3f3e49;
}

nav.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    font-size: 1.125em;
}
nav.links a {
    display: block;
    width: 31.333%;
    margin: 0 1% 1% 0;
    padding: 2.5% 3%;
    text-align: center;
    color: #333;
    border: 1px solid #333;
    box-sizing: border-box;
}
nav.links a:hover {
    background: #333;
    color: #fff;
}

#finder-window {
    visibility: visible;
    overflow: auto;
    position: fixed;
    z-index: 9999999;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    margin: 0;
    padding: 30px;
    background: #eee;
    font-size: 0.8675em;
    opacity: 1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

#finder-window #close-finder-window {
    position: fixed;
    top: 10px;
    right: 30px;
    color: #333;
    font-size: 42px;
    font-family: serif;
}

#finder-window #close-finder-window:hover {
    color: #ff4400;
}

#overlay {
    visibility: visible;
    position: fixed;
    z-index: 9999990;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.9);
    opacity: 1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

#overlay.hidden,
#finder-window.hidden {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

#finder-window.hidden {
    right: -400px;
}

.finder-wrapper {
    position: relative;
    display: inline-block;
    padding: 0 32px 0 0;
    margin: 0;
}
.finder-wrapper > a {
    position: absolute;
    top: 50%;
    right: 1px;
    display: block;
    height: 30px;
    width: 30px;
    margin: -21px 0 0 0;
    padding: 0;
    text-align: center;
    background: #ddd;
    color: #444;
    line-height: 30px;
    border: 1px solid #bbb;
}
.finder-wrapper > a:hover {
    background: #333;
    border-color: #333;
    color: #eee;
}
html > body .link-icon {
    display: inline-block;
    margin-top: -2px;
    margin-left: 2px;
}

html > body header.inline-hdr,
html > body *.inline-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

html > body header.inline-hdr > *,
html > body *.inline-content > * {
    display: inline-block;
    margin-bottom: 0;
}

html > body .mb0 {
    margin-bottom: 0;
}
html > body .mb5 {
    margin-bottom: 5px;
}
html > body .mb10 {
    margin-bottom: 10px;
}

html > body .monospace,
html > body .monospace * {
    font-family: 'Consolas', 'Courier New', Courier, monospace;
}

html > body .small-text {
    font-size: 0.8675em;
}

html > body .full-width {
    width: 100%;
}

html > body .inline-options {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}
html > body .inline-options > * {
    display: inline-block;
    margin: 0;
    padding: 0;
}
html > body .inline-options input {
    margin-right: 5px;
}
html > body .inline-options label {
    margin-right: 20px;
}

#staging-site-tools {
    display: flex;
    gap: 10px;
}

.loading {
    display: inline-block;
    padding: 8px 5px 8px 32px;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;

    background-image: url(media/loading.gif);
    background-position: 0 50%;
    background-size: 24px 24px;
    background-repeat: no-repeat;
}