﻿/*.pulse {
    -webkit-animation: pulse 2.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.3;
    transition: background 200ms ease-out;
    border-width: 2px;
}*/

.pulse-red {
    -webkit-animation-name: pulse-fromto;
    -webkit-animation-duration: 500ms;
    -webkit-animation-iteration-count: 2;
    -webkit-animation-delay: 40ms;
    /*-webkit-animation: pulsate 1.5s infinite;*/
    /*-webkit-animation-iteration-count: 20;*/
    /*animation: pulsate 1.5s infinite;*/
    animation-name: pulse-fromto;
    animation-duration: 500ms;
    animation-iteration-count: 2;
    animation-delay: 40ms;
    /*border-width: 10px !important;*/
}

@keyframes pulse-fromto {
    from {
        border-color: rgba(192,64,0,.3);
        background-color: rgba(192,64,0,.1);
    }
    to {
        border-color: rgba(192,64,0,.7);
        background-color: rgba(192,64,0,.3);
    }
/*    to {
        border-color: rgba(255,0,0,.3);
        background-color: rgba(255,0,0,.1);
    }*/
}
