.zonetext li {
  text-align: left;
}

body {
  -webkit-user-select: none; /* Chrome, Safari, Opera */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}

.autres {
  color: #888; /* Couleur grise */
  pointer-events: none; /* Désactiver les interactions */
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.frise {
  width: 100%;
  padding: 20px;
}

.evenement {
  display: flex;
  margin-bottom: 20px;
}

.date {
  min-width: 160px;
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.description {
  background-color: #e9f5ff;
  padding: 10px;
  border-radius: 5px;
  margin-left: 10px;
  flex-grow: 1;
}

.description h2 {
  margin-top: 0;
}

.description ul {
  margin-top: 0;
  padding-left: 20px;
}

.description li {
  margin-bottom: 5px;
}

/*Acordeon*/
input.invis {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq {
  color: #fff;
  margin-bottom: 3rem;
}

.faq-label {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  background: #333333;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.faq-label::after {
  content: "\002B";
  padding: 0.51rem;
  transform: scale(1.8);
  text-align: center;
  transition: all 0.35s;
}

.faq-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
  display: none;
  text-align: left;
}

input:checked + .faq-label {
  background: #333333;
}
input:checked + .faq-label::after {
  content: "\2013";
  transform: scale(1.5);
}
input:checked ~ .faq-content {
  max-height: 100vh;
  padding: 1em;
  display: block;
  transition: all 0.35s;
}
.def {
  margin-top: 50px;
  color: #5c5963;
  text-decoration: underline;
}

/* Disabled */

a.disabled-link {
  color: #ccc;
  pointer-events: none;
  cursor: not-allowed;
}

a.disabled-link:hover {
  color: #ccc;
  text-decoration: none;
}
