.press-progress {
  background: var(--progress-background-color, #ebedf0);
  border-radius: var(--progress-height, 4px);
  height: var(--progress-height, 4px);
  position: relative;
}

.press-progress__portion {
  background: var(--progress-color, #1989fa);
  border-radius: inherit;
  height: 100%;
  left: 0;
  position: absolute;
}

.press-progress__pivot {
  background-color: var(--progress-pivot-background-color, #1989fa);
  border-radius: 1em;
  box-sizing: border-box;
  color: var(--progress-pivot-text-color, #fff);
  font-size: var(--progress-pivot-font-size, 10px);
  line-height: var(--progress-pivot-line-height, 1.6);
  min-width: 3.6em;
  padding: var(--progress-pivot-padding, 0 5px);
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  word-break: keep-all;
}