@import url(//fonts.googleapis.com/css?family=Barlow+Condensed:500,600,700);
@import url(//fonts.googleapis.com/css?family=Source+Sans+3:400,600,700);

:root {
  --bg: #0c1624;
  --bg-soft: #13233a;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(9, 18, 33, 0.84);
  --border: rgba(255, 255, 255, 0.12);
  --text: #edf3fb;
  --muted: #9ab0c8;
  --accent: #d43474;
  --accent-strong: #f06a9d;
  --accent-shadow: rgba(212, 52, 116, 0.34);
  --success: #ffc1da;
}

.marketRate {
  display: none;
}

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

body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  font-family: 'Source Sans 3', Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 52, 116, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(240, 106, 157, 0.16), transparent 26%),
    linear-gradient(180deg, #13233a 0%, #0b1422 52%, #09111d 100%);
}

body:before,
body:after {
  content: '';
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.55;
  z-index: 0;
}

body:before {
  top: 120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(212, 52, 116, 0.12);
}

body:after {
  right: -140px;
  bottom: 120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.05);
}

a {
  color: var(--accent-strong);
  transition: color 160ms ease, opacity 160ms ease;
}

a:hover,
a:focus {
  color: #ffbdd7;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.navbar-brand {
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  letter-spacing: 0.02em;
}

h3,
.h3 {
  font-size: 34px;
  margin-bottom: 18px;
}

.navbar-inverse {
  background: linear-gradient(180deg, rgba(7, 12, 24, 0.92) 0%, rgba(8, 15, 28, 0.82) 100%);
  border: 0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.navbar-inverse .container {
  background-color: transparent;
}

.navbar-main {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-inverse .navbar-brand {
  color: #fff5e5;
  font-size: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 12px;
  padding-bottom: 12px;
  height: auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(212, 52, 116, 0.24);
}

.brand-wordmark {
  display: inline-block;
  line-height: 0.95;
}

.brand-wordmark small {
  display: block;
  margin-top: 4px;
  font-family: 'Source Sans 3', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaafc4;
}

.brand-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(212, 52, 116, 0.24);
}

.brand-mark svg {
  width: 50px;
  height: 50px;
  display: block;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent;
}

.navbar-inverse .navbar-toggle {
  border-color: rgba(255, 255, 255, 0.16);
}

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

.menu-collapse {
  border-top: 0;
  box-shadow: none;
}

.menu-surface {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0 18px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.menu-surface > li {
  float: none;
  display: block;
}

.menu-surface > li > a {
  color: #d9e5f2;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-label {
  display: inline-block;
  transform: translateY(1px);
}

.menu-surface > li > a:hover,
.menu-surface > li > a:focus {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.menu-surface > li > a:hover .nav-icon,
.menu-surface > li > a:focus .nav-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(238, 66, 135, 0.24);
}

.menu-surface > .active > a,
.menu-surface > .active > a:hover,
.menu-surface > .active > a:focus {
  color: #09121f;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-radius: 999px;
  box-shadow: 0 10px 25px var(--accent-shadow);
}

.menu-surface > .active > a .nav-icon,
.menu-surface > .active > a:hover .nav-icon,
.menu-surface > .active > a:focus .nav-icon {
  background: rgba(9, 18, 33, 0.14);
  color: #09121f;
}

.menu-surface > li:nth-child(1) .nav-icon {
  color: #ffd3e6;
}

.menu-surface > li:nth-child(2) .nav-icon {
  color: #ffc3df;
}

.menu-surface > li:nth-child(3) .nav-icon {
  color: #ffb5d7;
}

.menu-surface > li:nth-child(4) .nav-icon {
  color: #ffa4cf;
}

.menu-status-item {
  margin-left: 4px;
  display: flex;
  align-items: center;
}

.menu-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7d7e5;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-status i {
  color: #ff9ec4;
}

.menu-status:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 0 0 6px rgba(212, 52, 116, 0.12);
}

.container {
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .container {
    width: 1303px;
  }
}

#stats_updated {
  color: #ffc1da;
}

hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

#siteInfo {
  padding: 26px 0 10px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 34px 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(212, 52, 116, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(18, 31, 50, 0.94) 0%, rgba(8, 16, 29, 0.92) 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(212, 52, 116, 0.26);
}

.hero-panel:after {
  content: '';
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd7e6;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 12px;
  font-size: 56px;
  line-height: 0.95;
}

.hero-title span {
  color: var(--accent-strong);
}

.hero-copy {
  max-width: 720px;
  margin: 0;
  color: #c7d7e8;
  font-size: 20px;
}

.hero-grid {
  margin-top: 28px;
}

.hero-stat {
  min-height: 118px;
  margin-bottom: 14px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-stat-label {
  display: block;
  margin-bottom: 6px;
  color: #a6bdd4;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat-value {
  display: block;
  color: #fff4e6;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 28px;
  line-height: 1.05;
}

.hero-stat-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.port-badge {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212, 52, 116, 0.16);
  color: #ffd7e6;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.stats {
  margin-bottom: 20px;
  margin-top: 10px;
  padding: 22px 22px 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel-strong);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.stats:last-child {
  width: auto;
}

.stats > h3 > i {
  font-size: 0.8em;
  width: 50px;
}

.stats > div:not(#addressError) {
  color: #dbe8f4;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats > div:not(#addressError):first-of-type {
  border-top: 0;
}

.stats > div:not(#addressError).marketFooter {
  padding: 6px 0;
}

.stats > div:not(#addressError) > i.fa {
  color: var(--accent);
  font-size: 20px;
  width: 30px;
  text-align: center;
}

.stats > div:not(#addressError) > span:not(.input-group-btn):first-of-type {
  font-weight: 700;
  padding: 0 2px;
  color: #ffffff;
}

.form-control {
  height: 50px;
  border: 1px solid rgba(247, 147, 26, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-control::placeholder {
  color: #8ea5bd;
}

.form-control:focus {
  box-shadow: 0 0 0 4px rgba(247, 147, 26, 0.14);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.input-group-addon {
  border: 1px solid rgba(247, 147, 26, 0.28);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #10161f;
  font-weight: 700;
}

.btn-default {
  color: #111926;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border: 0;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(247, 147, 26, 0.22);
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #10161f;
  background: linear-gradient(135deg, #f06a9d 0%, #ffb3cf 100%);
  box-shadow: 0 16px 30px rgba(212, 52, 116, 0.28);
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.btn-default .badge {
  color: var(--accent);
  background-color: #ffffff;
}

.dropdown-menu {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #122238;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.dropdown-menu > li > a {
  color: #d9e5f2;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #fff;
  background: rgba(212, 52, 116, 0.18);
}

.table {
  color: #d8e4ef;
}

.table th,
.table .miningAppTitle {
  font-weight: 700;
}

code {
  padding: 2px 10px;
  color: #fff7ea;
  background-color: rgba(212, 52, 116, 0.18);
  border-radius: 999px;
}

.container .paymentsStatHolder,
.container .blocksStatHolder {
  padding-top: 20px;
}

.container .paymentsStatHolder > span,
.container .blocksStatHolder > span {
  border-width: 0;
  padding: 6px 13px;
}

.container .paymentsStatHolder > span > span,
.container .blocksStatHolder > span > span {
  font-weight: 700;
}

.bg-primary {
  background-color: var(--accent);
}

.bg-info {
  background-color: var(--bg-soft);
  color: #fff;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: rgba(255, 255, 255, 0.04);
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: rgba(212, 52, 116, 0.12);
}

.table > thead > tr > th {
  color: #fff2df;
  border-bottom-color: rgba(212, 52, 116, 0.35);
}

.table > tbody > tr > td {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.03);
}

footer {
  background: rgba(7, 13, 24, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.footer-inner {
  padding: 14px 18px;
  color: #9fb4ca;
}

.text-muted {
  color: #9fb4ca;
}

/************************************************
*** charts ***
************************************************/
.chartsPoolStat {
  padding-top: 30px;
}

.chartWrap {
  display: none;
}

.userChart .chart,
.chartWrap .chart {
  margin-bottom: 10px;
}

.userChart h4,
.chartWrap h4 {
  text-align: center;
  font-size: 24px;
  color: #fff2df;
}

.userChart {
  display: none;
}

#addressError {
  color: #ff9f8e;
}

/************************************************
*** sparkline override ***
************************************************/
.jqstooltip {
  border: none !important;
  background: rgba(7, 13, 24, 0.94) !important;
  border-radius: 10px !important;
  margin-top: -20px !important;
  box-sizing: content-box !important;
}

.jqstooltip .jqsfield {
  color: #d6e2ee;
  font-size: 13px !important;
}

.jqstooltip .jqsfield b {
  color: #fff;
}

@media (max-width: 991px) {
  .menu-surface {
    gap: 4px;
    padding: 7px;
  }

  .menu-surface > li > a {
    font-size: 16px;
    padding: 10px 12px;
    gap: 8px;
  }

  .nav-icon {
    width: 28px;
    height: 28px;
  }

  .menu-status {
    font-size: 14px;
    padding: 9px 12px;
  }

  .hero-panel {
    padding: 28px 24px 24px;
  }

  .hero-title {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 82px;
    padding-bottom: 100px;
  }

  .navbar-main {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .navbar-header {
    float: none;
  }

  .navbar-inverse .navbar-toggle {
    margin-top: 9px;
    margin-right: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .navbar-collapse {
    border-top: 0;
    box-shadow: none;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    margin-top: 8px;
  }

  .navbar-inverse .navbar-brand {
    font-size: 28px;
    max-width: calc(100% - 62px);
    padding-right: 0;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-mark,
  .brand-mark svg {
    width: 42px;
    height: 42px;
  }

  .menu-surface {
    display: block;
    margin: 0;
    padding: 10px;
    border-radius: 18px;
  }

  .menu-surface > li {
    display: block;
  }

  .menu-surface > li > a {
    display: flex;
    width: 100%;
    margin-bottom: 6px;
    justify-content: flex-start;
  }

  .menu-surface > li:last-child > a {
    margin-bottom: 0;
  }

  .menu-status {
    margin: 10px 0 2px;
    justify-content: center;
    width: 100%;
  }

  .menu-status-item {
    margin-left: 0;
    display: block;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .stats {
    padding: 18px 18px 14px;
  }
}

@media (max-width: 420px) {
  .navbar-inverse .navbar-brand {
    font-size: 24px;
  }

  .brand-wordmark small {
    display: none;
  }

  .menu-surface > li > a {
    font-size: 15px;
    padding: 10px;
  }

  .nav-icon {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 768px) {
  .navbar-main .container {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .navbar-main .navbar-header,
  .navbar-main .navbar-collapse {
    float: none;
  }

  .navbar-main .navbar-header {
    flex: 0 0 auto;
  }

  .menu-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
  }

  .menu-surface {
    margin: 0;
    width: 100%;
    justify-content: flex-end;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .navbar-inverse .navbar-brand {
    font-size: 26px;
  }

  .brand-wordmark small {
    letter-spacing: 0.1em;
  }

  .menu-surface > li > a {
    padding: 10px 12px;
    font-size: 16px;
  }

  .menu-status {
    font-size: 14px;
    padding: 9px 11px;
  }
}

@media (min-width: 1600px) {
  .menu-surface {
    gap: 8px;
  }

  .menu-surface > li > a {
    padding: 12px 18px;
    font-size: 19px;
  }
}
/************************************************
*** home page fixes ***
************************************************/
#yourAddressDisplay {
  word-wrap: break-word;
}
/************************************************
*** 20% width block ***
************************************************/
.col-sm-20 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .col-sm-20 {
    float: left;
    width: 20%;
  }
}
/************************************************
*** admin page ***
************************************************/
.btn-primary {
  color: #ffffff;
  background-color: #03a678;
  border-color: #03a678;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #027454;
  border-color: #026a4d;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #03a678;
  border-color: #03a678;
}
.btn-primary .badge {
  color: #03a678;
  background-color: #ffffff;
}
a.list-group-item {
  font-size: 1.1em;
}
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  color: #ffffff;
  background-color: #03a678;
  border-color: #03a678;
}
a.list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
a.list-group-item:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.adminStats > div {
  min-height: 127px;
  color: #2E3D31;
  position: relative;
  -webkit-box-shadow: inset 0px 0px 0 1px #ffffff;
  box-shadow: inset 0px 0px 0 1px #ffffff;
  background-color: #EBEBEB;
}
.adminStats .statValue {
  position: absolute;
  display: block;
  padding: 0 10px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  line-height: 100px;
  text-align: center;
  word-wrap: break-word;
  font-size: 17px;
}
.adminStats .statValue.lead {
  font-size: 21px;
  font-weight: 600;
}
.adminStats h4 {
  text-align: right;
  font-size: 18px;
  position: absolute;
  bottom: 10px;
  right: 15px;
  margin: 0;
  color: #26839B;
}
.adminStats .statsTitle h3 {
  line-height: 127px;
  margin: 0;
  color: #00C1FF;
  text-align: center;
}
.usersList {
  table-layout: fixed;
  word-wrap: break-word;
}
.usersList .tooltip-inner {
  max-width: 100%;
}
.usersList .sort {
  cursor: pointer;
}
.usersList tr > th:first-child {
  width: 40%;
}
strong,
b {
  font-weight: 500;
}
.nav-pills > li > a {
  border-radius: 0;
  background-color: #F3F3F3;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #03a678;
}
.adminMonitor code {
  white-space: normal;
}
.adminMonitor .tab-pane li {
  margin-bottom: 10px;
}

