/* Listado ordenada */
ol.lista_ordenada_consejos {
  counter-reset: item;
}

ol.lista_ordenada_consejos2 {
  counter-reset: item 5;
}

ol.lista_ordenada_consejos li:before {
  margin: 0 10px 0 0;
  float: left;
  color: $brand-grey-dark;
  font-size: 14px;
  padding: 2px 0;
  text-align: left;
  content: counter(item) ".";
  counter-increment: item;
}

ol.lista_ordenada_consejos li {
  list-style: none;
  padding: 10px 0;
  clear: both;
  line-height: 15px;
}

.button_conseils {
  width: 47%;
  border-radius: 6px;
  background: #fff;
  border: 1px solid $colorBordes;
  text-align: center;
  margin-top: 35px;
}

.button_conseils a {
  text-decoration: none;
  display: block;
  padding: 5px;
  min-height: 75px;
  padding: 5px 20px;

}

@media (max-width: 767px) {
  .button_conseils {
    width: 100%;
    margin-top: 10px
  }
}

/* Lista de enlaces */

.lista_enlaces.list_links {
  overflow: hidden;
}

.lista_enlaces.list_links li {
  line-height: 20px;
  border: 0;
  margin-bottom: 0;
  padding: 5px 0;
  color: $brand-grey-dark;
  font-size: 14px;
  background: transparent;
  display: block;
  border-bottom: 1px solid $colorBordes;
  text-decoration: none;
  &:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.lista_enlaces.list_links li a {
  color: $brand-grey-dark;
  text-decoration: none;
  border-bottom: none;
  padding: 5px 0;
  display: inline-block;
  &:before {
    content: '';
    width: 5px;
    height: 8px;
    margin-right: 8px;
    display: inline-block;
    background-image: url("/headers/ilusion/"+ $assets-folder +"/dist/svg/icon-ownfill-ui-chevron-right-46403c.svg"), none;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  &:hover, &:focus {
    color:$brand-secondary;
  }
}

.lista_enlaces.lista_pois li a {
  &:before {
    width: 0;
    height: 0;
  }
  span.namePoi {
    margin-left: -5px;
  }
}
.lista_enlaces li .glyphicons-gps {
  color: $brand-grey-dark;
  margin: 0;
}

.button_conseils a {
}

/* fin Lista de enlaces */

/* Listado con iconos personalizados: BOC FMC-2017/II/16 */
/* Esta lista permite cargar bullets diferentes en formato SVG y darles colores propios. */
.lista_enlaces_icon {
  overflow: hidden;
  li {
    line-height: 1;
    border: 0;
    margin-bottom: 0;
    padding: 5px 0;
    color: $brand-grey-dark;
    font-size: 14px;
    background: transparent;
    display: block;
    //border-bottom: 1px solid $gray-border;
    text-decoration: none;
    position: relative;
    a {
      color: $brand-grey-dark;
      text-decoration: none;
      border-bottom: none;
      padding: 5px 0;
      display: inline-block;
      &:hover, &:focus {
        color:$brand-secondary;
      }
      svg, svg * {
        margin-right: 5px;
        vertical-align: middle;
      }
      // Iconos disponibles
      svg.icon-anyfill-ui-chevron-right, .icon-anyfill-ui-chevron-right svg * {
        width: 11px;
        height: 11px;
      }
      svg.icon-anyfill-graph-location, .icon-anyfill-graph-location svg * {
        width: 11px;
        height: 11px;
      }
    }
  }
  // Colores de los iconos
  &.brand-red {
    svg, svg * {
      fill: $brand-red;
    }
  }
}
/*rtl:ignore*/
[dir='rtl'] .lista_enlaces_icon svg.icon-anyfill-ui-chevron-right {
  transform: rotateY(180deg);
}
/* Listado con iconos personalizados: EOC */