/* tighten only nested list items */
body .content li ul, body .content li ol {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}
/* Milk adds decorative Animate.css effects to the page header, navigation and
 * body on every page load. Disable those effects for everyone. The explicit
 * opacity/visibility/transform values make the final static state unambiguous.
 */
.animated {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: none !important;
    transform: none !important;
}

/* The unread-icon pulse remains enabled normally, but is removed when the
 * visitor explicitly requests reduced motion.
 */
@media (prefers-reduced-motion: reduce) {
    .global_unread::before,
    .global_unread_mine::before,
    .global_unread_locked::before,
    .global_unread_locked_mine::before,
    .announce_unread::before,
    .announce_unread_mine::before,
    .announce_unread_locked::before,
    .announce_unread_locked_mine::before,
    .forum_unread::before,
    .forum_unread_subforum::before,
    .forum_unread_locked::before,
    .sticky_unread::before,
    .sticky_unread_mine::before,
    .sticky_unread_locked::before,
    .sticky_unread_locked_mine::before,
    .pm_unread::before,
    .topic_unread::before,
    .topic_unread_mine::before,
    .topic_unread_hot::before,
    .topic_unread_hot_mine::before,
    .topic_unread_locked::before,
    .topic_unread_locked_mine::before {
        animation: none !important;
    }
}
