.indicadores-chile {
    display: flex;
    background-color: #4B2A7B;
    border-radius: 25px;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: white;
}
.indicadores-chile div {
    padding: 8px 16px;
    white-space: nowrap;
}
.indicadores-chile .etiqueta {
    background-color: #EF5350;
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.indicadores-chile .item {
    background-color: #5C3B88;
}
.indicadores-chile .item strong {
    margin-right: 4px;
}

/*Media query para vista en moviles*/

@media (max-width: 768px) {
  .indicadores-chile {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    margin-right:15px;
    margin-left:15px;
    font-size: 19px;
  }

  .indicadores-chile div {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .indicadores-chile div:last-child {
    border-bottom: none;
  }
}