.onboarding-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 40px;
  max-width: 700px;
  padding: 0 20px;
}

.onboarding-progress .step {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 13px;
  color: #999;
  padding-top: 35px;
}

.onboarding-progress .step::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 2px solid #ccc;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.onboarding-progress .step.done {
  color: #28a745;
}

.onboarding-progress .step.done::before {
  background: #28a745;
  border-color: #28a745;
  content: '\2713';
  color: white;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
}

.onboarding-progress .step.current {
  color: #007bff;
  font-weight: bold;
}

.onboarding-progress .step.current::before {
  background: #007bff;
  border-color: #007bff;
}

.onboarding-progress .step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 12px;
  left: calc(50% + 12px);
  right: calc(-50% + 12px);
  height: 2px;
  background: #ccc;
  z-index: -1;
}

.onboarding-progress .step.done:not(:last-child)::after {
  background: #28a745;
}

/* G-050 : le libelle complet du bouton etait coupe. Bootstrap met .btn en
   white-space:nowrap et .form-signin est borne en largeur : le texte deborde
   sans jamais passer a la ligne. On autorise le retour a la ligne sur ce bouton
   (plutot que de raccourcir le libelle, qui est explicite et traduit). */
#formGroupe .btn-block {
  white-space: normal;
  line-height: 1.3;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* La bulle d'aide du mode de retrait ne doit pas etre soulignee comme un label */
#formGroupe .MSG_TypeRetrait { margin-left: 6px; vertical-align: middle; }

/* G-103 : champs obligatoires du formulaire de creation (nom, type, mode de
   retrait). Le mode de retrait n'a plus de valeur par defaut : sans marqueur,
   l'utilisateur subirait un blocage a l'envoi sans comprendre pourquoi. */
#formGroupe .req-mark { color: #d9534f; font-weight: 700; margin-left: 2px; }
