.progress-step {
  position: absolute;
  inset: 0;
}

.progress-step--warm {
  background: var(--color-bg-warning);
}

.progress-step-content {
  position: absolute;
  top: 122px;
  left: var(--padding);
  right: var(--padding);
  width: auto;
}

.progress-step-title {
  margin: 0;
  color: var(--color-button);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.progress-step-title--indigo {
  color: var(--color-accent);
}

.progress-step-text {
  margin: 16px 0 0;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.progress-step-text--dark {
  font-size: 20px;
}

.progress-step-art {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
}

.progress-step-art--claims {
  top: 399px;
  width: 404px;
}

.progress-step-art--be-first {
  top: 505px;
  width: 412px;
}

.status-section {
  position: absolute;
  left: var(--padding);
  right: var(--padding);
  bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.status-section--be-first {
  bottom: 94px;
}

.status-label {
  margin: 0;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.status-progress {
  width: 100%;
  height: 10px;
  border-radius: 25px;
  background: var(--color-accent-soft);
  overflow: hidden;
}

.status-progress-fill {
  display: block;
  height: 100%;
  border-radius: 25px;
  background: var(--color-accent);
}

.status-progress-fill--five-sec {
  width: 0;
  animation: be-first-progress-run 5s linear forwards;
}

@keyframes be-first-progress-run {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.status-progress-fill--claims {
  width: 0;
  animation: be-first-progress-run 5s linear forwards;
}
