.steps-list {
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 4rem;
  bottom: 4rem;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    currentColor 0,
    currentColor 6px,
    transparent 6px,
    transparent 14px
  );
  opacity: 0.3;
}
@media (min-width: 768px) {
  .steps-list::before {
    left: 2.5rem;
  }
}
.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .step-number {
    width: 5rem;
    height: 5rem;
    font-size: 1.5rem;
  }
}
.cookie-policy-steps-meta {
  font-size: 0.7rem;
}

