@keyframes blinker {
    0% {
        opacity: 1
    }
    50% {
        opacity: .5;
        color: orange
    }
    100% {
        opacity: 1
    }
}

@keyframes rotateMe {
    0% {
        transform: rotate(0)
    }
    50% {
        transform: rotate(45deg)
    }
    100% {
        transform: rotate(0)
    }
}

.text-blink {
    opacity: 1;
    animation: blinker .5s infinite;
    cursor: pointer
}

.text-assisted {
    padding: 6px;
    border-radius: 4px;
    color: #fff;
    background-color: #3d0f3c;
    font-size: .8em;
    cursor: pointer
}

.fa-times {
    animation: rotateMe 4s infinite;
    color: rgba(255, 255, 255, .8)
}

.fa-times:hover {
    color: rgba(255, 255, 255, .8)
}