/* Ranking groups exposed on the home page. */
body.home:not(.elementor-editor-active) .hidden-brasil,
body.home:not(.elementor-editor-active) .hidden-nikkey {
    display: none !important;
}

body.home .hidden-brasil.home-toggle-is-visible,
body.home .hidden-nikkey.home-toggle-is-visible {
    display: block !important;
    animation: atletismo-rankings-fade-in 180ms ease-out;
}

body.home .toggle-brasil.home-toggle-is-hidden,
body.home .toggle-nikkey.home-toggle-is-hidden {
    display: none !important;
}

@keyframes atletismo-rankings-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    body.home .hidden-brasil.home-toggle-is-visible,
    body.home .hidden-nikkey.home-toggle-is-visible {
        animation: none;
    }
}
