@charset "UTF-8";
@import 'https://fonts.googleapis.com/css?family=Roboto:400,900';
/* small title text, like "How it Works" */
h3.panel-section-title {
  font-size: 1.5em;
  color: #777;
  padding: 0;
  margin: 0 0 0.5em 0;
}

/* Home, Servers, Account, ... */
div.header {
  margin: 0.5em 0 1em 0;
  padding: 0.5em 0 0.5em 0;
  border-bottom: 1px solid #777;
}
div.header img {
  max-height: 40px;
}
div.header h1 {
  font-family: "Roboto", sans-serif;
  margin: 0;
  line-height: 40px;
  font-size: 2em;
  text-decoration: none;
  color: #777;
  font-weight: bold;
}
div.header h1 a {
  color: inherit;
  text-decoration: none;
}
div.header .nav-pills li button.btn-link {
  border-radius: 4px;
}
div.header .nav li button.btn-link {
  position: relative;
  display: block;
  padding: 10px 15px;
}
div.header .nav li button.btn-link:hover {
  text-decoration: none;
  background-color: #eee;
}

/* admin header block, just below header on every page for admins */
div.admin-header {
  border-radius: 8px;
  padding: 0.2em 1em;
  background-color: #f5f5f5;
  margin: 1em 0;
}

/* stretch page so footer is definitely at bottom of screen */
div.footer-wrapper {
  position: relative;
  padding-bottom: 8em;
  min-height: 100vh;
}
div.footer-wrapper div.footer {
  font-size: 85%;
  background-color: #eee;
  text-align: center;
  padding: 0.25em 0;
  width: 100%;
  position: absolute;
  bottom: 0;
}

/* single-list list with bullets separating items */
ul.midbullet {
  display: inline-block;
  margin: 0;
  padding: 0;
}
ul.midbullet li {
  list-style: none;
  display: inline;
}
ul.midbullet li:after {
  content: " •";
}
ul.midbullet li:last-child:after {
  content: none;
}

/* used with data-redirect to show spinner while switching pages */
#wait-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2147483646;
}
#wait-overlay .inner {
  text-align: center;
  color: white;
  z-index: 2147483647;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#wait-overlay .inner i.fa {
  font-size: 15vh;
  display: block;
}

.alert {
  margin-top: 20px;
}

/* foreachelse for tables */
table td.else {
  text-align: center;
  font-style: italic;
}

/* javascript link */
[data-link] {
  cursor: pointer;
}

/* pagination */
ul.pager a {
  margin-left: 0.25em;
  margin-right: 0.25em;
}
ul.pager li.info {
  line-height: 2.5em;
}