/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* All structural styles are in assets/css/theme.css */
/* Block styles are in oi-custom-block/blocks/  */

html {
    top: 0 !important;
    margin-top: 0 !important;
}
/* Disable OceanWP sticky conflict */
/*#site-header.fixed-scroll,
#site-header.sticky-header {
    position: static !important;*/
}

/* Sticky header */
#site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
}

/* Admin bar offset */
body.admin-bar #site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar #site-header {
        top: 46px;
    }
}