body .labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
body .labels .statut {
  padding: 8px;
  border-radius: 50px;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 50px;
}
body .labels .statut .bulle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--e-global-color-primary);
}
body .labels .statut .bulle.en-cours {
  background: var(--e-global-color-accent);
}
body .labels .statut label {
  padding: 0 10px 0 0;
  display: inline-block;
  text-transform: uppercase;
}
body .labels .liste {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  body .labels .liste {
    margin-top: 0px;
  }
}
body .labels .liste img {
  width: auto;
}
