.progress {
  height: 25px;
  /*padding: 1px;*/
  background-color: #1a124d;
  /* border: 1px solid #eeeeee; */
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}
.progress__bar {
  display: block;
  height: 100%;
  background: #00aeef;
  border-radius: 15px;
}
.progress__label {
  float: right;
  /*padding: 0 2px;*/
  color: #ffffff;
  font-size: 12px;
}
.progress--radius {
  border-radius: 2px;
}
.progress--round {
  border-radius: 1000px;
}
.progress--radius .progress__bar,
.progress--round .progress__bar {
  border-radius: inherit;
}
.progress--small {
  height: 15px;
}
.progress--large {
  height: 10px;
}
.progress--success .progress__bar {
  background-color: #43ac6a;
}
.progress--alert .progress__bar {
  background-color: #f04124;
}
.progress--striped .progress__bar {
  background-size: 40px 40px;
}
