/* Progression Bar */

:root {
  --step-color-active: #144f79ff;
  --step-color-disbled: #e0e0e0;
}

.progress-bar-container {
  display: flex;
  width: 100%;
  height: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.progress-steps-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--step-color-active);
}

.step-icon {
  width: 40px;
  height: 40px;

}

.step-number {
  box-sizing: border-box;
  min-width: 40px;
}

.progress-steps-container {

  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  max-width: 100%;
  width: 1200px;
  /* taille allouée à la bar de progression */
  margin: 15px 0;
}

.progress-steps-container .step-number {
  width: 40px;
  height: 40px;
  border: 3px solid var(--step-color-disbled);
  border-radius: 50%;
  color: var(--step-color-active);
  font: 16px consolas;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* éléments centrés dans le cercle */
  background: #fff;
  z-index: 1;
  /*transition: border 0.4s ease-in;*/
  cursor: pointer;
}

.progress-steps-container .step-icon {
  width: 40px;
  height: 40px;
  font: 20px consolas;
  color: var(--step-color-active);
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-number.active {
  border: 3px solid var(--step-color-active);
  background-color: var(--step-color-active);
  color: #fff;
}

.step-number.current {
  border: 3px solid var(--step-color-active);
  background-color: #fff;
  color: var(--step-color-active);
}

.progress-steps-container::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 75%;
  left: 0;
  transform: translate(0, -75%);
  background-color: var(--step-color-disbled);
  z-index: -1;
}

.step-progression {
  position: absolute;
  width: 33%;
  height: 3px;
  top: 75%;
  left: 0;
  transform: translate(0, -75%);
  background-color: var(--step-color-active);
  transition: width 0.4s ease-in;
  z-index: 1;

}

.progression-link {
  color: inherit;
  text-decoration: none;

}

/* End Progression Bar */