/* Estilo del encabezado del acordeón */
.APPBF-header h5 {
  position: relative;
  border: 1px solid white;
  padding: 10px;
  margin: 0;
  background: inherit;
  color: white;
  cursor: pointer;
}

/* Signo + por defecto */
.APPBF-header h5::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: white;
  transition: transform 0.3s, content 0.3s;
}

/* Signo − cuando está activo */
.APPBF-header.active h5::after {
  content: "−";
}

/* Estilo del contenedor oculto por defecto */
.APPBF-radio-group {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
  background: inherit;
  color: white;
}

/* Contenedor visible al activar */
.APPBF-radio-group.visible {
  max-height: 1000px; /* Ajusta según la altura de tu contenido */
}

/* Estilo extra si usas la clase .appbuilder_lopd */
.appbuilder_lopd {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.appbuilder_lopd.visible {
  max-height: 1000px;
}
