.bookmarked .actionBookmark > i {
    color: #E25F91;
}

.actionBookmark > i {
    display: inline-block;
    transition: all 300ms linear;
}

.animationBusy {
     animation-name: busy;
     animation-duration: 1s;
     animation-iteration-count: infinite;
     color: rgba(0, 0, 0, .9);
}

.animationSuccess {
    animation-name: success;
    animation-duration: 1.2s;
    animation-iteration-count: 1;
}

.actionPulse {
    animation-name: pulse;
    animation-duration: 1.2s;
    animation-iteration-count: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.45);
        opacity: 0.65;
    }
    85% {
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes busy {
    from {
        transform: perspective(400px) rotateY(0deg);
    }
    to {
        transform: perspective(400px) rotateY(360deg);
    }
}

@keyframes success {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}