

/* APPLICATION STYLES */

.semaforo {
    width:12px;
    height:12px;
    border: solid 1px #676767;
    border-radius:12px;
    margin:0px 5px;
}
.semaforo.rojo { 
    background-color: #a00000;
    background: linear-gradient(#a00000, #730000);
}
.semaforo.verde {
    background-color: #27ae60;
    background: linear-gradient(#27ae60, #1f773b);
}
.semaforo.gris { 
    background-color: #b8b8b8;
    background: linear-gradient(#bdbcb6, #46453f);
}