:root {
  --categoryColor: #ee287c;
}

a.pinkButton {
  color: rgb(69, 232, 40);
  background-color: #b50eb5;
  padding: 7px;
  margin-left: 7px;
  margin-right: 7px;
}

#contentHeader > h1 {
  background-color: #ee287c;
}

/* Section Formations */

#formationsContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  min-width: 240px;
  margin: 20px 10px;
}

#formationsContainer > a {
  margin: 20px 5px 0 0;
  align-self: flex-end;
  padding: 5px;
  font-size: 14px;
  color: var(--fontColor1);
  text-align: right;
}

#formationsMenu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background-color: var(--secondaryColor);
  flex-wrap: wrap;
}

.formationSelector {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  min-width: 240px;
  flex: 1;
  padding: 5px 0;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.25s;
}

.formationSelector > p {
  margin: 0;
  font-size: 18px;
  color: rgb(174, 35, 35);
}

.formationSelector > img {
  height: 30px;
  margin: 5px;
}

#formationSelectorInformatique.selectedFormationSelector,
#formationSelectorInformatique:hover {
  background-color: var(--darkBlue);
}

#formationSelectorMediasNum.selectedFormationSelector,
#formationSelectorMediasNum:hover {
  background-color: var(--darkPink);
}

#formationSelectorGestion.selectedFormationSelector,
#formationSelectorGestion:hover {
  background-color: var(--darkOrange);
}

#formationSelectorCommerce.selectedFormationSelector,
#formationSelectorCommerce:hover {
  background-color: var(--darkGreen);
}

#formationsResults {
  width: 100%;
}

.formationResult {
  display: none;
  flex-direction: column;
  width: inherit;
  background-color: var(--bgColor);
}

.formationResult > h3 {
  margin-left: 25px;
  color: var(--fontColor1);
}

.formationResult ul {
  margin-top: 0;
}

.formationResult li {
  list-style: none;
  margin: 10px 5px 10px 0;
}

.formationResult li:before {
  content: "■";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.formationResult a {
  color: var(--fontColor1);
}

#formationsInformatique li:before {
  color: var(--darkBlue);
}

#formationsMediasNum li:before {
  color: var(--darkPink);
}

#formationsGestion li:before {
  color: var(--darkOrange);
}

#formationsCommerce li:before {
  color: var(--darkGreen);
}

.selectedFormation {
  display: flex;
}
