
.pulse {
    background-color: inherit;
    -webkit-animation: pulse 2000ms linear infinite;
    animation: pulse 2000ms linear infinite;
}

@-webkit-keyframes pulse {
    0% {
        background-color: none;
    }

    100% {
        background-color: inherit;
    }
}

@keyframes pulse {
    0% {
        background-color: none;
    }

    100% {
        background-color: inherit;
    }
}

/*=============*/

.active-text {
    /*animation: blinker 1500ms linear infinite;*/
    font-weight: bold;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}