.tile-box {
    fill: #33b2d7;
}

.tile-icon {
    fill: white;
}

.tile-label {
    fill: white;
}

.tile-anno-square {
    fill: white;
}

.tile-anno-wide {
    fill: white;
    font-size: 1.5em;
}

.tile-title-wide {
    fill: white;
    font-size: 1em;
}

.tile-title-square {
    fill: white;
}

.tile-square-currency {
    font-size: 1.0em;
    fill: white;
}

.tile-wide-currency {
    font-size: 1.8em;
    fill: white;
}

/* Indica il livello BASSO di criticità del valore mostrato dalla tile */
.tile-low {
}

/* Indica il livello NORMALE di criticità del valore mostrato dalla tile */
.tile-normal {
    fill: #FFC836;
}

/* Indica il livello ALTO di criticità del valore mostrato dalla tile */
.tile-high {    
  
  -webkit-animation: alert-animation 1s infinite;  /* Safari 4+ */
  -moz-animation: alert-animation 1s infinite;  /* Fx 5+ */
  -o-animation: alert-animation 1s infinite;  /* Opera 12+ */
  animation: alert-animation 1s infinite;  /* IE 10+, Fx 29+ */
}

/* Colorazione per le tile con tonalità più scura */
.tile-dark-box 
{
    fill: #006f9e;
}

@-webkit-keyframes alert-animation {
  0%, 60% {
    fill: #FF3B36;
    
  }
  61%, 100% {
     
  }

}