/* Hides the menu item with the class 'hide-when-logged-out'
   when the body tag DOES NOT contain the 'logged-in' class (i.e., when logged out). */
   body:not(.logged-in) .hide-when-logged-out {
    display: none !important;
}