html.page-volunteer .weather-backdrop, html.page-index .weather-backdrop, html.page-farm-team .weather-backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}.webcam-backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}.webcam-backdrop::after {
    content: "";
    background: rgb(0 0 0 / 20%);
    position: fixed;
    inset: 0;
    z-index: 2;
    backdrop-filter: saturate(1.2) blur(calc(var(--1px) * 10));
}.webcam-backdrop iframe, .webcam-backdrop img, .webcam-backdrop video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 60%;
    transform: scale(1.2);
    transform-origin: 50% 60%;
    max-width: none;
    max-height: none;
    border: 0;
    border-radius: 0;
    margin: 0;
}.weather-backdrop:after {
    content: "";
    background: rgb(0 0 0 / 25%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}html.page-volunteer .sun, html.page-volunteer .moon, html.page-index .sun, html.page-index .moon, html.page-farm-team .sun, html.page-farm-team .moon {
    position: absolute;
    z-index: 2;
    left: 50%;
    width: calc(var(--1px) * 80);
    height: calc(var(--1px) * 80);
    border-radius: 50%;
    transform-origin: calc(var(--1px) * 0)
        var(--orbit-radius, calc(var(--1px) * 220));
    transition: none !important;
    transform: rotate(-90deg);
}html.page-volunteer .sun, html.page-index .sun, html.page-farm-team .sun {
    top: 6vh;
    background: #fceabb;
    box-shadow: 0px 0px 40px 15px #fceabb;
    opacity: 1;
}html.page-volunteer .moon, html.page-index .moon, html.page-farm-team .moon {
    top: 6vh;
    background: url("/volunteer-weather/moon.png");
    background-size: contain;
    box-shadow: 0px 0px 20px 5px #ffffff;
    opacity: 0;
}html.page-volunteer .background, html.page-index .background, html.page-farm-team .background {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(0deg, #fefefe 0%, #00a4e4 74%);
    z-index: 1;
    transition: none !important;
}html.page-volunteer .backgroundNight, html.page-index .backgroundNight, html.page-farm-team .backgroundNight {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(0deg, #4c5177 0%, #051428 74%);
    z-index: 0;
    transition: none !important;
}html.page-volunteer #cloud, html.page-index #cloud, html.page-farm-team #cloud {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    filter: brightness(200%) drop-shadow(0 0 10px rgba(255, 255, 255, 1));
    top: 0;
    transition: none !important;
}html.page-volunteer #snow, html.page-index #snow, html.page-farm-team #snow {
    opacity: 0;
    top: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2;
    width: 100%;
    height: 100%;
    transition: none !important;
}html.page-volunteer #rain, html.page-index #rain, html.page-farm-team #rain {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
    transition: none !important;
}html.page-volunteer .drop, html.page-index .drop, html.page-farm-team .drop {
    background: -webkit-gradient(
        linear,
        0% 0%,
        0% 100%,
        to(rgba(255, 255, 255, 0.6)),
        from(rgba(255, 255, 255, 0))
    );
    background: -moz-linear-gradient(
        top,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    width: calc(var(--1px) * 1);
    height: calc(var(--1px) * 30);
    position: absolute;
    bottom: calc(var(--1px) * 0);
    -webkit-animation: fall 0.3s linear infinite;
    -moz-animation: fall 0.3s linear infinite;
}@-webkit-keyframes fall {
    to {
        margin-top: calc(var(--1px) * 500);
    }
}@-moz-keyframes fall {
    to {
        margin-top: calc(var(--1px) * 500);
    }
}html.page-volunteer #lightning, html.page-index #lightning, html.page-farm-team #lightning {
    position: absolute;
    top: calc(var(--1px) * -200);
    left: 0;
    width: 100%;
    height: 150%;
    z-index: 3;
    background: radial-gradient(
        closest-side,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0.5)
    );
    opacity: 0;
    pointer-events: none;
    animation: lightningFlash var(--lightning-duration) linear infinite;
}@keyframes lightningFlash {
    0%,
    100% {
        opacity: 0;
    }
    24% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    26% {
        opacity: 0;
    }
    28% {
        opacity: 1;
    }
    29% {
        opacity: 0;
    }
}
