@charset "UTF-8";
.tab-buttons {
  display: flex;
  justify-content: flex-end;
  background-color: #333;
  position: fixed; /* Fixe la barre des onglets */
  top: 0; /* La garde en haut de la page */
  width: 100%; /* Assure qu'elle prend la largeur complète */
  z-index: 7; /* Garantit que la barre est au-dessus des autres éléments */
  padding: 10px 0; /* Ajoute de l'espacement pour la rendre plus lisible */
}

@media screen and (max-width: 650px) {
  .tab-buttons {
    width: 80%;
    right: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 360px) {
  .tab-buttons {
    width: 80%;
    right: 0;
  }
}
.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #444;
  color: white;
  border: none;
  outline: none;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  /**/
  /***/
  /****/
}

@media screen and (orientation: portrait) and (max-width: 600px) {
  .tab-button {
    padding: 4px 3px;
    font-size: 12px;
    border: solid rgb(255, 193, 7) 1px;
    width: 70%;
  }
}
@media screen and (orientation: portrait) and (max-width: 380px) {
  .tab-button {
    padding: 4px 3px;
    font-size: 12px;
    border: solid rgb(255, 193, 7) 1px;
    width: 70%;
  }
}
.couper {
  display: none;
}

.tab-button::active {
  background-color: red;
}

.tab-button:hover {
  background-color: #ffc107;
}

.tab-content {
  display: none;
  padding: 0px;
  background-color: transparent;
}

.tab-content.tab-active {
  display: block;
  border-bottom: 3px solid #ffc107; /* Accentuation de l'onglet actif */
}

.but-active {
  background-color: #ffc107;
}

a {
  text-decoration: none;
  color: white;
}

.transparente-summary {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding-top: 2vh;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed !important;
  height: 25vh;
  width: 25vw;
  right: 2vw;
  top: 8vh;
  display: block;
  z-index: 9999;
  min-width: 350px;
}

@media screen and (max-width: 650px) {
  .transparente-summary {
    top: 14vh;
    height: 40vh;
  }
}
@media screen and (max-width: 380px) {
  .transparente-summary {
    top: 14vh;
    min-height: 350px;
  }
}
#sommaire1 {
  min-width: 350px;
  min-height: 350px;
}

@media screen and (orientation: portrait) and (max-width: 380px) {
  #sommaire1 {
    min-height: 350px;
  }
}
summary {
  font-weight: bold;
  font-size: 1.2em;
  cursor: pointer;
}

.sommaire {
  padding-left: 25px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  min-width: 350px;
  position: relative;
  list-style: none;
}

@media screen and (orientation: portrait) and (max-width: 380px) {
  .sommaire {
    min-width: 350px;
  }
}