/**
 * FOB Frontend Styles
 *
 * Visibility classes for FOB/non-FOB accounts.
 */

/* Default state: hide FOB-specific content, show non-FOB content */
.show_if_fob {
    display: none !important;
}

.hide_if_fob {
    display: block !important;
}

/* FOB account state: show FOB-specific content, hide non-FOB content */
body.is-fob-account .show_if_fob {
    display: block !important;
}

body.is-fob-account .hide_if_fob {
    display: none !important;
}

