:root {
  color-scheme: light dark;
  --ink: #222;
  --muted: #666;
  --line: #ddd;
  --link: #555;
  --paper: #fff;
  --live-bg: #0a0a0a;
  --live-ink: #d8d8d8;
  --live-strong: #fff;
  --live-muted: rgba(216, 216, 216, .74);
  --live-map-fill: #101010;
  --live-map-active-fill: #1a1a1a;
  --live-map-stroke: #303030;
  --live-accent: #f7931a;
  --live-accent-soft: rgba(247, 147, 26, .74);
  --live-accent-faint: rgba(247, 147, 26, .16);
  --live-progress: rgba(247, 147, 26, .94);
  --live-progress-glow: rgba(247, 147, 26, .55);
}

@media (prefers-color-scheme: light) {
  :root {
    --live-bg: #f6f6f2;
    --live-ink: #242424;
    --live-strong: #050505;
    --live-muted: rgba(36, 36, 36, .72);
    --live-map-fill: #e7e7df;
    --live-map-active-fill: #f3f3ed;
    --live-map-stroke: #bdbdb5;
    --live-accent: #f7931a;
    --live-accent-soft: rgba(247, 147, 26, .74);
    --live-accent-faint: rgba(247, 147, 26, .18);
    --live-progress: rgba(247, 147, 26, .94);
    --live-progress-glow: rgba(247, 147, 26, .38);
  }
}

body[data-theme="dark"] {
  --live-bg: #0a0a0a;
  --live-ink: #d8d8d8;
  --live-strong: #fff;
  --live-muted: rgba(216, 216, 216, .74);
  --live-map-fill: #101010;
  --live-map-active-fill: #1a1a1a;
  --live-map-stroke: #303030;
  --live-accent-faint: rgba(247, 147, 26, .16);
  --live-progress-glow: rgba(247, 147, 26, .55);
}

body[data-theme="light"] {
  --live-bg: #f6f6f2;
  --live-ink: #242424;
  --live-strong: #050505;
  --live-muted: rgba(36, 36, 36, .72);
  --live-map-fill: #e7e7df;
  --live-map-active-fill: #f3f3ed;
  --live-map-stroke: #bdbdb5;
  --live-accent-faint: rgba(247, 147, 26, .18);
  --live-progress-glow: rgba(247, 147, 26, .38);
}

@font-face {
  font-family: "FontAwesome";
  src: url("/fonts/fontawesome-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Play";
  src: url("/fonts/play-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Play";
  src: url("/fonts/play-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Titillium Web";
  src: url("/fonts/titillium-web-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--paper);
  color: #333;
  font-family: Play, "Trebuchet MS", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  line-height: 1.42857143;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .9);
  z-index: 3;
  opacity: 1;
  transition: opacity .2s ease;
}

.loading {
  position: relative;
  top: 45%;
  font-size: 1.2em;
  text-align: center;
}

body.live-page .overlay,
body.network-map-page .overlay {
  background: color-mix(in srgb, var(--live-bg) 90%, transparent);
}

body.live-page .loading,
body.network-map-page .loading {
  color: var(--live-ink);
  font-size: 1em;
}

.overlay.is-hidden {
  opacity: 0;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1170px, calc(100% - 30px));
  margin: 0 auto;
  margin-bottom: 40px;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row::before,
.row::after {
  content: " ";
  display: table;
}

.row::after {
  clear: both;
}

.col-md-12,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-4,
.col-md-3,
.col-md-2 {
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .col-md-12,
  .col-md-10,
  .col-md-9,
  .col-md-8,
  .col-md-4,
  .col-md-3,
  .col-md-2 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-lg-9,
  .col-lg-3 {
    float: left;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-3 {
    width: 25%;
  }
}

.logo {
  display: block;
  width: 195px;
  height: 22px;
  margin: 40px 0 3px;
  overflow: hidden;
  background: url("/img/bitnodes.png") no-repeat;
  background-size: contain;
  text-indent: -9999px;
}

.logo:hover {
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .logo {
    margin-top: 30px;
  }
}

.support {
  color: var(--muted);
}

.sponsors {
  color: var(--muted);
  font-size: .9em;
  font-weight: 700;
  text-transform: uppercase;
}

p.sponsors {
  margin: 0;
  padding: 0;
  margin-top: -.5em;
}

.advertise {
  max-width: none;
  text-align: right;
  color: #333;
}

hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 22px 0;
}

h1,
h2,
h3,
h4 {
  font-family: Play, "Trebuchet MS", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: 2.4em;
}

h2 {
  font-size: 2em;
}

h3,
h4 {
  font-size: 1.2em;
  font-weight: 700;
}

.about p {
  margin: 0 0 10px;
}

.big h3 {
  margin-top: 10px;
  font-size: 24px;
  text-transform: none;
}

.big p {
  margin: 0 0 8px;
}

.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.list-group.big h3,
.list-group.big h4 {
  margin: 10px 0 0;
  font-size: 18px;
}

.nav-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  list-style: none;
  margin-bottom: 15px;
  padding-left: 0;
}

.nav-tabs > li {
  display: block;
  float: left;
  margin-bottom: -1px;
  position: relative;
}

.nav-tabs > li > a {
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  color: #2c3e50;
  display: block;
  line-height: 1.42857143;
  margin-right: 2px;
  padding: 10px 15px;
  position: relative;
}

.nav-tabs > li > a:hover {
  background-color: #eee;
  border-color: #eee #eee #ddd;
  text-decoration: none;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover {
  border-color: #ddd;
  border-bottom-color: transparent;
  background: #fff;
  color: #555;
  cursor: default;
}

.tab-pane {
  display: none;
}

.tab-pane.in.active,
.tab-pane.active {
  display: block;
}

.table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
}

.table-condensed {
  margin-bottom: 0;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.text-center {
  text-align: center;
}

.zero {
  color: #aaa;
}

.chart {
  position: relative;
}

.chart:nth-child(2) {
  margin-top: 1em;
}

.annotated-chart {
  padding-top: 2.4em;
}

.annotation {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: .3em;
  padding: .3em .5em;
}

#nodes-chart,
#availability-chart {
  max-width: 1280px;
  height: 360px;
}

#user-agents-chart,
#asns-chart,
#countries-chart,
#heights-chart,
#transactions-chart,
#blocks-chart {
  max-width: 1280px;
  min-height: 120px;
  height: auto;
}

#nodes-chart,
#availability-chart {
  display: flex;
  align-items: end;
  gap: 2px;
  padding-top: 10px;
}

.chart-bar {
  display: inline-block;
  vertical-align: bottom;
  width: max(2px, calc(100% / 288 - 2px));
  min-width: 2px;
  margin-right: 2px;
  background: #337ab7;
}

.pull-left h1 {
  margin-bottom: 0;
}

.divider {
  border-left: 1px solid #eee;
  width: 1px;
  height: 64px;
}

.text-muted {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field {
  color: #555;
  font-size: .85em;
  text-transform: uppercase;
}

.value {
  color: #333;
  margin-right: .5em;
}

.value:last-child {
  margin-right: 0;
}

.blocks {
  display: block;
}

.block {
  display: inline-block;
  background: #e2ecf6;
  text-align: center;
  border: 1px solid #cad4de;
  padding: 15px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.block code {
  display: block;
  border-top: 1px solid #cad4de;
  border-radius: 0;
  font-size: .65em;
  padding: 0;
  padding-top: 5px;
  margin-top: 5px;
}

.block code:last-child {
  border-top: 0;
  padding-top: 2px;
  margin-top: 0;
}

.block p.field {
  margin-bottom: 0;
}

.btn-group {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.btn {
  display: inline-block;
  border: 1px solid #2c3e50;
  border-radius: 4px;
  background: #3c4e70;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.42857143;
  text-shadow: 0 0 5px #999;
  vertical-align: middle;
  white-space: nowrap;
}

.btn-primary {
  background: #3c4e70;
  border-color: #2c3e50;
  color: #fff;
}

.btn-sm {
  border-radius: 3px;
  font-size: 12px;
  line-height: 1.5;
  padding: 5px 10px;
}

.btn:hover {
  color: #fff;
  text-decoration: none;
  border-color: #2c3e50;
}

.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary:active {
  background: #2c3e50;
  border-color: #2c3e50;
  color: #fff;
  outline: 0;
}

.btn[disabled],
.btn[disabled]:hover {
  background: #fff;
  border-color: #ddd;
  color: #999;
  cursor: default;
  opacity: 1;
  pointer-events: none;
  text-shadow: none;
}

.distribution-chart {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 6px 0 0;
}

.distribution-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 8px 14px;
}

.distribution-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.distribution-track {
  grid-column: 1 / -1;
  height: 6px;
  background: #eef3f6;
}

.distribution-track span {
  display: block;
  height: 100%;
  background: #337ab7;
}

.unavailable-chart {
  display: block;
  min-height: 90px;
  height: auto;
  padding: 18px;
  color: var(--muted);
}

#latency-chart {
  height: 180px;
}

.latency-bars {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 100%;
  border-bottom: 1px solid #eee;
}

.latency-bars span {
  flex: 1;
  min-width: 3px;
  background: #3c4e70;
  opacity: .28;
}

#tps-chart {
  height: 60px;
}

#mempool-chart {
  height: 140px;
}

#tps {
  cursor: pointer;
}

#mempool-txs {
  font-size: 0;
  margin-bottom: 20px;
}

#mempool-txs a {
  display: inline-block;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  border-left: 1px solid #5c5c5c;
  width: 6.25%;
  font-size: 10px;
  text-align: center;
  text-decoration: none;
}

#mempool-txs a:hover {
  text-decoration: underline;
}

#mempool-txs a .bytes {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #333;
  height: 2px;
}

.progress {
  height: 5px;
  border-radius: 0;
  background: #f8f8f8;
  margin-top: 5px;
  margin-bottom: 0;
}

.progress-bar {
  display: block;
  height: 100%;
  background: #2c3e50;
  opacity: .2;
}

.progress-bar.fill {
  background: #2c3e50;
  opacity: .6;
}

.table-condensed th,
.table-condensed td {
  border-top: 1px solid var(--line);
  padding: 5px;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: normal;
}

.table th {
  color: #555;
  text-transform: uppercase;
}

.table .text-center {
  text-align: center;
}

.table td.text-center,
.table th.text-center {
  text-align: center;
}

.table td[colspan] {
  text-align: center;
}

#nodeTable,
#leaderboardTable {
  table-layout: fixed;
}

#nodeTable .progress {
  min-width: 0;
}

@media (min-width: 768px) {
  #nodeTable th:nth-child(1),
  #nodeTable td:nth-child(1) {
    width: 24%;
  }

  #nodeTable th:nth-child(2),
  #nodeTable td:nth-child(2) {
    width: 31%;
  }

  #nodeTable th:nth-child(3),
  #nodeTable td:nth-child(3) {
    width: 12%;
  }

  #nodeTable th:nth-child(4),
  #nodeTable td:nth-child(4) {
    width: 16%;
  }

  #nodeTable th:nth-child(5),
  #nodeTable td:nth-child(5) {
    width: 17%;
  }

  #leaderboardTable {
    font-size: .92em;
  }

  #leaderboardTable th,
  #leaderboardTable td {
    padding-right: 4px;
    padding-left: 4px;
  }

  #leaderboardTable th:nth-child(2),
  #leaderboardTable td:nth-child(2) {
    width: 6%;
  }

  #leaderboardTable th:nth-child(3),
  #leaderboardTable td:nth-child(3) {
    width: 17%;
  }

  #leaderboardTable th:nth-child(4),
  #leaderboardTable td:nth-child(4) {
    width: 16%;
  }

  #leaderboardTable th:nth-child(5),
  #leaderboardTable td:nth-child(5) {
    width: 10%;
  }

  #leaderboardTable th:nth-child(6),
  #leaderboardTable td:nth-child(6) {
    width: 7%;
  }

  #leaderboardTable th.visible-lg,
  #leaderboardTable td.visible-lg {
    width: 4%;
  }
}

.striped-table tbody tr:nth-of-type(odd),
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9fbfc;
}

.hover-table tbody tr:hover,
.table-hover tbody tr:hover {
  background-color: #f0f4f6;
}

.world-map-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.world-map-layer path {
  fill: var(--live-map-fill);
  stroke: var(--live-map-stroke);
  stroke-width: .45;
  vector-effect: non-scaling-stroke;
  transition: fill .25s ease-out;
}

.world-map-layer path.has-live-nodes {
  fill: var(--live-map-active-fill);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: rgba(0, 0, 0, .5);
  overflow: auto;
  padding: 0;
}

.modal-window,
#countries-modal .modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  padding: 0;
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-header {
  min-height: 16px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header h4 {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  padding: 15px;
}

.country-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px 30px;
  line-height: 1.8em;
}

#countries-modal .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.8em;
}

#countries-modal .row {
  margin-right: -15px;
  margin-left: -15px;
}

#countries-modal .col-md-4,
.country-modal-item {
  min-width: 0;
}

.country-modal-item,
#countries-modal .col-md-4 {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}

.country-modal-item small {
  color: #777;
}

.country-modal-item a,
#countries-modal .col-md-4 a {
  overflow-wrap: anywhere;
}

.close-button,
#countries-modal .close {
  -webkit-appearance: none;
  float: right;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  margin-top: -3px;
  opacity: .2;
  text-shadow: 0 1px 0 #fff;
}

.close-button:hover,
#countries-modal .close:hover {
  opacity: .5;
}

.close-button:active,
#countries-modal .close:active {
  outline: 0;
}

@media (min-width: 768px) {
  .modal-window,
  #countries-modal .modal-dialog {
    width: 600px;
    margin: 30px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
}

@media (min-width: 992px) {
  .modal-window,
  #countries-modal .modal-dialog {
    width: 900px;
  }

  #countries-modal .col-md-4 {
    float: left;
    width: 33.33333333%;
  }
}

.about h3,
footer .col-md-9 h3 {
  color: #2c3e50;
}

#check-node {
  display: block;
  margin: 0 0 10px;
}

#check-node .form-group {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
}

.form-control {
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  color: #555;
  display: block;
  font-size: 14px;
  height: 34px;
  line-height: 1.42857143;
  padding: 6px 12px;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.input-sm {
  border-radius: 3px;
  font-size: 12px;
  height: 30px;
  line-height: 1.5;
  padding: 5px 10px;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

.input-group {
  border-collapse: separate;
  display: table;
  position: relative;
  width: 100%;
}

.input-group .form-control {
  display: table-cell;
  float: left;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.input-group .form-control:first-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group-btn {
  display: table-cell;
  font-size: 0;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
  width: 1%;
}

.input-group-btn:last-child > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: 0;
}

.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-right: 0;
}

.btn-group > .btn:hover,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:active:focus {
  z-index: 0;
}

.paginator {
  font-size: 18px;
  text-align: center;
}

.paginator a,
.paginator span {
  display: inline-block;
  margin: 0 6px;
}

.paginator .disabled {
  color: #aaa;
}

#check-node #address {
  width: 280px;
  max-width: 100%;
}

#check-node #port {
  width: 74px;
}

.check-result {
  min-height: 20px;
  color: var(--muted);
}

.alert {
  display: none;
  padding: 15px;
  margin: 0 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-success {
  display: block;
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-danger {
  display: block;
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.alert-info {
  display: block;
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

#check-node-status.alert-success a {
  color: #3c763d;
}

.installer {
  text-align: center;
  background: #f8f8f8;
  border: 1px solid #efefee;
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 20px;
}

.installer p {
  margin: 0 0 5px;
}

pre {
  overflow: auto;
  word-wrap: normal;
  white-space: pre;
  font-size: .9em;
  line-height: 1.6em;
}

code {
  background: transparent;
  color: #333;
}

.label {
  display: inline;
  padding: .2em .6em .3em;
  border-radius: .25em;
  color: #fff;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
}

span.label {
  font-size: 1.2em;
  font-weight: 400;
}

span.label .fa {
  color: #333;
}

.label-success {
  background-color: #5cb85c;
}

.label-danger {
  background-color: #d9534f;
}

.label-default {
  background-color: #777;
}

.installer code {
  background: transparent;
  font-size: 16px;
  font-weight: 700;
}

.campaign {
  display: none;
  max-width: 100%;
  border-radius: 3px;
  padding: 2em;
  margin: 0 0 10px;
  font-family: "Titillium Web", sans-serif;
}

.campaign:hover {
  text-decoration: none;
}

.banner-earn-com {
  background: #a57c51;
  background: linear-gradient(90deg, #a57c51, #d7a157);
}

.campaign-content {
  color: #fff;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 1px;
}

.campaign-content > * {
  display: inline-block;
  vertical-align: middle;
}

.campaign-text {
  width: 80%;
  min-width: 0;
}

.campaign-text > * {
  display: inline-block;
  vertical-align: middle;
}

.campaign-logo {
  height: 2.4em;
  margin-right: 1em;
}

.campaign-learn-more {
  width: 20%;
  text-align: right;
  white-space: nowrap;
}

.campaign-learn-more > * {
  display: inline-block;
  font-size: .9em;
}

.campaign-learn-more img {
  height: auto;
  margin-left: 1em;
}

@media screen and (min-width: 320px) {
  .campaign {
    display: block;
    margin-top: 20px;
  }
}

@media screen and (max-width: 720px) {
  .campaign-text {
    width: 85%;
  }

  .campaign-learn-more {
    width: 15%;
  }

  .campaign-learn-more > div {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .campaign {
    padding: 1.6em 1em;
  }

  .campaign-text {
    width: 95%;
  }

  .campaign-learn-more {
    width: 5%;
  }

  .campaign-content {
    font-size: 1.2em;
  }

  .campaign-learn-more img {
    height: 1em;
    margin-left: 0;
  }
}

@media screen and (max-width: 319px) {
  .advertise {
    display: none;
  }
}

.delimiter {
  margin: 0 .4em;
}

footer {
  display: block;
}

footer .sponsors {
  text-align: right;
}

footer .sponsors img {
  height: 30px;
  margin-top: 3px;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  color: #1f5f83;
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-circle::before { content: "\f111"; }
.fa-circle-o::before { content: "\f10c"; }
.fa-copyright::before { content: "\f1f9"; }
.fa-angle-right::before { content: "\f105"; }
.fa-angle-double-right::before { content: "\f101"; }
.fa-chevron-left::before { content: "\f053"; }
.fa-chevron-right::before { content: "\f054"; }
.fa-search::before { content: "\f002"; }
.fa-spinner::before { content: "\f110"; }
.fa-check-circle::before { content: "\f058"; }
.fa-exclamation-circle::before { content: "\f06a"; }
.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(359deg); }
}

.visible-xs {
  display: none;
}

.visible-lg {
  display: none;
}

@media (min-width: 1200px) {
  .visible-lg {
    display: table-cell;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: table-cell;
  }

  p.visible-xs {
    display: block;
  }

  .visible-lg {
    display: none !important;
  }

  .nav-tabs {
    overflow-x: auto;
  }

  .block {
    width: 100%;
    background: transparent;
    border: 0;
    margin-bottom: 0;
  }
}

.schema-list {
  columns: 2;
  max-width: 760px;
  padding-left: 24px;
}

.live-page {
  min-height: 100vh;
  overflow: hidden;
  background: var(--live-bg);
  color: #d8d8d8;
  font-size: 13px;
}

.network-map-page {
  min-height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
  color: #d8d8d8;
  font-size: 13px;
}

.live-page a,
.network-map-page a {
  color: #d8d8d8;
}

.live-page a:hover,
.network-map-page a:hover {
  color: #fff;
}

canvas,
#network-map {
  position: fixed;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.legend {
  position: absolute;
  right: 20px;
  top: auto;
  bottom: 20px;
  z-index: 2;
}

.legend div {
  border: 1px solid #1a1a1a;
  border-radius: 11px;
  margin: 3px;
  padding: 3px 5px;
}

.legend div:hover {
  cursor: pointer;
}

#cyan i { color: #f4f4f4; }
#blue i { color: #cfcfcf; }
#violet i { color: #a8a8a8; }
#yellow i { color: #777; }
#red i { color: #ff1e40; }
#reset i { color: #fff; }

#cyan:hover,
#cyan.active { border-color: #f4f4f4; }
#blue:hover,
#blue.active { border-color: #cfcfcf; }
#violet:hover,
#violet.active { border-color: #a8a8a8; }
#yellow:hover,
#yellow.active { border-color: #777; }
#red:hover,
#red.active { border-color: #ff1e40; }
#reset:hover,
#reset.active { border-color: #fff; }

.hint,
[data-hint] {
  position: relative;
  display: inline-block;
}

.hint::before,
.hint::after,
[data-hint]::before,
[data-hint]::after {
  position: absolute;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: .3s ease;
  transition-delay: 0ms;
}

.hint:hover::before,
.hint:hover::after,
.hint:focus::before,
.hint:focus::after,
[data-hint]:hover::before,
[data-hint]:hover::after,
[data-hint]:focus::before,
[data-hint]:focus::after {
  visibility: visible;
  opacity: 1;
}

.hint:hover::before,
.hint:hover::after,
[data-hint]:hover::before,
[data-hint]:hover::after {
  transition-delay: 100ms;
}

.hint::before,
[data-hint]::before {
  content: "";
  background: transparent;
  border: 6px solid transparent;
  z-index: 1000001;
}

.hint::after,
[data-hint]::after {
  content: attr(data-hint);
  background: #1a1a1a;
  color: #d8d8d8;
  padding: 8px 10px;
  font-size: 1em;
  line-height: 1em;
  white-space: nowrap;
}

.hint-left::before {
  right: 100%;
  bottom: 50%;
  margin-right: -12px;
  margin-bottom: -6px;
  border-left-color: #1a1a1a;
}

.hint-left::after {
  right: 100%;
  bottom: 50%;
  margin-bottom: -14px;
}

.hint-left:hover::before,
.hint-left:hover::after,
.hint-left:focus::before,
.hint-left:focus::after {
  transform: translateX(-8px);
}

.network-map-page .footer {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: #d8d8d8;
  text-shadow: none;
}

.network-map-page .footer a {
  color: #d8d8d8;
}

.network-map-page .footer .network {
  display: inline-block;
  margin: .3em;
  padding: .3em;
}

.network-map-page .footer .network.active {
  color: #fff;
  font-weight: 700;
  border: 1px solid #505050;
}

.live-map {
  position: fixed;
  inset: 0;
  background-color: var(--live-bg);
}

.live-page .header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  z-index: 2;
}

.live-page .user-agents {
  position: absolute;
  top: 54px;
  right: 0;
  padding: 20px;
  text-align: right;
  opacity: .9;
  z-index: 2;
}

.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid var(--live-accent-faint);
  border-radius: 3px;
  background: transparent;
  color: var(--live-ink);
  font: inherit;
  line-height: 1;
  opacity: .9;
}

.theme-toggle:hover,
.theme-toggle:focus {
  border-color: var(--live-accent);
  color: var(--live-strong);
  outline: none;
}

.theme-toggle i {
  color: var(--live-accent);
}

.live-page .user-agent {
  display: block;
  text-align: left;
  min-width: 128px;
  margin: 0 0 13px auto;
}

@media screen and (max-width: 1280px) {
  .live-page .user-agent {
    display: block;
    text-align: left;
  }
}

.live-page #chart-canvas {
  position: fixed;
  left: 48px;
  right: auto;
  bottom: 62px;
  z-index: 2;
  width: 280px;
  height: 280px;
  opacity: 1;
}

@media screen and (max-width: 720px) {
  .live-page .user-agents,
  .live-page #chart-canvas {
    display: none;
  }
}

.polar-chart {
  display: block;
  width: 280px;
  height: 280px;
}

.polar-chart-title {
  fill: var(--live-ink);
  font-size: 18px;
  font-weight: 400;
  text-anchor: middle;
}

.polar-chart-grid,
.polar-chart-spoke {
  fill: none;
  stroke: var(--live-accent-faint);
  stroke-width: 1;
}

.polar-chart-area {
  fill: var(--live-accent-faint);
}

.polar-chart-line {
  fill: none;
  stroke: var(--live-accent);
  stroke-width: 2;
}

.polar-chart-point {
  fill: var(--live-accent);
  stroke: var(--live-map-stroke);
}

.polar-chart-label {
  fill: var(--live-ink);
  font-size: 13px;
  text-anchor: middle;
}

.dot {
  position: absolute;
  z-index: 1;
  width: 5px;
  height: 5px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: #f7931a;
  box-shadow: 0 0 9px rgba(247, 147, 26, .75);
}

.live-map .dot-label {
  position: absolute;
  z-index: 1;
  max-width: 190px;
  margin: -13px 0 0 7px;
  overflow: hidden;
  color: var(--live-accent-soft);
  font-size: 10px;
  line-height: 1.15;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px #000;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity .26s ease-out, transform .26s ease-out;
}

.live-map .dot-label.is-live {
  animation: live-node-label 1.2s ease-out;
}

.live-map .dot-label.is-expiring {
  opacity: 0;
  transform: translateY(-3px);
}

.live-panel {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: auto;
  max-width: calc(100% - 40px);
  background: transparent;
  border-radius: 0;
  padding: 20px;
  box-shadow: none;
  color: var(--live-ink);
}

.live-agents {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 170px;
  max-width: calc(100% - 40px);
  background: transparent;
  border-radius: 0;
  padding: 20px;
  box-shadow: none;
  color: var(--live-ink);
  text-align: right;
  opacity: .9;
}

.live-panel p {
  margin: 0 0 16px;
  max-width: 410px;
}

.live-panel h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
}

#clientRows {
  display: block;
  margin-top: 10px;
}

.live-page .user-agent .name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-page .user-agent .percent,
.live-page .user-agent .height {
  color: var(--live-strong);
  font-size: 19px;
  opacity: .9;
}

.live-page .user-agent .height {
  display: block;
  color: var(--live-accent);
  font-size: 14px;
}

.live-page .footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  color: var(--live-ink);
  text-shadow: none;
}

.live-page .footer .status {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0;
}

.live-page .footer .status > span {
  min-height: 3.8em;
  padding-top: 1.2em;
  border-left: 4px solid var(--live-accent-faint);
  padding-left: 1em;
  margin-bottom: 5px;
}

#last-node {
  flex: 1 1 auto;
  margin-left: 20px;
  white-space: nowrap;
}

#lastNodeValue {
  display: block;
  margin-top: 2px;
  padding-top: 0;
  color: var(--live-strong);
  font-size: 1em;
  opacity: .9;
}

#height {
  flex: 0 0 auto;
  order: 2;
  margin-right: 3em;
}

#reachable-nodes {
  flex: 0 0 auto;
  order: 3;
  margin-right: 20px;
}

@media screen and (max-width: 1024px) {
  #reachable-nodes,
  #height {
    display: block;
  }
}

@media screen and (max-width: 720px) {
  #reachable-nodes,
  #height {
    display: none;
  }
}

.live-page .footer .number {
  font-size: 1.4em;
  font-weight: 400;
  color: var(--live-strong);
  opacity: .9;
}

.percentage {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 3px;
  background: transparent;
  opacity: 1;
  transition: opacity .3s ease-out;
}

.percentage.is-complete {
  opacity: 0;
}

#completed {
  width: 0;
  height: inherit;
  background: var(--live-progress);
  box-shadow: 0 0 8px var(--live-progress-glow);
  transition: none;
}

.live-page .logo,
.network-map-page .logo {
  width: 195px;
  height: 22px;
  margin: 0 0 3px;
  overflow: hidden;
  background-image: url("/img/bitnodes-inverse.png");
}

@media (prefers-color-scheme: light) {
  .live-page .logo {
    background-image: url("/img/bitnodes.png");
  }
}

.live-page .logo::before,
.network-map-page .logo::before {
  content: none;
}

.live-page a {
  color: var(--live-strong);
}

.live-page .label {
  display: block;
  padding: 0;
  border-radius: 0;
  color: var(--live-ink);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  opacity: .9;
  text-align: inherit;
  text-transform: none;
  vertical-align: baseline;
  white-space: normal;
}

.live-map .dot.is-live {
  animation: live-node-pop 1.2s ease-out;
}

@keyframes live-node-pop {
  0% {
    opacity: 0;
    transform: scale(.25);
  }
  35% {
    opacity: 1;
    transform: scale(1.9);
  }
  100% {
    opacity: .85;
    transform: scale(1);
  }
}

@keyframes live-node-label {
  0% {
    opacity: 0;
    transform: translateY(3px);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: .85;
    transform: translateY(0);
  }
}

.live-page .height {
  color: var(--live-accent);
}

.live-page .height.stalled {
  color: #de446a;
}

.network-map-page .label {
  display: inline-block;
  color: #d8d8d8;
  font-size: .65em;
  margin-right: .5em;
  opacity: 1;
  text-transform: uppercase;
}

.network-map-page .header .info {
  font-size: 21px;
  font-weight: 700;
  margin-top: 1em;
}

.network-map-page .header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  z-index: 2;
}

.network-map-page .header p {
  margin: 0;
  max-width: none;
}

.network-map-page .header p.info {
  margin-top: 1em;
}

@media (max-width: 700px) {
  .tab-grid {
    grid-template-columns: 1fr;
  }

  footer .sponsors {
    border-top: 1px solid #eee;
    text-align: center;
    margin-top: 1em;
    padding-top: 1em;
  }

  .country-modal-grid {
    grid-template-columns: 1fr;
  }

  .live-panel {
    top: 0;
    left: 0;
    max-width: calc(100% - 40px);
  }

  .live-page .user-agents,
  .live-agents {
    top: auto;
    right: 0;
    bottom: 88px;
    max-width: calc(100% - 40px);
  }

  .live-page #chart-canvas {
    display: none;
  }

  .live-page .header {
    top: 0;
    left: 0;
  }

  .live-page .footer .status {
    padding-left: 12px;
    padding-right: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  #reachable-nodes,
  #height {
    display: block;
  }
}

@media (max-width: 1280px) {
  .live-page .user-agent {
    display: block;
    text-align: left;
    margin: 0 0 13px auto;
  }
}

@media (max-width: 720px) {
  .live-page .user-agents,
  .live-agents,
  .live-page #chart-canvas {
    display: none;
  }
}

/* System UI refresh: restrained, functional, and close to the original markup. */
:root {
  --paper: #f7f7f4;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #6d6d67;
  --line: #d8d8d1;
  --line-strong: #202020;
  --link: #171717;
  --accent: #f7931a;
  --accent-dark: #b75f00;
  --control-bg: #111111;
  --control-ink: #ffffff;
}

body:not(.live-page):not(.network-map-page) {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .025) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  color: var(--ink);
  font-family: "Titillium Web", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}

body:not(.live-page):not(.network-map-page) .container {
  width: min(1120px, calc(100% - 48px));
  margin-bottom: 64px;
}

body:not(.live-page):not(.network-map-page) .logo {
  width: 176px;
  height: 20px;
  margin: 48px 0 18px;
  filter: grayscale(1) contrast(1.25);
}

body:not(.live-page):not(.network-map-page) .container > .row:first-child p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body:not(.live-page):not(.network-map-page) hr {
  border-top: 1px solid var(--line-strong);
  margin: 34px 0;
}

body:not(.live-page):not(.network-map-page) h1,
body:not(.live-page):not(.network-map-page) h2,
body:not(.live-page):not(.network-map-page) h3,
body:not(.live-page):not(.network-map-page) h4 {
  color: var(--ink);
  font-family: Play, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

body:not(.live-page):not(.network-map-page) h3 {
  font-size: 15px;
}

body:not(.live-page):not(.network-map-page) h3 a,
body:not(.live-page):not(.network-map-page) .nav-tabs a {
  color: var(--ink);
}

body:not(.live-page):not(.network-map-page) h1 {
  font-size: clamp(42px, 8vw, 92px);
  line-height: .92;
  margin: 4px 0 22px;
}

body:not(.live-page):not(.network-map-page) h1 a {
  color: var(--ink);
}

body:not(.live-page):not(.network-map-page) #snapshotText,
body:not(.live-page):not(.network-map-page) .text-muted,
body:not(.live-page):not(.network-map-page) .field {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

body:not(.live-page):not(.network-map-page) a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color .12s ease, text-decoration-color .12s ease, background-color .12s ease;
}

body:not(.live-page):not(.network-map-page) a:hover {
  color: var(--accent-dark);
  text-decoration-color: currentColor;
}

body:not(.live-page):not(.network-map-page) .btn,
body:not(.live-page):not(.network-map-page) button.btn {
  min-height: 34px;
  border: 1px solid var(--control-bg);
  border-radius: 0;
  background: var(--control-bg);
  color: var(--control-ink);
  font-family: Play, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 14px;
  text-shadow: none;
  text-transform: uppercase;
}

body:not(.live-page):not(.network-map-page) .btn:hover,
body:not(.live-page):not(.network-map-page) .btn:focus,
body:not(.live-page):not(.network-map-page) .btn:active {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
  outline: 0;
  text-decoration: none;
}

body:not(.live-page):not(.network-map-page) .form-control {
  min-height: 34px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-family: "Titillium Web", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  padding: 7px 2px;
}

body:not(.live-page):not(.network-map-page) .form-control:focus {
  border-bottom-color: var(--accent);
  outline: 0;
}

body:not(.live-page):not(.network-map-page) .well {
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin: 30px 0 22px;
  padding: 18px 0;
}

body:not(.live-page):not(.network-map-page) .input-group {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

body:not(.live-page):not(.network-map-page) .input-group .form-control {
  display: block;
  flex: 1 1 0;
  float: none;
  max-width: 100%;
  min-width: 0;
  width: auto;
}

body:not(.live-page):not(.network-map-page) .input-group-btn {
  display: flex;
  flex: 0 0 auto;
  width: auto;
}

body:not(.live-page):not(.network-map-page) .table {
  border-top: 1px solid var(--line-strong);
  margin-top: 18px;
}

body:not(.live-page):not(.network-map-page) .table th,
body:not(.live-page):not(.network-map-page) .table td {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  vertical-align: top;
}

body:not(.live-page):not(.network-map-page) .table th {
  color: var(--muted);
  font-family: Play, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

body:not(.live-page):not(.network-map-page) .table-striped tbody tr:nth-of-type(odd),
body:not(.live-page):not(.network-map-page) .table-hover tbody tr:hover,
body:not(.live-page):not(.network-map-page) .table-striped > tbody > tr:nth-child(odd) > td,
body:not(.live-page):not(.network-map-page) .table-striped > tbody > tr:nth-child(odd) > th,
body:not(.live-page):not(.network-map-page) .table-hover > tbody > tr:hover > td {
  background: transparent;
}

body:not(.live-page):not(.network-map-page) .table-hover tbody tr:hover td {
  color: var(--accent-dark);
}

body:not(.live-page):not(.network-map-page) .nav-tabs {
  gap: 0;
  border-bottom: 1px solid var(--line-strong);
  margin-top: 4px;
  margin-bottom: 18px;
}

body:not(.live-page):not(.network-map-page) .nav-tabs > li > a {
  border: 0;
  border-radius: 0;
  margin-right: 26px;
  padding: 0 0 10px;
  color: var(--muted);
  font-family: Play, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

body:not(.live-page):not(.network-map-page) .nav-tabs > li > a:hover {
  border: 0;
  background: transparent;
  color: var(--ink);
}

body:not(.live-page):not(.network-map-page) .nav-tabs > li.active > a,
body:not(.live-page):not(.network-map-page) .nav-tabs > li.active > a:hover {
  border: 0;
  border-bottom: 3px solid var(--accent);
  background: transparent;
  color: var(--ink);
}

body:not(.live-page):not(.network-map-page) .big h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  margin: 18px 0 2px;
}

body:not(.live-page):not(.network-map-page) .big p {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

body:not(.live-page):not(.network-map-page) .paginator {
  color: var(--muted);
  font-family: Play, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  margin: 20px 0;
}

body:not(.live-page):not(.network-map-page) code,
body:not(.live-page):not(.network-map-page) pre {
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

body:not(.live-page):not(.network-map-page) footer {
  color: var(--muted);
  font-size: 14px;
}

body:not(.live-page):not(.network-map-page) footer h3 {
  margin: 28px 0 10px;
}

body:not(.live-page):not(.network-map-page) .modal-window,
body:not(.live-page):not(.network-map-page) .modal-content {
  border: 1px solid var(--line-strong);
  border-radius: 0;
  box-shadow: none;
}

body:not(.live-page):not(.network-map-page) .modal-header {
  border-bottom: 1px solid var(--line);
}

body:not(.live-page):not(.network-map-page) .alert {
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #fff;
}

body.live-page {
  font-family: "Titillium Web", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body.live-page .logo,
body.network-map-page .logo {
  filter: grayscale(1) contrast(1.3);
}

body.live-page .header p,
body.network-map-page .header p {
  font-size: 13px;
  line-height: 1.45;
}

body.live-page .user-agents {
  border-left: 1px solid color-mix(in srgb, var(--live-strong) 28%, transparent);
  padding-left: 16px;
}

body.live-page .user-agent {
  font-family: Play, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body.live-page .footer {
  border-top: 1px solid color-mix(in srgb, var(--live-strong) 22%, transparent);
}

@media (max-width: 760px) {
  body:not(.live-page):not(.network-map-page) .container {
    width: min(100% - 28px, 1120px);
  }

  body:not(.live-page):not(.network-map-page) .row {
    margin-right: -8px;
    margin-left: -8px;
  }

  body:not(.live-page):not(.network-map-page) .col-md-12,
  body:not(.live-page):not(.network-map-page) .col-md-10,
  body:not(.live-page):not(.network-map-page) .col-md-9,
  body:not(.live-page):not(.network-map-page) .col-md-8,
  body:not(.live-page):not(.network-map-page) .col-md-4,
  body:not(.live-page):not(.network-map-page) .col-md-3,
  body:not(.live-page):not(.network-map-page) .col-md-2 {
    padding-right: 8px;
    padding-left: 8px;
  }

  body:not(.live-page):not(.network-map-page) .input-group {
    gap: 8px;
  }

  body:not(.live-page):not(.network-map-page) .input-group .form-control {
    min-width: 0;
  }

  body:not(.live-page):not(.network-map-page) h1 {
    font-size: 44px;
  }

  body:not(.live-page):not(.network-map-page) .table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body:not(.live-page):not(.network-map-page) .table tbody {
    display: table;
    width: 100%;
    min-width: 640px;
  }

  body:not(.live-page):not(.network-map-page) #countryRows,
  body:not(.live-page):not(.network-map-page) #snapshotUserAgents,
  body:not(.live-page):not(.network-map-page) #snapshotCountries,
  body:not(.live-page):not(.network-map-page) #snapshotNetworks,
  body:not(.live-page):not(.network-map-page) #addressRows,
  body:not(.live-page):not(.network-map-page) #statusRows {
    min-width: 0;
  }

  body:not(.live-page):not(.network-map-page) #nodeTable td,
  body:not(.live-page):not(.network-map-page) #nodeTable th,
  body:not(.live-page):not(.network-map-page) #nodeTable a,
  body:not(.live-page):not(.network-map-page) #nodeTable span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body:not(.live-page):not(.network-map-page) #nodeTable tbody,
  body:not(.live-page):not(.network-map-page) #nodeTable tr,
  body:not(.live-page):not(.network-map-page) #nodeTable td,
  body:not(.live-page):not(.network-map-page) #nodeTable th {
    display: block;
    width: 100%;
    min-width: 0;
  }

  body:not(.live-page):not(.network-map-page) .hidden-xs {
    display: none;
  }

  body:not(.live-page):not(.network-map-page) .visible-xs {
    display: block;
  }
}
