.yc-progress {
  position: relative;
  height: 20px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 3px;
  background-color: var(--yc-color-base-generic);
  text-align: center;
  line-height: 20px;
}
.yc-progress__text {
  font-size: 12px;
  color: var(--yc-color-text-light-primary);
  padding: 0 10px;
  box-sizing: border-box;
  position: relative;
  height: 20px;
  margin-bottom: -20px;
}
.yc-progress__text-inner {
  font-size: 12px;
  color: var(--yc-color-text-light-primary);
  padding: 0 10px;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.yc-progress__item {
  font-size: 12px;
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--yc-color-text-light-primary);
  transition: transform 0.6s ease, width 0.6s ease, background-color 0.6s ease;
}
.yc-progress__item_theme_default {
  background-color: var(--yc-color-infographics-neutral-medium);
}
.yc-progress__item_theme_success {
  background-color: var(--yc-color-infographics-positive-medium);
}
.yc-progress__item_theme_warning {
  background-color: var(--yc-color-infographics-warning-medium);
}
.yc-progress__item_theme_danger {
  background-color: var(--yc-color-infographics-danger-medium);
}
.yc-progress__item_theme_info {
  background-color: var(--yc-color-infographics-info-medium);
}
.yc-progress__item_theme_misc {
  background-color: var(--yc-color-infographics-misc-medium);
}
.yc-progress__stack {
  position: relative;
  width: 100%;
  height: 20px;
  margin: 0 auto;
  line-height: 20px;
  overflow: hidden;
  color: var(--yc-color-text-light-primary);
  transition: transform 0.6s ease;
}
.yc-progress_view_thin {
  height: 10px;
  line-height: 10px;
}
.yc-progress_view_thin .yc-progress__stack {
  height: 10px;
  line-height: 10px;
}
.yc-progress_view_thinnest {
  height: 4px;
  line-height: 4px;
}
.yc-progress_view_thinnest .yc-progress__stack {
  height: 4px;
  line-height: 4px;
}
.yc-progress_view_thin .yc-progress__text, .yc-progress_view_thinnest .yc-progress__text {
  display: none;
}