.aurore-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.25rem;
  min-width: 2.25rem;
  width: fit-content;
  border-radius: 4px;
  flex-direction: row;
  flex-wrap: nowrap;
  box-sizing: content-box;
  gap: 1rem;
}
.aurore-text-btn {
  overflow: hidden;
  white-space: nowrap;
  max-width: 0;
  transition: all 0.4s ease-out;
  color: #0c4270;
  font-weight: 300;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid var(--aurore-couleur-theme-primary);
  transition: all 1.5s;
}

.aurore-text-btn p {
  margin: 0;
}

.aurore-alt .aurore-text-btn {
  color: white;
}

.aurore-alt .aurore-fleche svg {
  fill: var(--aurore-couleur-theme-primary);
}

.aurore-btn:hover .aurore-text-btn,
.aurore-open .aurore-text-btn {
  max-width: 30rem;
}

.aurore-fleche svg {
  fill: white;
}
.aurore-alt .aurore-fleche {
  background: white;
}
.aurore-fleche {
  display: flex;
  background: var(--e-global-color-accent);
  padding: 0.25rem;
  border-radius: 0.5rem;
}
