

#form-progress-bar {
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin: auto;
  padding: 0 0 2em 0;
}

.progress-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4em;
  padding: 0 2em;
  font-weight: bold;
}

.progress-circle {
  width: 3em;
  height: 3em;
  border: 1px solid black;
  border-radius: 50%;
  background-color: var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.progress-title {
  margin: 0.4em 0;
}

.progress-line {
  height: 0.1em;
  width: 3.2em;
  background-color: var(--black);
  position: relative;
  top: -1.6em;
  left: 4em;
}

.progress-line-complete {
  background-color: var(--valid);
}

.selected-circle {
  background-color: var(--valid);
  color: white;
}

#checkout-title {
  text-align: center;
  margin-top: 1em;
}

#checkout-title p {
  font-size: 1.5rem;
  margin: 0;
  margin-top: 0.2em;
  margin-bottom: 1em;
}



@media only screen and (max-width: 1000px) {
  #form-progress-bar {
    font-size: 1rem;
  }
}