.rain-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: none;
}

.rain-container.active {
    display: block !important;

    background-image:
        radial-gradient(1px 20px at 10% 20%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 30px at 35% 60%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 25px at 60% 10%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 35px at 85% 50%, rgba(255, 255, 255, 0.4), transparent);
    background-size: 150px 150px;
    animation: rain-fall-new 0.5s linear infinite;
}

@keyframes rain-fall-new {
    from {
        background-position: 0 0;
    }
    to {

        background-position: 50px 300px;
    }
}

.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: none;
}

.snow-container.active {
    display: block !important;

    background-image:
        radial-gradient(4px 4px at 20% 10%, white, transparent),
        radial-gradient(3px 3px at 50% 40%, white, transparent),
        radial-gradient(5px 5px at 80% 20%, white, transparent),
        radial-gradient(3px 3px at 30% 70%, white, transparent),
        radial-gradient(4px 4px at 70% 80%, white, transparent);
    background-size: 250px 250px;
    animation: snow-fall 10s linear infinite;
}

@keyframes snow-fall {
    from { background-position: 0% 0%; }

    to { background-position: 10% 100%; }
}

.sun-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: none;
    overflow: hidden;
}

.sun-container.active {
    display: block !important;
    position: absolute;
    top: 0;
    left: 50%;
    width: 2200px;
    height: 2200px;

    background: repeating-conic-gradient(
        from 0deg at 50% 50%,
        rgba(255, 140, 0, 0) 0deg 2deg,
        rgba(251, 255, 192, 0.534) 7deg,
        rgba(250, 244, 156, 0) 12deg 15deg,
        transparent 15deg 40deg
    );

    filter: blur(2px);
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center center;
    animation: sun-rotate-perfect 20s linear infinite;

    pointer-events: none;
    z-index: -1;
}

@keyframes sun-rotate-perfect {

    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.thunder-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    display: none;
    background-color: white;
}

.thunder-container.active {
    display: block !important;

    animation: lightning-flash 5s linear infinite;
}

@keyframes lightning-flash {
    0%, 94%, 100% { opacity: 0; }
    95% { opacity: 0.8; }
    96% { opacity: 0; }
    97% { opacity: 1; }
    98% { opacity: 0; }
}

@keyframes burst-animation {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.rain-container.rainy-low {
    animation-duration: 1.2s;
    background-size: 300px 300px;
    opacity: 0.4; }

.rain-container.rainy-medium {
    animation-duration: 0.6s;
    background-size: 200px 200px;
    opacity: 0.7; }

.rain-container.rainy-heavy {
    animation-duration: 0.25s;
    background-size: 120px 120px;
    opacity: 0.9; }
.snow-container.snowy-low {
    animation-duration: 15s;
    background-size: 300px 300px;
    opacity: 0.6; }

.snow-container.snowy-heavy {
    animation-duration: 8s;
    background-size: 150px 150px;
    opacity: 0.9; }
.rain-container.stormy-heavy {
    animation-duration: 0.2s;
    background-size: 100px 100px;}

.cloud-container.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
}

.cloud {
    display: none;
    position: absolute;
    top: 50px;
    left: 50px;
    width: 100px;
    height: 30px;
    background: #ffffff;
    border-radius: 50px;
    filter: blur(3px);
    opacity: 0.4;

    box-shadow:
        40px -20px 0 10px #ffffff,
        90px -10px 0 0px #ffffff,
        10px -10px 0 5px #ffffff;
    animation: cloud-movement 8s ease-in-out infinite;
}

.c1 {
    top: 210px;
    left: 10%;
    transform: scale(0.8);
    animation: cloud-movement 12s ease-in-out infinite;
}
.c2 {
    top: 270px;
    left: 50%;
    transform: scale(1.2);
    animation: cloud-movement 15s ease-in-out infinite reverse;
}
.c3 {
    top: 350px;
    left: 20%;
    transform: scale(1);
    animation: cloud-movement 10s ease-in-out infinite;
    opacity: 0.6;
}

.c4 {
    top: 270px;
    left: 0%;
    transform: scale(0.6);
    opacity: 0.7;
    animation: cloud-movement 9s ease-in-out infinite;
}
.c5 {
    top: 370px;
    left: 40%;
    transform: scale(1.4);
    opacity: 0.5;
    animation: cloud-movement 18s ease-in-out infinite reverse;
}
.oculto {
  display: none !important;
}

.cloud-container.active .cloud {
    display: block;
}

@keyframes cloud-movement {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(15px) translateY(-5px); }
}