@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0; }

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none; }

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth; }

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5; }

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto; }

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block; }

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit; }

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }
html, body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  height: 100%;
  background-color: #cecece; }

body.user-logged-in {
  padding-top: 0px !important; }
  body.user-logged-in #toolbar-administration {
    display: none; }

a {
  text-decoration: none;
  color: #FE552F; }
  a:hover {
    text-decoration: underline; }

a.btn {
  padding: 10px 15px;
  border: 2px solid #FE552F;
  background-color: #FE552F;
  color: #fff;
  text-align: center;
  transition: 0.3s ease all; }
  a.btn:hover {
    color: #FE552F;
    background-color: transparent; }

h1 {
  font-size: 26px;
  color: #2f2e2e; }

h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #FE552F; }

h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #000; }

section#main_content {
  padding-left: 0px;
  padding-top: 106px;
  padding-bottom: 20px;
  min-height: 100%;
  transition: 0.3s ease padding-left; }
  section#main_content.open {
    padding-left: 256px; }
  section#main_content div.container {
    margin: 20px;
    padding: 20px;
    background: #fff; }
    section#main_content div.container:last-child {
      margin-bottom: 0px; }
  @media (max-width: 761px) {
    section#main_content.open {
      padding-left: 0px; } }

table {
  width: 100%; }
  table thead tr {
    background-color: #2f2e2e;
    color: #fff; }
    table thead tr th {
      text-align: left;
      padding: 5px 10px;
      font-weight: normal;
      font-size: 14px; }
  table tbody tr td {
    text-align: left;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 14px; }
    table tbody tr td.high {
      color: #dc4f53; }
  table tbody tr:nth-child(even) {
    background-color: #f3f4f9; }
  table tbody tr.notice {
    background-color: #fed66b; }
    table tbody tr.notice td a {
      color: #000; }
  table tbody tr.offline {
    background-color: #dc4f53; }
    table tbody tr.offline td {
      color: #fff; }
      table tbody tr.offline td a {
        color: #fff; }
      table tbody tr.offline td.high {
        color: #fff; }

/* Infinite Rotation */
@keyframes rotating {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
.rotating {
  animation: rotating 2s linear infinite; }

nav#main {
  position: fixed;
  left: -256px;
  top: 0;
  bottom: 0;
  z-index: 9999;
  width: 256px;
  background-color: #2f2e2e;
  box-shadow: 9px 0 7px rgba(0, 0, 0, 0.1);
  color: #b1b7c1;
  transition: 0.3s ease left; }
  nav#main.open {
    left: 0px; }
  nav#main div.branding {
    display: flex;
    flex: 0 0 65px;
    height: 65px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #FE552F;
    background-color: #FE552F; }
    nav#main div.branding img {
      width: 50%;
      vertical-align: middle; }
  nav#main div.nav ul li {
    position: relative; }
    nav#main div.nav ul li.nav-title {
      text-transform: uppercase;
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      padding: 10px 20px;
      margin-top: 15px; }
    nav#main div.nav ul li a {
      display: block;
      color: #b1b7c1;
      padding: 10px 20px;
      font-size: 14px; }
      nav#main div.nav ul li a:hover {
        color: #fff;
        background-color: #373737;
        text-decoration: none; }
      nav#main div.nav ul li a i {
        width: 15px;
        margin-right: 10px; }
    nav#main div.nav ul li.open {
      background-color: #1c1c1c; }
    nav#main div.nav ul li a i.chevron {
      position: absolute;
      top: 15px;
      right: 20px;
      margin-right: 0px;
      width: auto;
      transform: rotate(0deg);
      transition: 0.1s ease all;
      transform-origin: center; }
    nav#main div.nav ul li.open a i.chevron {
      transform: rotate(180deg); }
    nav#main div.nav ul li.active a {
      color: #FE552F; }
    nav#main div.nav ul li ul.sub-nav {
      display: none; }
    nav#main div.nav ul li ul.sub-nav li a {
      padding-left: 46px; }

header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  transition: 0.3s ease left;
  z-index: 99; }
  header.open {
    left: 256px; }
  @media (max-width: 761px) {
    header.open {
      left: 0px; } }
  header div.breadcrumbs {
    height: 41px;
    padding-left: 20px;
    border-bottom: 1px solid #d8dbe0;
    background-color: #fff; }
    header div.breadcrumbs ul li {
      float: left;
      line-height: 41px;
      font-size: 14px; }
      header div.breadcrumbs ul li::after {
        content: "›";
        font-size: 16px;
        padding-left: 5px;
        padding-right: 5px; }
      header div.breadcrumbs ul li a {
        color: #FE552F; }
      header div.breadcrumbs ul li.active a {
        color: #8a93a2; }
      header div.breadcrumbs ul li.active a:hover {
        text-decoration: none;
        cursor: default; }
      header div.breadcrumbs ul li.active::after {
        display: none; }
  header div.utility {
    height: 65px;
    line-height: 65px;
    overflow: hidden;
    border-bottom: 1px solid #d8dbe0;
    background-color: #fff; }
    header div.utility div#nav-toggle {
      width: 26px;
      height: 26px;
      position: relative;
      margin-top: 20px;
      margin-left: 20px;
      transform: rotate(0deg);
      transition: .3s ease-in-out;
      cursor: pointer; }
      header div.utility div#nav-toggle span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #d3531a;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
        transform-origin: left center; }
      header div.utility div#nav-toggle span:nth-child(1) {
        top: 0px; }
      header div.utility div#nav-toggle span:nth-child(2) {
        top: 8px; }
      header div.utility div#nav-toggle span:nth-child(3) {
        top: 16px; }
      header div.utility div#nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 0;
        left: 3px; }
      header div.utility div#nav-toggle.open span:nth-child(2) {
        width: 0%;
        opacity: 0; }
      header div.utility div#nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 18px;
        left: 3px; }
      @media (max-width: 761px) {
        header div.utility div#nav-toggle.open {
          margin-left: 276px; } }
    header div.utility a.profile {
      display: block;
      position: absolute;
      right: 20px;
      top: 7.5px;
      width: 50px;
      height: 50px;
      border: 2px solid #b1b7c1;
      border-radius: 50%;
      background-image: url(../images/profile.jpg);
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover; }

.heading h1 a.btn {
  font-size: 14px;
  float: right;
  margin-left: 10px; }

#servers a#refresh,
#sites a#refresh {
  float: right;
  font-size: 14px;
  margin-bottom: 10px; }

.page-node-type-sites h3 a,
.page-node-type-servers h3 a {
  float: right;
  display: inline-block;
  font-size: 14px;
  margin-right: 40px;
  color: #FE552F; }
.page-node-type-sites h2 a,
.page-node-type-servers h2 a {
  float: right;
  display: inline-block;
  font-size: 14px;
  margin-right: 40px; }
.page-node-type-sites .notice,
.page-node-type-servers .notice {
  background-color: #fed66b !important;
  color: #000; }
.page-node-type-sites .error,
.page-node-type-servers .error {
  background-color: #dc4f53 !important;
  color: #fff; }
.page-node-type-sites .section ul,
.page-node-type-servers .section ul {
  margin-bottom: 20px; }
  .page-node-type-sites .section ul li,
  .page-node-type-servers .section ul li {
    margin-left: 15px;
    list-style-type: square; }
    .page-node-type-sites .section ul li.message,
    .page-node-type-servers .section ul li.message {
      padding: 10px;
      list-style-type: none;
      margin-left: 0; }
    .page-node-type-sites .section ul li p,
    .page-node-type-servers .section ul li p {
      margin-bottom: 15px; }
.page-node-type-sites .section div.row,
.page-node-type-servers .section div.row {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  width: 100%; }
  .page-node-type-sites .section div.row div.col,
  .page-node-type-servers .section div.row div.col {
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    padding-right: 20px; }
    .page-node-type-sites .section div.row div.col div.stat,
    .page-node-type-servers .section div.row div.col div.stat {
      display: flex;
      flex-direction: row;
      max-width: 100%;
      width: 100%;
      margin-bottom: 10px; }
      .page-node-type-sites .section div.row div.col div.stat + h3,
      .page-node-type-servers .section div.row div.col div.stat + h3 {
        margin-top: 30px; }
      .page-node-type-sites .section div.row div.col div.stat div.label,
      .page-node-type-servers .section div.row div.col div.stat div.label {
        flex: 0 0 40%;
        padding-right: 10px;
        font-weight: bold;
        font-size: 14px; }
      .page-node-type-sites .section div.row div.col div.stat div.value,
      .page-node-type-servers .section div.row div.col div.stat div.value {
        flex: 0 0 60%;
        font-size: 14px; }
        .page-node-type-sites .section div.row div.col div.stat div.value .fa-copy,
        .page-node-type-sites .section div.row div.col div.stat div.value .fa-eye,
        .page-node-type-sites .section div.row div.col div.stat div.value .fa-eye-slash,
        .page-node-type-servers .section div.row div.col div.stat div.value .fa-copy,
        .page-node-type-servers .section div.row div.col div.stat div.value .fa-eye,
        .page-node-type-servers .section div.row div.col div.stat div.value .fa-eye-slash {
          cursor: pointer;
          color: #FE552F;
          padding-left: 10px; }
      .page-node-type-sites .section div.row div.col div.stat.quicklinks div.label,
      .page-node-type-servers .section div.row div.col div.stat.quicklinks div.label {
        width: 100%;
        display: block; }

#add_site section {
  margin-bottom: 20px; }
  #add_site section h2 {
    margin-bottom: 0px; }
  #add_site section .smallText {
    font-size: 12px;
    padding-top: 10px; }
    #add_site section .smallText label {
      color: #575757;
      font-style: italic; }
  #add_site section input#site_slug {
    border: none;
    background: transparent;
    font-style: italic;
    padding: 0;
    margin: 0; }
  #add_site section label {
    font-weight: bold;
    padding-bottom: 10px;
    padding-right: 10px; }
  #add_site section .form-container {
    margin-bottom: 20px;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    #add_site section .form-container div.column {
      padding: 20px;
      width: 33%; }
      #add_site section .form-container div.column:first-child {
        padding-left: 0px; }
      #add_site section .form-container div.column:last-child {
        padding-right: 0px; }
  #add_site section#intro p {
    margin-bottom: 10px; }

body.user-logged-out {
  background-color: #2f2e2e; }

section#login_form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  width: 390px;
  background-color: #fff;
  color: #2f2e2e;
  box-shadow: 5px 5px 18px -8px rgba(0, 0, 0, 0.48); }
  section#login_form div.branding {
    background-color: #FE552F;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center; }
    section#login_form div.branding img {
      width: 50%;
      margin: 0 auto; }
  section#login_form div.container {
    padding: 20px; }
  section#login_form h1 {
    text-align: center; }
  section#login_form div.form-item {
    margin-bottom: 10px; }
  section#login_form input[type=text], section#login_form input[type=password] {
    max-width: 100%;
    border: none;
    background-color: #eee;
    padding: 10px 20px;
    color: #2f2e2e; }
  section#login_form input[type=submit] {
    background-color: #FE552F;
    color: #fff;
    border: none;
    border-radius: 0px;
    width: 100%;
    padding: 10px 20px; }
  section#login_form div.description {
    display: none; }
  section#login_form div.functions {
    text-align: center;
    padding: 10px; }
    section#login_form div.functions a {
      color: #2f2e2e; }
      section#login_form div.functions a:hover {
        color: #FE552F; }

#ada_results div.result {
  display: flex;
  border-bottom: 1px solid #2f2e2e;
  padding-bottom: 15px;
  margin-bottom: 20px; }
  #ada_results div.result .violation {
    width: 75%;
    padding-right: 20px; }
  #ada_results div.result .info {
    width: 25%;
    font-size: 16px; }
    #ada_results div.result .info .label {
      font-weight: bold; }
  #ada_results div.result h3 {
    margin-bottom: 10px; }
  #ada_results div.result h4 {
    margin-top: 20px;
    margin-bottom: 10x; }
  #ada_results div.result .code_container {
    font-size: 14px;
    background: #f3f4f9;
    padding: 10px;
    margin-bottom: 10px; }
    #ada_results div.result .code_container code {
      font-size: 12px;
      font-style: italic; }
