@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,300,600);

body {
  margin:0px;
  padding:0px;
  background: #f5f5f5;
  color: rgba(56,62,65,0.9);
  font-weight: 300;
  padding-top: 50px;
  padding-bottom: 20px;
}

* {
  font-family:"Open Sans","Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif !important;
}

header.top {
  background-color: #f5f5f5;
}
.navbar-inverse {
  border-bottom: 1px solid #e5e5e5;
}
footer {
  font-size: 0.9em;
  margin-top: 50px;
  margin-bottom: 0;
  padding: 50px;
  padding-bottom: 100px;
  border-top: 1px solid #e5e5e5;
}
footer p {
  margin-bottom: 0;
}
.navbar-brand {
  color:#67C2EF !important;
} 

.jumbotron {
  color:#67C2EF;
}

.jumbotron, footer {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.logo {
  color: #fff;
  background-color:#67C2EF;
  text-align: center;
  padding: 10px 5px;
}
#cluster {
  padding: 5px;
  overflow:hidden;
}
#cluster .node {
  font-size:.9em;
  color: #FFF;
  margin: 5px;
  width: 103px;
  height: 100px;
  float: left;
  text-align: center;
}

.hostname {
  display:block;
  margin-top:30px;
  text-transform:uppercase;
}

.off {
	color:#fff;
	background-color: rgba(68, 68, 68, 1);
}

.ok {
	color:#fff;
	background-color: rgba(120, 205, 76, 1);
}

@-webkit-keyframes 'blink' {
    0% { background-color: rgba(250, 187, 61, 1); }
    25% { background-color: rgba(120, 205, 76, 1); }
    50%  { background-color: rgba(120, 205, 76, 1); }
    75%  { background-color: rgba(250, 187, 61, 1); }
    100%  { background-color: rgba(250, 187, 61, 1); }
}

.cssanimations .ok-warn {
    -webkit-animation-direction: normal;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: blink;
    -webkit-animation-timing-function: ease;
}

.warn {
	color:#fff;
	background-color: rgba(250, 187, 61, 1);
}
.alert {
	color:#fff;
	background-color: rgba(255, 84, 84, 1);
  border-radius: 0px;
  padding: 0;
  margin-bottom: 0;
  border:0;
}
.available {
	color:#fff;
	background-color: rgba(0, 0, 0, 1);
}

.circleStats {
  text-align: center;
  position: relative;
}
.circleStatsItemBox {
  font-size:12px;
  position: relative;
  background: #67c2ef;
  width: 100%;
  height: 100px;
  margin: 10px auto;
  padding-top: 40px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.circleStatsItemBox .header {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 20px;
  padding: 5px 0px;
  position: absolute;
  top: 0px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.circleStatsItemBox .percent {
  font-size: 12px;
  position: absolute;
  top: 90px;
  width: 100%;
  left: 0px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}
.circleStatsItemBox input {
  font-size:14px;
  cursor: default;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  height: auto;
  position: absolute;
  top: 20px;
  padding: 5px 0px !important;
  border-color: rgba(0, 0, 0, 0.8);
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: black;
  opacity: 0.7;
}

#bubble {
  height: 100px;
  text-align: center;
}

#bubble span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 145px 3px 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  animation: wave 2s infinite ease-in-out;
  -moz-animation: wave 2s infinite ease-in-out;
  -webkit-animation: wave 2s infinite ease-in-out;
}

#bubble span:nth-child(1) {
  animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
}
#bubble span:nth-child(2) {
  animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
}
#bubble span:nth-child(3) {
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
#bubble span:nth-child(4) {
  animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

@keyframes wave {
  0%,60%,100% {
    background: rgba(255,255,255,0.25);
    transform: translateY(0);
    -moz-transform: translateY(0);
  }
  20% {
    background: rgba(255,255,255,0.75);
    transform: translateY(13px);
    -moz-transform: translateY(13px);
  }
  40% {
    background: rgba(255,255,255,0.75);
    transform: translateY(-13px);
    -moz-transform: translateY(-13px);
  }
}

@-webkit-keyframes wave {
  0%,60%,100% {
    background: rgba(255,255,255,0.25);
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  20% {
    background: rgba(255,255,255,0.75);
    transform: translateY(13px);
    -webkit-transform: translateY(13px);
  }
  40% {
    background: rgba(255,255,255,0.75);
    transform: translateY(-13px);
    -webkit-transform: translateY(-13px);
  }
}
