body {
  transition: background-color 0.5s linear;
}

body {
  background-color: #333;
}

body > .navbar {
  background-color: #292929;
  border-color: #222;
}

#graphs-holder {
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  padding-top: 100px;
  text-align: center;
  opacity: 0;
  transition: opacity 2s linear;
}

#address-holder {
  padding: 9px;
  min-height: 20px;
    text-align: center;
    color: rgb(200, 120, 210);
    font-weight: bold;
    padding-top: 0;
    position: absolute;
    width: 100%;
    top: 67px;
    height: 50px;
}

.visible {
  opacity: 1 !important;
}

.hidden {
  display: none !important;
}


.graph-holder {
    border-radius: 3px;
    background: #444;
    box-shadow: 0 2px 10px -3px #000;
    height: 230px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    min-width: 420px;
    max-width: 450px;
    width: 50%;
    height: 280px;
    padding: 0px;
    display: inline-block;
    margin-left: 2.5px;
    margin-right: 2.5px;
    padding-top: 20px;
    border-radius: 0 0 25px 25px;
    vertical-align:top;
}

.graph {
  height: 250px;
  width: 100%;
}

.hint {
  text-align: center;
  color: #ccc;
  line-height: 20px;
  height:20px;
  bottom: 0px;
  background-color: #393939;
  height: 29px;
  padding-top: 8px;
  border-radius: 0px 0 30px 0;
  border: 1px solid #333;
  border-top: none;
  border-left: none;
  display: inline-block;
  min-width: 160px;
  left: 0px;
  position: absolute;
  top: 0px;
}

.hint.below {
  position: absolute;
  bottom: 10px;
  left: 0px;
  right: 0px;
  top: auto;
  height: 25px;
  background-color: transparent;
  border: none;
}

.hint2 {
  position: absolute;
  left: auto;
  top: 0px;
  right: 0px;
  border-radius: 0px 0 0 30px;
  border-top: none;
  border-right: none;
  min-width: 200px;
}

.currency {
  width: 15px;
  height: 15px;
}

.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
  color: white;
}

.modal-content {
  background-color: #333;
  color: #ccc;
}

.btn-default {
  background-color: #444;
  color: #ccc;
  border: none;
}

.btn-default:hover {
  background-color: #444;
  color: white;
}

.btn-success {
    color: #333;
    background-color: #449d44;
    border-color: #449d44;
}

.btn-success:hover {
    color: #000;
    background-color: #449d44;
    border-color: #449d44;
}

.modal-header .close {
  color: white;
}

.modal-footer, .modal-header {
  border-top: transparent;
  border-bottom: transparent;
}

.well {
  background-color: #333;
  border-width: 0px;
  border-radius: 25px;
  padding: 0 30px 0 30px;
  margin: 0px;
}

.form-control {
  background-color: #222;
  border-color: #888;
  color: white;
}

.form-control:focus {
  border-color: #93c;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(190,100,233,.6);
}

#navbar-collapse {
  position: fixed;
  right: 10%;
  top: 0px;
}

#navbar-collapse.left {
  position: fixed;
  left: 10%;
  top: 0px;
}

#balance_and_paramining {
  opacity: 0;
  transition: opacity 1s linear;
}

.navbar-brand {
  color: #ddd !important;
}

.navbar-brand:hover {
  color: #fff !important;
}


.square {
  width: 40px !important;
  height: 40px !important;
  display: inline-block;
  background-color: rgba(255,255,255,0.1);
  color: white;
  padding-top: 5px;
}

.square:hover, .square:visited, .square:active, .square:focus {
  text-decoration: none !important;
  color: white !important;
}

#chart-emission-detailed {
  height: 270px;
  width: 93%;
  margin-left: 4%;
}

#chart-accounts {
  height: 250px;
  width: 93%;
  margin-left: 4%;
}

#chart-countries {
  height: 250px;
  width: 93%;
  margin-left: 4%;
}

.version {
  position: fixed;
  bottom: 0px;
  right: 0px;
  height: 20px;
  color: #444;
  margin: 5px;
}

#cy {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
}

div.graph.simple-accounts-chart {
  margin-left: -2% !important;
}

div.graph.simple-countries-chart {
  margin-left: -2% !important;
}

.graph-holder.expanded {
  height: 380px !important;
}

.graph-holder.expanded > .graph {
  height: 350px !important;
}

#accounts-graph-holder {
  transition: .3s all linear;
}


#countries-graph-holder {
  transition: .3s all linear;
}

#passphrase-compromise {
  height: 80px;
  border-radius: 0px;
  display: none;
}

#dotest, #badtest, #goodtest {
  padding: 0px 25px;
  margin-top: -5px;
}

#badtest {
  color: #f66;
  font-weight: bold;
  animation: blinker 1s linear infinite;
  padding-top: 10px;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 25px;
}

#compromise-transaction {
  font-size: x-large;
}

.blinking {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@keyframes blinker-lite {
  50% {
    opacity: 0.4;
  }
}



#dotest > a.btn-success {
  color: white;
  background-color: #733;
  border-color: red;
  animation: blinker-lite 2.5s linear infinite;
  margin-top: 8px;
}

#dotest > a.btn-success:hover {
  animation: blinker-lite 0.25s linear infinite;
}

#goodtest {
  color: #ccc;
}

a {
  transition: color .15s linear;
}


.graph-holder.transaction {
  padding: 50px 25px;
  color: #ddd;
}

.graph-holder.transaction > div {
  padding-top: 7px;
}

#loader {
  display: fixed;
  position: relative;
  top:-40px;
  left:-35px;
}

.btn-default[disabled]:hover {
  background-color: #444;
  color: #ccc;
}
