/* Wizard export RGPD: tabs horizontales (APP) */
.af-export-tabs{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  width:100%;
  gap:12px;
  margin:0 0 8px;
}

/* Reparto exacto del ancho: 1/3, 1/3, 1/3 */
.af-export-tabs > .af-app-tabs__item{
  flex:1 0 0;
  width:0;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.af-export-tabs .af-app-tabs__item.is-disabled,
.af-export-tabs .af-app-tabs__item[aria-disabled="true"]{
  opacity:.45;
  cursor:not-allowed;
  pointer-events:none;
}

