.lucy-herb-particle-e31e665a {
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23006838"><path d="M12 2c0 0-4.5 3-5 8s1 6 3 8l1 4 1-4c2-2 3.5-3 3-8s-5-8-5-8z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: lucy-fall-e31e665a 1.5s ease-out forwards;
    opacity: 1;
}

@keyframes lucy-fall-e31e665a {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0.5);
        opacity: 0.8;
    }
    10% {
        opacity: 1;
        transform: translate(calc(var(--fall-x) * 0.2), 20px) rotate(calc(var(--fall-rotate) * 0.2)) scale(1);
    }
    100% {
        transform: translate(var(--fall-x), 150px) rotate(var(--fall-rotate)) scale(0.8);
        opacity: 0;
    }
}