/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
.ui-progress {
  font-family: Roboto, Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #525866;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.ui-progress_line {
  width: 100%;
  font-size: 15px;
  position: relative;
}
.ui-progress_small.ui-progress-line,
.ui-progress_small.ui-progress-line .ui-progress-text .icon {
  font-size: 15px;
}
.ui-progress-outer {
  display: inline-block;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
}
.ui-progress_show-info .ui-progress-outer {
  padding-right: calc(2em + 8px);
  margin-right: calc(-2em - 8px);
}
.ui-progress-inner {
  display: inline-block;
  width: 100%;
  background-color: #edeff2;
  border-radius: 100px;
  vertical-align: middle;
  position: relative;
}
.ui-progress-circle__trail {
  stroke: #edeff2;
}
.ui-progress-circle__path {
  stroke: #00ad21;
  -webkit-animation: ui-progress-appear 0.3s;
          animation: ui-progress-appear 0.3s;
}
.ui-progress-success-bg,
.ui-progress-inner__bg {
  border-radius: 100px;
  background-color: #00ad21;
  -webkit-transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
  transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
  position: relative;
}
.ui-progress-success-bg {
  background-color: #00ad21;
  position: absolute;
  top: 0;
  left: 0;
}
.ui-progress-text {
  word-break: normal;
  width: 2em;
  text-align: left;
  font-size: 1em;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
  color: #a1a7b3;
  line-height: 1;
}
.ui-progress-text .icon {
  font-size: 15px;
}
.ui-progress_status_active .ui-progress-inner__bg:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 10px;
  -webkit-animation: ui-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
          animation: ui-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
.ui-progress_status_exception .ui-progress-inner__bg {
  background-color: #d94141;
}
.ui-progress_status_exception .ui-progress-text {
  color: #d94141;
}
.ui-progress_status_exception .ui-progress-circle__path {
  stroke: #d94141;
}
.ui-progress_status_success .ui-progress-inner__bg {
  background-color: #00ad21;
}
.ui-progress_status_success .ui-progress-text {
  color: #00ad21;
}
.ui-progress_status_success .ui-progress-circle__path {
  stroke: #00ad21;
}
.ui-progress_circle .ui-progress-inner {
  position: relative;
  line-height: 1;
  background-color: transparent;
}
.ui-progress_circle .ui-progress-text {
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  margin: 0;
  color: #525866;
}
.ui-progress_circle .ui-progress-text .icon {
  font-size: 1.16666667em;
}
.ui-progress_circle.ui-progress_status_exception .ui-progress-text {
  color: #d94141;
}
.ui-progress_circle.ui-progress_status_success .ui-progress-text {
  color: #00ad21;
}
@-webkit-keyframes ui-progress-active {
  0% {
    opacity: 0.1;
    width: 0;
  }
  20% {
    opacity: 0.5;
    width: 0;
  }
  100% {
    opacity: 0;
    width: 100%;
  }
}
@keyframes ui-progress-active {
  0% {
    opacity: 0.1;
    width: 0;
  }
  20% {
    opacity: 0.5;
    width: 0;
  }
  100% {
    opacity: 0;
    width: 100%;
  }
}
