#animationOverlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: none;
}

.action-fly-in {
    animation: flyInRotate 1s forwards;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

@keyframes flyInRotate {
    0% {
        transform: translateX(-500%) rotate(0deg);
        opacity: 0.5;
    }

    75% {
        transform: translateX(50%) rotate(360deg);
        opacity: 0.75;
    }

    100% {
        transform: translateX(0%) rotate(0deg);
        opacity: 1;
    }
}

.flash {
    animation: buttonFlash 1.2s forwards;
}

@keyframes buttonFlash {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.1);
        filter: brightness(1.5);
    }
}

.used-action-container {
    position: relative;
    display: flex;
    padding: 0 0;
    margin: 0;
    justify-content:center;
    align-items: center;
}

.used-action-count {
    position: absolute;
    top:25px;
    left:-15px;
    font-size: 1rem;
    opacity: 10%;
}

.used-action-image {
    width: 50px;
    height: 50px;
    opacity: 10%;
    border-radius: 50%;
    animation: glowing 5s infinite alternate;
}

.on{
    opacity: 100%;
    animation: turboFlash 1.2s forwards, glowing 1s infinite alternate;
}


@keyframes turboFlash {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.5);
        filter: brightness(1.5);
    }
}