/* 
 * Theme Overrides
 * Use this file to override default theme styles and inline styles.
 */

/* Override blue underline on headings */
h1:before,
.h1:before,
h2:before,
.h2:before,
h3:before,
.h3:before,
h4:before,
.h4:before,
h5:before,
.h5:before,
h6:before,
.h6:before,
.widget .widget_title:before {
    display: none !important;
    border: none !important;
    content: none !important;
    margin-bottom: 0 !important;
}

/* Make top bar sticky */

/* Fix stacking context - remove wrapper z-index that was blocking proper layering */
#wrapper {
    z-index: auto !important;
}

/* Fix stacking context - header must have high z-index for children to appear above other elements */
#header {
    z-index: 100000 !important;
}

.top_bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 100001 !important;
}

/* Add padding to body to prevent content from being hidden under the fixed top bar */
body {
    padding-top: 52px;
}