/*
 * ============================================================
 * NOYTRIX — GUEST SIDEBAR V72
 *
 * Guest:
 *   My activity = hidden
 *
 * Signed in:
 *   My activity = visible
 *
 * Check screen / analytics screen are NOT deleted.
 * ============================================================
 */


/* ============================================================
   HIDE ACTIVITY ONLY WHEN JS MARKS USER AS GUEST
   ============================================================ */

body.nx-guest-v72
.nav-item[data-screen="analytics"] {

    display: none !important;

    width: 0 !important;
    height: 0 !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: 0 !important;
    max-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    overflow: hidden !important;

    visibility: hidden !important;

    pointer-events: none !important;
}


/* ============================================================
   SIGNED-IN USER
   ============================================================ */

body.nx-user-v72
.nav-item[data-screen="analytics"] {

    display: flex !important;

    width: auto !important;
    height: auto !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: none !important;
    max-height: none !important;

    visibility: visible !important;

    pointer-events: auto !important;
}


/* ============================================================
   CHECK TAB REMAINS HIDDEN FROM V71
   ============================================================ */

.nav-item[data-screen="check"] {

    display: none !important;
}
