.meter {
  position: relative;
  overflow: hidden;
}

.meter .progress-bar {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
}

.progress-bar-body {
  height: 100%;
  z-index: 0;
  background-color: #313030;
  margin: 1px;
  border-radius: 1px;
  -webkit-animation: progressBar 5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation: progressBar 5s ease-in-out;
  -moz-animation-fill-mode: forwards;
}

@-webkit-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-moz-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.msg-text {
  z-index: 100;
}
