/* Print CSS ... linked-to from site-root */


/* Common classes */
.no-print, .no-print * {
    display: none !important;
}

/* Header/nav controls that should never appear in print output */
.sticky-search-bar,
.sticky-search-bar-spacer,
.site-navbar-wrap,
.site-mobile-menu,
.navbar-mobile-logo,
.mobile-search-toggle,
.site-menu-toggle,
.nav-contact-icon-wrap,
.nav-contact-icon,
.nav-contact-mobile,
.icon-menu {
    display: none !important;
}

/* Hyperlinks */
a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: #000000;
}

    a, a:visited, a:focus, a:active {
        text-decoration: underline;
    }

        a[href]:after {
            content: ' (' attr(href) ')';
        }

        /* Prevent phone numbers from being injected for tel: links in print */
        a[href^="tel:"]:after {
            content: '' !important;
            display: none !important;
        }

