/*
Theme Name: Divi Child
Template: Divi
*/
/* Onglets - container */
/* Container de la barre d'onglets : supprime margin et ajoute ligne en bas */
/* Barre de navigation onglets : ligne fine dessous */
/* Barre navigation onglets : uniquement ligne de fond */
.et_pb_tabs_controls {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #e3e6eb !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Onglet : pas de barre verticale, espacement propre */
.et_pb_tab {
  margin: 0 16px 0 0 !important; /* espace entre onglets */
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Titre onglet : gris par défaut, centré, sans séparation */
.et_pb_tab a {
  color: #7a8899 !important;
  font-size: 1.09rem;
  font-weight: 500;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  padding: 0 14px 10px 14px !important;
  text-align: center;
  transition: color .19s, border-bottom .19s;
  text-decoration: none !important;
}

/* Titre onglet actif : bleu + ligne bleue dessous */
.et_pb_tab.et_pb_tab_active a,
.et_pb_tab_active a {
  color: #2196f3 !important;
  border-bottom: 2.5px solid #2196f3 !important;
  font-weight: 700;
  background: transparent !important;
}

/* Hover onglet actif ou inactif */
.et_pb_tab a:hover {
  color: #2196f3 !important;
}

/* Retire toute barre entre onglets (virer border, shadow) */
.et_pb_tab,
.et_pb_tabs_controls {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Marge dessous menu onglet */
.et_pb_tabs {
  margin-bottom: 30px !important;
}

