.uplot, .uplot *, .uplot :before, .uplot :after {
  box-sizing: border-box;
}

.uplot {
  width: max-content;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  line-height: 1.5;
}

.uplot .title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.uplot .wrap {
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}

.uplot .over, .uplot .under {
  position: absolute;
  overflow: hidden;
}

.uplot canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.uplot .legend {
  text-align: center;
  margin: auto;
  font-size: 14px;
}

.uplot .legend.inline {
  display: block;
}

.uplot .legend.inline * {
  display: inline-block;
}

.uplot .legend.inline tr {
  margin-right: 16px;
}

.uplot .legend th {
  font-weight: 600;
}

.uplot .legend th > * {
  vertical-align: middle;
  display: inline-block;
}

.uplot .legend .ident {
  border: 2px solid #0000;
  width: 1em;
  height: 1em;
  margin-right: 4px;
}

.uplot .legend.inline th:after {
  content: ":";
  vertical-align: middle;
}

.uplot .legend .series > * {
  padding: 4px;
}

.uplot .legend .series th {
  cursor: pointer;
}

.uplot .legend .off > * {
  opacity: .3;
}

.uplot .select {
  pointer-events: none;
  background: #00000012;
  position: absolute;
}

.uplot .select.off {
  display: none;
}

.uplot .cursor-x, .uplot .cursor-y {
  pointer-events: none;
  will-change: transform;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
}

.uplot .cursor-x {
  border-right: 1px dashed #607d8b;
  height: 100%;
}

.uplot .cursor-y {
  border-bottom: 1px dashed #607d8b;
  width: 100%;
}

.uplot .cursor-pt {
  filter: brightness(85%);
  pointer-events: none;
  will-change: transform;
  z-index: 100;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

@font-face {
  font-family: icomoon;
  src: url("icomoon.f7eef27e.ttf") format("truetype"), url("icomoon.826fedc0.woff") format("woff"), url("icomoon.7a3c51fd.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: icomoon !important;
}

.icon-star:before {
  content: "";
}

.icon-star-o:before {
  content: "";
}

.icon-lock:before {
  content: "";
}

.icon-eye:before {
  content: "";
}

.icon-eye-slash:before {
  content: "";
}

.icon-cogs:before, .icon-gears:before {
  content: "";
}

.icon-globe:before {
  content: "";
}

.icon-code:before {
  content: "";
}

.icon-sort-amount-desc:before {
  content: "";
}

.icon-street-view:before {
  content: "";
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

:root {
  --color-dark-gray: #a3a3a3;
  --color-gold: gold;
  --color-dark-purple: #6c5ce7;
  --color-light-purple: #a29bfe;
  --color-dark-blue: #0984e3;
  --color-light-blue: #74b9ff;
  --theme-color-dark: #141824;
  --theme-color-light: #ebebeb;
  --surface-1: #ffffff0f;
  --surface-2: #ffffff1a;
  --border: #ffffff1f;
  --glow-blue: 0 0 22px #74b9ff59, 0 0 60px #0984e326;
  --glow-purple: 0 0 22px #a29bfe59, 0 0 60px #6c5ce726;
  --glow-gold: 0 0 14px #ffd70073;
  --color-purple: var(--color-light-purple);
  --color-blue: var(--color-light-blue);
  --color-blue-inverted: var(--color-dark-blue);
  --background-color: var(--theme-color-light);
  --text-decoration-color: var(--theme-color-dark);
  --text-color: #000;
  --text-color-inverted: #fff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --ring: 1px solid var(--border);
  --transition: .22s cubic-bezier(.2, .7, .2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-purple: var(--color-dark-purple);
    --color-blue: var(--color-dark-blue);
    --color-blue-inverted: var(--color-light-blue);
    --background-color: var(--theme-color-dark);
    --text-decoration-color: var(--theme-color-light);
    --text-color: #fff;
    --text-color-inverted: #000;
  }
}

body {
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: radial-gradient(1000px 600px at 10% -10%, #6c5ce740, #0000 60%), radial-gradient(900px 500px at 110% 10%, #0984e333, #0000 60%), linear-gradient(#0f1320 0%, #0d101b 100%);
  min-width: 800px;
  font-family: Open Sans, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

a {
  color: var(--color-blue);
  transition: color var(--transition), text-shadow var(--transition);
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-shadow: var(--glow-blue);
  cursor: pointer;
}

strong {
  font-weight: 700;
}

body:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(#0000 0, #ffffff06 1px), linear-gradient(90deg, #0000 0, #ffffff06 1px);
  background-size: 60px 60px, 60px 60px;
  animation: 12s linear infinite gridMove;
  position: fixed;
  inset: 0;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 70%, #0000 100%);
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 70%, #0000 100%);
}

@keyframes gridMove {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 60px 60px, 60px 60px;
  }
}

.logo-text {
  letter-spacing: -2px;
}

header .logo-text {
  color: #0000;
  background: linear-gradient(270deg, #74b9ff, #a29bfe, #6c5ce7, #0984e3) 0 0 / 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 48px;
  font-weight: 800;
  animation: 12s infinite holoText;
}

@keyframes holoText {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

header {
  z-index: 10;
  backdrop-filter: blur(10px);
  border-bottom: var(--ring);
  background: linear-gradient(#ffffff0a, #ffffff05);
  padding: 20px;
  position: sticky;
  top: 0;
  overflow: auto;
}

header .column-left {
  float: left;
}

header .column-right {
  float: right;
}

header .logo-image {
  --fixed-logo-image-size: 36px;
  width: var(--fixed-logo-image-size);
  height: var(--fixed-logo-image-size);
  filter: drop-shadow(0 4px 10px #00000073);
  margin-right: 8px;
  display: inline-block;
}

header .logo-status {
  opacity: .85;
  font-size: 18px;
}

header .header-button {
  color: var(--text-color);
  text-align: center;
  width: 83px;
  height: 83px;
  margin-left: -5px;
  font-size: 14px;
  line-height: 20px;
}

header .header-button > span:first-of-type {
  margin-top: 10px;
  font-size: 22px;
  display: block;
}

header .header-button-single {
  cursor: pointer;
  border-radius: var(--radius);
  background: var(--surface-1);
  border: var(--ring);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  display: none;
}

header .header-button-single:hover {
  background: var(--surface-2);
  box-shadow: var(--glow-blue);
  transform: translateY(-1px);
}

footer {
  background: var(--surface-1);
  color: var(--text-color);
  border-top-right-radius: var(--radius);
  border-top-left-radius: var(--radius);
  text-align: center;
  border: var(--ring);
  width: 90%;
  margin: 15px auto 0;
  padding: 12px 0;
  display: none;
}

footer a {
  color: var(--color-blue-inverted);
}

footer a:hover {
  color: var(--text-color);
}

#status-overlay {
  background: var(--surface-1);
  color: var(--text-color);
  border-radius: var(--radius);
  text-align: center;
  border: var(--ring);
  width: 350px;
  height: 150px;
  margin-top: -95px;
  margin-left: -175px;
  padding: 20px 0;
  position: fixed;
  top: 50%;
  left: 50%;
  box-shadow: 0 10px 50px #0006;
}

#status-overlay .logo-image {
  --fixed-logo-image-size: 72px;
  width: var(--fixed-logo-image-size);
  height: var(--fixed-logo-image-size);
}

#tooltip {
  border-radius: var(--radius-xs);
  color: #fff;
  z-index: 10000;
  backdrop-filter: blur(6px);
  background: #141824f2;
  border: 1px solid #ffffff14;
  padding: 8px 10px;
  display: none;
  position: absolute;
  box-shadow: 0 10px 30px #00000073;
}

#server-list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  display: flex;
  overflow: auto;
}

.server {
  background: var(--surface-1);
  border: var(--ring);
  border-radius: var(--radius);
  width: 800px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  margin: 0 5px;
  padding: 10px 14px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px #00000059;
}

.server:after {
  content: "";
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
  background: repeating-linear-gradient(#ffffff0a 0 1px, #0000 1px 3px);
  position: absolute;
  inset: 0;
}

.server:hover:after {
  opacity: .2;
}

.server:hover {
  background: var(--surface-2);
  box-shadow: 0 16px 60px #00000073, var(--glow-purple);
  transform: translateY(-4px)scale(1.01);
}

.server .column {
  float: left;
}

.server .column-favicon {
  width: 80px;
}

.server .column-favicon .server-favicon {
  --fixed-server-favicon-size: 64px;
  width: var(--fixed-server-favicon-size);
  height: var(--fixed-server-favicon-size);
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  margin-top: 5px;
  box-shadow: 0 6px 18px #00000059;
}

.server .column-favicon .server-rank {
  text-align: center;
  opacity: .9;
  width: 64px;
  display: block;
}

.server .column-status {
  width: 282px;
}

.server .column-status .server-name {
  letter-spacing: .2px;
  text-shadow: 0 0 16px #ffffff14;
  font-weight: 700;
  display: inline-block;
}

.server .column-status .server-error {
  color: #ff6b6b;
  display: none;
}

.server .column-status .server-label {
  color: var(--color-dark-gray);
  font-size: 16px;
  display: none;
}

.server .column-status .server-value {
  color: #cfd6e6;
  font-size: 16px;
}

.server .column-graph {
  border-left: 1px dashed #ffffff14;
  width: 400px;
  height: 100px;
  padding-left: 12px;
}

.server-is-favorite {
  cursor: pointer;
  color: var(--color-gold);
  text-shadow: var(--glow-gold);
}

.server-is-favorite:hover:before {
  content: "";
}

.server-is-not-favorite {
  cursor: pointer;
  color: #fff3;
}

.server-is-not-favorite:hover {
  color: var(--color-gold);
  text-shadow: var(--glow-gold);
}

.server-highlighted-label {
  opacity: .9;
  font-size: 18px;
}

.server-highlighted-value {
  color: #0000;
  background: linear-gradient(90deg, gold, #f5f, #5ff) 0 0 / 200%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 20px;
  font-weight: 800;
  animation: 5s linear infinite shine;
}

@keyframes shine {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.global-stat {
  font-weight: 700;
}

#sort-by {
  background: linear-gradient(135deg, var(--color-purple), var(--color-blue));
  box-shadow: var(--glow-purple);
}

#settings-toggle {
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  box-shadow: var(--glow-blue);
}

.button {
  border-radius: var(--radius-sm);
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  background: linear-gradient(135deg, #0984e3e6, #a29bfee6);
  border: 1px solid #ffffff26;
  padding: 10px 16px;
  font-size: 16px;
  box-shadow: 0 0 12px #0984e359, inset 0 0 6px #a29bfe59;
}

.button:hover {
  filter: brightness(1.15);
  transform: translateY(-3px)scale(1.03);
  box-shadow: 0 0 20px #0984e38c, 0 0 40px #a29bfe73;
}

#big-graph {
  width: 90%;
  margin: 0 auto;
  padding-right: 65px;
}

#big-graph, #big-graph-controls, #big-graph-checkboxes {
  width: 90%;
}

#big-graph-checkboxes > table {
  width: 100%;
}

#big-graph-controls {
  margin: 10px auto;
  display: none;
}

.graph-controls-show {
  color: var(--text-color);
}

#big-graph-controls .icon-star {
  color: var(--color-gold);
  text-shadow: var(--glow-gold);
}

#big-graph-controls-drawer {
  background: var(--surface-1);
  color: var(--text-color);
  border-radius: var(--radius);
  border: var(--ring);
  padding-bottom: 10px;
  display: none;
  overflow: auto;
  box-shadow: 0 10px 40px #00000059;
}

#big-graph-controls-drawer .graph-controls-setall {
  text-align: center;
  margin: 15px 0;
  display: block;
}

#big-graph-checkboxes {
  margin: 15px auto 0;
}

.uplot .select {
  background: var(--color-blue);
  opacity: .25;
}

#perc-bar {
  border-radius: var(--radius-sm);
  border: var(--ring);
  background: linear-gradient(#ffffff0a, #ffffff05);
  height: 35px;
  position: relative;
  overflow-x: hidden;
}

#perc-bar .perc-bar-part {
  background: linear-gradient(90deg, var(--color-blue), var(--color-purple));
  height: 100%;
  transition: width .6s cubic-bezier(.22, 1, .36, 1);
  display: inline-block;
  position: absolute;
  box-shadow: inset 0 0 12px #fff3;
}

.ad_alert {
  background: var(--surface-1);
  color: var(--text-color);
  border-top-right-radius: var(--radius);
  border-top-left-radius: var(--radius);
  text-align: center;
  border: var(--ring);
  width: 90%;
  margin: 15px auto 0;
  padding: 10px 0;
  display: none;
}

@media only screen and (width <= 1050px) {
  header {
    padding: 0 !important;
  }

  .header-possible-row-break {
    text-align: center;
    width: 100%;
    padding-top: 20px;
  }

  .header-possible-row-break:last-of-type {
    margin-bottom: 20px;
  }
}

:root {
  --border-radius: var(--radius-xs);
}
/*# sourceMappingURL=html.00eccaa5.css.map */
