.lp-christmas-item {
    position: fixed;
    top: -50px;
    pointer-events: none;
    user-select: none;
    z-index: 999999;
    animation-name: lp-fall;
    animation-timing-function: linear;
}

@keyframes lp-fall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0.8;
    }
}
