.root {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.step {
  display: flex;
  align-items: center;
  flex: 1 1;
  gap: 8px;
  cursor: pointer;
}

.text {
  text-overflow: none;
  white-space: nowrap;
  overflow: hidden;
}

.checkWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--positive);
}

.activeStepWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.activeStep {
  width: 16px;
  height: 16px;
  border: 4px solid var(--secondary);
  border-radius: 50%;
  box-sizing: border-box;
}

.inactiveStep {
  width: 16px;
  height: 16px;
  border: 4px solid var(--fill3);
  border-radius: 50%;
  box-sizing: border-box;
}

.line {
  height: 1px;
  width: 100%;
  background-color: var(--fill4);
  border: none;
  margin: 0 16px;
}