/* ESTRUCTURA DE PESTAÑAS */
/* PESTAÑAS NIVEL 1 Y 2 */

.tabs-nivel-1,
.tabs-nivel-2 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}

.tabs-nivel-1 button,
.tabs-nivel-2 button {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 6px 4px;
  cursor: pointer;
  font-size: 1em;
  font-family: inherit;
  color: inherit;
  transition: border-color 0.3s, color 0.3s;
}

.tabs-nivel-1 button.active,
.tabs-nivel-2 button.active {
  border-bottom: 2px solid #0073aa;
  color: #0073aa;
}

/* LISTADO DE PROVINCIAS */

.listado-provincias {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 20px;
}

.columna-provincias {
    flex: 1;
    min-width: 220px;
}

.provincia-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4px 0;
  border: none;
}

.provincia-item .contador {
  display: inline-block;
  width: 60px;
  text-align: right;
  font-weight: normal;
  font-size: 1em;
  color: #666;
  margin-right: 12px;
}

.provincia-item a {
  text-decoration: none;
  color: inherit;
  font-size: 1em;
  transition: color 0.2s;
}

.provincia-item a:hover {
  color: #0073aa;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .listado-provincias {
      display: flex;
      flex-wrap: wrap;
      margin-top: 20px;
    }
    .columna-provincias {
        padding-left: 8px;
        padding-right: 8px;
        flex: 0 0 50%;
        max-width: 50%;
        min-width: 0;
    }
}