.pBar,
.level,
.level-wrapper {
  height: 30px;
}
.pBar {
  background: #ececec;
  color: #fff;
  text-shadow: #660909 0px 0px 20px;
  text-align: center;
  width: 100%;
  overflow: hidden;
  font-family: Brown-Pro-Regular;
  position: relative;
  border: 1px solid #cacaca;
}
.pBar span {
  color: #dadada;
  position: absolute;
  left: 0;
  width: 100%;
}
.pBar .level-wrapper {
  width: 100%;
}
.pBar .level-wrapper .level {
  width: 0;
  background: rgba(0, 150, 90, 0.6);
  transition: 1.2s ease-out;
  line-height: 30px;
  overflow: hidden;
}
.pBar .level-wrapper .level.green {
  background: rgba(0, 150, 90, 0.6);
}
.pBar .level-wrapper .level.orange {
  background: rgba(255, 130, 30, 0.8);
}
.pBar .level-wrapper .level.red {
  background: rgba(235, 0, 65, 0.8);
}
.pBar .level-wrapper .level span {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  color: black;
}
.spinner {
  margin: 0px auto 0;
  width: 90px;
  text-align: center;
}
.spinner > div {
  width: 18px;
  height: 18px;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
  animation: bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.64s;
  animation-delay: -0.64s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.48s;
  animation-delay: -0.48s;
}
.spinner .bounce3 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce4 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.spinner .bounce1 {
  background-color: #66d2f0;
}
.spinner .bounce2 {
  background-color: #66c09d;
}
.spinner .bounce3 {
  background-color: #ffe466;
}
.spinner .bounce4 {
  background-color: #ff9643;
}
.spinner .bounce5 {
  background-color: #f3668d;
}
@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
