/* FILTRO DE AÑOS COMO SELECT */
.vive-filtro-anios {
  margin: 0 0 28px 0;
  display: inline-block;
}

.vive-filtro-anios__select {
  min-width: 145px;

  padding: 8px 34px 8px 12px;

  border: 1px solid #c2c1c0;
  border-radius: 5px;

  background-color: #ffffff;
  color: #01477C;

  font-size: 14px;
  font-weight: 500;
  line-height: 1;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #01477C 50%),
    linear-gradient(135deg, #01477C 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}


.vive-filtro-anios__select:focus {
  outline: 2px solid #01477C;
  outline-offset: 2px;
}