/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 22 2025 | 14:21:05 */
#layers, #layers .layer {
    height: 200px;
    position: absolute;
    top: 200px;
    left: -10px;
}
#layers {
    overflow: hidden;
    width: 100%;
    z-index: 0;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
}
#layers .-falling-star {
    content: "";
    position: absolute;
    top: -50px;
    z-index: 100;
    width: 72px;
    height: 50px;
    background-image: url(/wp-content/uploads/2025/10/star.webp);
    background-size: 72px 50px;
}
#layers .-falling-star:nth-child(1) {
    -webkit-animation: x-shooting-star-1 10s infinite;
    animation: x-shooting-star-1 10s infinite;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    left: 70%;
}
#layers .-falling-star:nth-child(2) {
    -webkit-animation: x-shooting-star-2 10s infinite;
    animation: x-shooting-star-2 10s infinite;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    left: 40%;
}
#layers .-falling-star:nth-child(3) {
    -webkit-animation: x-shooting-star-2 10s infinite;
    animation: x-shooting-star-2 10s infinite;
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
    left: 90%;
}
#layers .-falling-star:nth-child(4) {
    -webkit-animation: x-shooting-star-1 10s infinite;
    animation: x-shooting-star-1 10s infinite;
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
    left: 55%;
}
#layers .-falling-star:nth-child(5) {
    -webkit-animation: x-shooting-star-1 10s infinite;
    animation: x-shooting-star-1 10s infinite;
    -webkit-animation-delay: 13s;
    animation-delay: 13s;
    left: 20%;
}
@keyframes x-shooting-star-1 {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    15% {
        opacity: 0;
        -webkit-transform: translate3d(-270px,180px,0);
        transform: translate3d(-270px,180px,0);
    }
    100% {
        opacity: 0;
    }
}
@keyframes x-shooting-star-2 {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    25% {
        opacity: 0;
        -webkit-transform: translate3d(-270px,180px,0);
        transform: translate3d(-270px,180px,0);
    }
    100% {
        opacity: 0;
    }
}