.grit-wc-step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 40px;
  height: 80px;
}
.grit-wc-step-icon {
  width: 40px;
  height: 40px;
  background-color: var(--neutral400);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grit-wc-step-icon-error {
  background-color: var(--red500);
}
.grit-wc-step-icon-current {
  background-color: var(--blue500);
}
.grit-wc-step-icon-completed {
  background-color: var(--green600);
}
.grit-wc-step-icon-override grit-wc-icon {
  color: var(--neutral100);
}

.grit-step-text {
  font-family: var(--grit-font-family-body);
  font-weight: var(--grit-font-weight-bold);
  font-size: var(--grit-font-size-0);
  color: var(--neutral900);
  margin-top: 4px;
  text-align: center;
}
.grit-step-text-error {
  color: var(--red500);
}
.grit-step-text-current {
  color: var(--blue500);
}
.grit-step-text-completed {
  color: var(--green600);
}