.wppromo-particle-wrapper *,
.wppromo-target-container * {
    box-sizing: border-box;
}

.wppromo-particle-wrapper {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.wppromo-particle {
    position: absolute;
    top: -10px;
    border-radius: 50%;
    animation-name: wppromo-fall;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.wppromo-particles-effetct{
    position: absolute;
    inset: 0; 
    pointer-events: none;
    height: 100%;
    width: 100%;
}

@keyframes wppromo-fall {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh);
        opacity: 0;
    }
}