.indicadores-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  -webkit-animation: mymove .25s linear;
          animation: mymove .25s linear;
  text-align: left; }
  @media only screen and (max-width: 500px) {
    .indicadores-item {
      background-size: contain;
      background-position: bottom; } }
  .indicadores-item .title {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #57a0d7;
    margin-bottom: 0; }
  .indicadores-item .value {
    font-weight: 300;
    font-size: 48px;
    line-height: 56px;
    margin-right: .5rem; }
    @media only screen and (max-width: 500px) {
      .indicadores-item .value {
        line-height: 48px;
        margin-top: .5rem; } }
  .indicadores-item .value-units {
    width: 60px;
    font-size: 13px;
    line-height: 15px;
    color: #828282; }
    @media only screen and (max-width: 425px) {
      .indicadores-item .value-units {
        width: auto; } }
  .indicadores-item .value, .indicadores-item .value-units {
    display: inline-block; }
  .indicadores-item .stroke {
    height: 2px;
    background-color: #57a0d7; }

@-webkit-keyframes mymove {
  from {
    background-position: 0% -200%; }
  to {
    background-position: 0% 0%; } }

@keyframes mymove {
  from {
    background-position: 0% -200%; }
  to {
    background-position: 0% 0%; } }
