/* 
    Created on : 20/04/2018, 13:14:15
    Author     : ti3
*/
@keyframes muda-cor-red {
    0%,49% {
        fill: #000
    }
    50%,100% {
        fill: #ff0000
    }
}
@keyframes muda-cor-yellow {
    0%,49% {
        fill: #000
    }
    50%,100% {
        fill: yellow;
    }
}


.svg-red svg path {
    fill: #ff0000 !important;
}
.svg-red-piscando{

    animation-name: muda-cor-red !important;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
.svg-black svg path {
    fill: #000000 !important;
}

.svg-white svg path {
    fill: #FFFFFF !important;
}

.svg-yellow svg path {
    fill: #f9f903 !important;
}
.svg-yellow-piscando{
    animation-name: muda-cor-yellow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.svg-blue svg path {
    fill: #164259 !important;
}

.svg-purple svg path {
    fill: #800080 !important;
}

.svg-green-claro svg path {
    fill: #7ed957 !important;
}

.svg-green-escuro svg path {
    fill: #006400 !important;
}

.svg-gray svg path {
    fill: #737373 !important;
}

.svg-orange svg path {
    fill: #facf22 !important;
}

.icone.svg_48px svg {
    width: 48px !important;
    height: 48px !important;
}

.icone.svg_24px svg {
    width: 24px !important;
    height: 24px !important;
}
