#myinfobar {
    margin: 0 0 12px 0;
}

#myinfobar * {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: rgb(194, 19, 25);
}

#myinfobar li {
    display: inline-block;
    padding: 8px;
}

#myinfobar li:not(.nohover):hover {
    background-color: rgb(5, 5, 5);
    color: rgb(255, 255, 255);
}
#myinfobar li:not(.nohover):hover > .imgnube {
    filter: invert(0%);
}

#myinfobar li.nohover{
    color: rgb(5,5,5);
}

.imgnube {
    filter: invert(78%);
    margin-top: -6px;
    margin-right: 8px;
}
.parpadea {

    animation-name: parpadeo;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

    -webkit-animation-name:parpadeo;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
  }

  @-moz-keyframes parpadeo{
    0% { opacity: 1.0; }
    50% { opacity: 0.2; }
    100% { opacity: 1.0; }
  }

  @-webkit-keyframes parpadeo {
    0% { opacity: 1.0; }
    50% { opacity: 0.2; }
     100% { opacity: 1.0; }
  }

  @keyframes parpadeo {
    0% { opacity: 1.0; }
     50% { opacity: 0.2; }
    100% { opacity: 1.0; }
  }