/* hyperlien titre sur lequel on clic*/
.accordion{
  cursor: pointer;
  font-size: 1.0rem;
  font-weight: 700;
  color: maroon;
  padding: 0.5rem 0 0.5rem 0.5rem;
}
.summary_toggle {
  border: 1px solid black;
  border-radius: 12px;
  background-color: var(--couleur_secondaire);
  /*variables dans default.css*/
  color: white;
  cursor: pointer;
}

.summary_toggle_detail {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 1.3rem 0 1.3rem;
}

.summary_toggle_detail[open]>summary {
  padding-bottom: 10px;
}
/* contenu texte */
.summary_toggle_detail_title {
  all: unset;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  vertical-align: middle;
}

.summary_toggle_content {  
  margin: unset;
  margin-bottom: 10px;
}

.summary_toggle_content li {
  text-indent: unset;
  margin-bottom: 0.2rem;
}


/* ****** media queries          ***********/
@media (min-width:576px) {
  .summary_toggle_detail_title {
    font-size: 50%;
    line-height: 1.4;
  }

  ul.summary_toggle_content {
    font-size: 40%;
    line-height: 1.4;
  }
}

@media (min-width: 768px) {
  .summary_toggle_detail_title {
    font-size: 120%;
    line-height: 1.6;
  }

  ul.summary_toggle_content {
    font-size: 95%;
    line-height: 1.6;
  }
}

@media (min-width: 992px) {
  .summary_toggle_detail_title {
    font-size: 180%;
    line-height: 1.4;
  }

  ul.summary_toggle_content {
    font-size: 100%;
    line-height: 1.6;
  }

}

@media screen and (min-width: 1224px) {
  .summary_toggle_detail_title {
    font-size: 110%;
    line-height: 1.4;
  }

  ul.summary_toggle_content {
    font-size: 100%;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1400px) {
  .summary_toggle_detail_title {
    font-size: 150%;
    line-height: 1.4;
  }

  ul.summary_toggle_content {
    font-size: 70%;
    line-height: 1.4;
  }
}