/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2021 | 13:15:28 */
#timeline-formation {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  font-family: "Lato", sans-serif;
  position: relative;
}

#timeline-formation .item:not(:last-child) .marker::before {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #ececec;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}

/* @media (max-width: 400px) {
  #timeline-formation .item:not(:last-child) .marker::before {
    width: 100vw;
    background-color: var(--e-global-color-primary);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
} */

#timeline-formation .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
}

#timeline-formation .item .infos {
/*   position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%); */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}

#timeline-formation .item .infos h3 {
  font-family: "Oswlad", sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

#timeline-formation .item .infos p {
  width: max-content;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

#timeline-formation .item .marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--e-global-color-primary);
  transition: .3s ease;
  border: 2px solid var(--e-global-color-primary);
  cursor: pointer;
  position: relative;
}

#timeline-formation .item:hover .marker {
  border-color: var(--e-global-color-accent);
}

#timeline-formation .item.old {
  opacity: .6;
}

#timeline-formation .item .popup {
  z-index: 10;
  width: 100%;
  background-color: var(--e-global-color-secondary);
  padding: 10px;
  color: #fff;
  position: relative;
  margin-top: 25px;
}

#timeline-formation .item .popup::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  border-bottom: 20px solid var(--e-global-color-secondary);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: none;
}

#timeline-formation .item .popup h3 {
  font-family: "Oswald", sans-serif;
  text-align: center;
  color: #fff;
  background-color: var(--e-global-color-primary);
  padding: 5px;
  margin-top: 0!important;
}

#timeline-formation .item .popup p {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

#timeline-formation .item .popup p:not(.location):not(.max_people) {
  font-size: 18px;
  color: var(--e-global-color-primary);
}

#timeline-formation .item .popup ul {
  margin-bottom: 18px;
  list-style-type: none;
  padding: 0;
}

#timeline-formation .item .popup ul li {
  text-align: center;
}

#timeline-formation .item .popup .separator {
  width: 100%;
  height: 1px;
  background-color: var(--e-global-color-primary);
  margin-bottom: 18px;
}

#timeline-formation .item .popup p.location {
  margin-bottom: 18px;
  font-weight: normal;
}

#timeline-formation .item .popup p.max_people {
  font-weight: normal;
}

#timeline-formation .item .popup a.contact-link {
  display: block;
  background-color: var(--e-global-color-primary);
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  font-family: "Lato";
  margin-top: 20px;
  text-transform: uppercase;
  border: 2px solid var(--e-global-color-primary);
  transition: .4s ease;
  font-weight: 600;
}

#timeline-formation .item .popup a.contact-link:hover {
  background-color: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
}

#filtre_formations {
  width: max-content;
  min-width: 185px;
  font-family: "Lato", sans-serif;
  border: 1px solid #ececec;
}

#filtre_formations .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ececec;
  z-index: 50;
  width: max-content;
}

#filtre_formations .dropdown.show {
  display: block;
}

#filtre_formations .option {
  padding: 7px 30px 7px 12px;
}

#filtre_formations .dropdown.show .option.selected {
  border-bottom: 1px solid #ececec;
}

#filtre_formations .option.selected {
  position: relative;
  cursor: pointer;
}

#filtre_formations .option.selected::after {
  content: "\e5c5";
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

#filtre_formations .option.disabled {
  opacity: .6;
}

#filtre_formations .option:not(.disabled) {
  cursor: pointer;
}

#filtre_formations .option:not(.disabled):hover {
  background-color: var(--e-global-color-accent);
}