/* COLOR */
.progress {
  flex: 0 0;
}
.progress .progress-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.8em;
  margin-top: 0.5em;
  align-items: center;
}
.progress .progress-status span {
  font-weight: 700;
}
.progress .progress-status div:first-of-type {
  flex: 1;
}
.progress .progress-status.success::before {
  font-family: "shiro-icon";
  content: "\e818";
  font-size: 3em;
  line-height: 0.5;
  color: hsl(182, 58%, 42%);
  margin-right: 0.25em;
}
.progress .error-count {
  color: #EC4949;
  font-weight: bold;
  margin-right: 1em;
}
.progress .error-count::before {
  font-family: "shiro-icon";
  content: "\e81e";
  line-height: 0.5;
  margin-right: 0.25em;
}
.progress .error-count div:last-of-type {
  color: #EC4949;
}
.progress progress {
  display: block;
  border: 0;
  width: 100%;
  height: 0.5em;
}
.progress progress::-webkit-progress-bar {
  background-color: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}
.progress progress::-webkit-progress-value {
  background-color: hsl(182, 58%, 42%);
}
.progress progress::-moz-progress-bar {
  background-color: hsl(182, 58%, 42%);
}/*# sourceMappingURL=ProgressBar.css.map */