/* Included only by public pages; the web player's shared styles stay unchanged. */
@keyframes cloudy-public-fade-in { from { opacity:0; } to { opacity:1; } }
/* Reveal the ready page without delaying navigation or replacing browser history. */
html[data-cloudy-public-transitions] body.cloudy-page-is-ready {
    animation: cloudy-public-fade-in 320ms ease;
}
html[data-cloudy-public-transitions] #cloudy-page-loader {
    transition: opacity 350ms ease, visibility 0s linear 0s !important;
}
html[data-cloudy-public-transitions] #cloudy-page-loader.cloudy-loader-hidden {
    display: flex !important;
    transition: opacity 350ms ease, visibility 0s linear 350ms !important;
}
@media (prefers-reduced-motion: reduce) {
    html[data-cloudy-public-transitions] body.cloudy-page-is-ready { animation:none !important; }
    html[data-cloudy-public-transitions] #cloudy-page-loader,
    html[data-cloudy-public-transitions] #cloudy-page-loader.cloudy-loader-hidden { transition:none !important; }
}
