@keyframes pulse {
    0% {
        transform: scale(0.9);

    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);

    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);

    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.95);

    }
}

@keyframes blinkanim {
    0% {
        background-color: yellow;
    }
    50% {
        background-color: white;
    }
    100% {
        background-color: yellow;
    }
}

.animate-new-step {
    animation: blinkanim 2s ease-in-out;
}

.pulse{
    animation-name: pulse;
    -webkit-animation-name: pulse;

    animation-duration: 2s;
    -webkit-animation-duration: 2s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

