@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Lato:300,300italic");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css");
body {
  overflow-x: hidden;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Lato", sans-serif;
  color: #c1c6cb;
  background-color: #15202e;
}

body {
  padding: 0px 20px;
}

body::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #110d0d;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

.dashboard {
  display: block;
  max-width: 1024px;
  margin: 0 auto;
}
.dashboard-header {
  display: flex;
  align-items: center;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  flex: 1;
  font-size: 2.2rem;
}

.server {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.1);
}
.server-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin: 0 2rem;
}
.server-details {
  flex: 1;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.server-details li {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #7e8794;
}
.server-details li:last-child .data {
  font-weight: normal;
  color: rgba(230, 245, 255, 0.32);
}
.server-details .data {
  display: block;
  margin: -1.7rem 0 0 0;
  padding: 0 1rem 0 0;
  font-weight: 600;
  text-align: right;
  color: #c1c6cb;
}
.server-details .signal {
  color: yellow;
}
.server-details .signal::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: currentColor;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-top: -0.2rem;
  vertical-align: middle;
}
.server-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr));
  grid-gap: 2rem;
}
.server.has-failed {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-color: orange;
  animation: alertblink 3.002s ease-in-out infinite;
}
.server.has-failed .server-icon,
.server.has-failed .signal {
  color: orange;
}
.server.has-failed:hover {
  background-color: rgba(255, 165, 0, 0.2);
  animation: none;
}
.server.has-not-failed {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-color: yellow;
  animation: alertblink 2s ease-in-out infinite;
}
.server.has-not-failed .server-icon,
.server.has-not-failed .signal {
  color: yellow;
}
.server.has-not-failed:hover {
  background-color: rgba(255, 255, 0, 0.2);
  animation: none;
}
.server.is-failed {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-color: red;
  animation: alertblink 2s ease-in-out infinite;
}
.server.is-failed .server-icon,
.server.is-failed .signal {
  color: red;
}
.server.is-failed:hover {
  background-color: rgba(255, 255, 0, 0.2);
  animation: none;
}
.server.isgood {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-color: green;
  animation: alertblink 2s ease-in-out infinite;
}
.server.isgood .server-icon,
.server.isgood .signal {
  color: green;
}
.server.isgood:hover {
  background-color: rgba(255, 255, 0, 0.2);
  animation: none;
}

@keyframes alertblink {
  0% {
    background: rgba(128, 128, 128, 0);
  }
  50% {
    background: rgba(128, 128, 128, 0.2);
  }
  100% {
    background: rgba(128, 128, 128, 0);
  }
}
.favicon {
  border-radius: 50%;
  margin: 5px;
  height: 34px;
  width: 34px;
}

.favicon2 {
  border-radius: 50%;
  margin: 0px;
  height: 34px;
  width: 34px;
}

.center-element {
  text-align: center;
  padding-top: 0vh;
}

.custom-select {
  display: inline-block;
  border-radius: 4px;
  background: rgba(128, 128, 128, 0.03);
  border: 1px solid green;
  color: green;
  font-size: 12px;
  position: relative;
  padding: 1px;
}

.custom-select:after {
  border-left: 1px solid green;
  content: "▼";
  display: block;
  width: 4.5em;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 5em;
}

.custom-select select {
  border: 0;
  color: #fff;
  background: transparent;
  padding: 1em 5em 1em 1em;
  letter-spacing: 1px;
  font-family: "Roboto", sans-serif;
  font-size: 1.4em;
  line-height: 1.2em;
  cursor: pointer;
  transition: 0.2s all;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

.custom select select::-ms-expand {
  display: none;
}

.custom-select select:hover,
.custom-select select:focus {
  outline: 0;
  background: gray;
  background: rgba(0, 0, 0, 0.5);
}

option {
  color: #fff;
  display: block;
  background: gray;
  line-height: 3.9em;
}

.barbg {
  width: 100%;
  height: 5px;
  background: red;
  border-radius: 100px;
  margin: 2px 0;
  overflow: hidden;
}

.bar_red {
  background: green;
  border-right: 1px solid #C1C6CB;
}

a {
  color: inherit;
  /* blue colors for links too */
  text-decoration: inherit;
  /* no underline */
}

.modal-window {
  background-color: rgba(255, 255, 255, 0.25);
  top: 0%;
  right: 0;
  bottom: 0%;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.modal-window:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-window > div {
  max-height: 55%;
  overflow-y: scroll;
  position: fixed;
  width: 400px;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  background: white;
}
.modal-window header {
  font-weight: bold;
}
.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}

.testDomain {
  font-size: 150%;
  color: green;
  margin: 0 0 15px;
}

.modal-close {
  color: #15202e;
  line-height: 50px;
  font-size: 80%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
}
.modal-close:hover {
  color: black;
}

.test {
  color: #15202e;
  word-wrap: break-word;
}

.container {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 10vh;
}

.modal-window > div {
  border-radius: 1rem;
}

.modal-window div:not(:last-of-type) {
  margin-bottom: 15px;
  margin-top: 15px;
}

small {
  color: #15202e;
}

.btn {
  background-color: white;
  color: blue;
  padding: 0.5em 0.5em;
  border-radius: 0.5rem;
  text-decoration: none;
}
.btn i {
  padding-right: 0.3em;
}

.ledgerSub {
  word-wrap: break-word;
}