.lpm-sparkle {
    position: fixed;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 9999999;
    transform: translate(-50%, -50%);
    animation: lpmSparkle .9s ease-out forwards;
}

.lpm-sparkle:before,
.lpm-sparkle:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
}

.lpm-sparkle:before {
    width: 3px;
    height: 24px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 240, .95),
        #FFD34D,
        rgba(255, 255, 240, .95),
        rgba(255, 255, 255, 0));
    box-shadow:
        0 0 6px #FFD34D,
        0 0 16px #FFD34D,
        0 0 30px rgba(255, 211, 77, .9);
}

.lpm-sparkle:after {
    width: 20px;
    height: 3px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 240, .95),
        #FFD34D,
        rgba(255, 255, 240, .95),
        rgba(255, 255, 255, 0));
    box-shadow:
        0 0 6px #FFD34D,
        0 0 16px #FFD34D,
        0 0 30px rgba(255, 211, 77, .9);
}

.lpm-sparkle i,
.lpm-sparkle b {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 3px;
    height: 18px;
    transform-origin: center;
    border-radius: 999px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 245, 210, .9),
        #FFD34D,
        rgba(255, 245, 210, .9),
        rgba(255, 255, 255, 0));
    box-shadow:
        0 0 6px #FFD34D,
        0 0 14px rgba(255, 211, 77, .9);
}

.lpm-sparkle i {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lpm-sparkle b {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes lpmSparkle {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.25);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.8) rotate(35deg);
    }
}
