.controle-segmente {
  display: flex;
  flex-direction: row;
}
.controle-segmente .bouton-segmente {
  border-radius: 0;
  font-family: "Marianne";
  display: flex;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #ddd;
  border-left-style: none;
  color: var(--noir);
  padding: 16px 24px;
  font-size: 1rem;
  line-height: 1.5rem;
  background: white;
  text-wrap: nowrap;
  flex: 1 0 185px;
  box-sizing: border-box;
}
.controle-segmente .bouton-segmente:first-of-type {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-left-style: solid;
}
.controle-segmente .bouton-segmente:last-of-type {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.controle-segmente .bouton-segmente:not([disabled]).actif {
  background: var(--jaune-msc);
}
.controle-segmente .bouton-segmente:not([disabled]).actif:not([disabled]):hover {
  background: var(--jaune-msc-hover);
}
.controle-segmente .bouton-segmente:not([disabled]).actif:not([disabled]):active {
  background: var(--jaune-msc-clique);
}
.controle-segmente .bouton-segmente[disabled] {
  border-color: var(--gris-desactive-fond);
  background: white;
  color: var(--gris-desactive-texte);
  cursor: not-allowed;
}
.controle-segmente .bouton-segmente:not([disabled]):hover {
  background: var(--gris-secondaire-fond-hover);
}
.controle-segmente .bouton-segmente:not([disabled]):active {
  background: var(--gris-secondaire-fond-clique);
}

/*# sourceMappingURL=controle-segmente.css.map */