::view-transition-old(root),
::view-transition-new(root) {
    animation: none !important;
}

@media (prefers-reduced-motion: no-preference) {
    body:not(.auth-page) .main-area {
        animation: arranjo-main-fade 160ms ease-out both;
    }

    .auth-page .main-card {
        animation: arranjo-main-fade 160ms ease-out both;
    }

    .sidebar,
    .sidebar *,
    .nav-menu,
    .nav-menu *,
    .nav-item,
    .nav-item * {
        animation: none !important;
        transition: none !important;
    }
}

@keyframes arranjo-main-fade {
    from {
        opacity: .68;
    }

    to {
        opacity: 1;
    }
}
@-moz-document url-prefix() {
    @media (prefers-reduced-motion: no-preference) {
        body:not(.auth-page) .main-area,
        .auth-page .main-card {
            animation: none !important;
        }
    }
}