/* Logged in & out conditions */

/* Hides elements with the class 'hide-logged-in' when the user is logged in */
.logged-in-condition .hide-logged-in {
    display: none !important;
}

/* Hides elements with the class 'hide-logged-out' when the user is logged out */
.logged-out-condition .hide-logged-out {
    display: none !important;
}
