/* Sticky Header scroll-direction behaviors */
.scroll-header-sticky-1c404e48 {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none !important;
}

body.admin-bar .scroll-header-sticky-1c404e48 {
    top: var(--wp-admin--admin-bar--height, 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .scroll-header-sticky-1c404e48 {
        top: 46px;
    }
}

/* Hide when scrolling down */
.scroll-header-sticky-1c404e48.header-scrolled-down-1c404e48 {
    transform: translateY(-110%) !important;
    box-shadow: none !important;
}

/* Slide back down and stay visible when scrolling up */
.scroll-header-sticky-1c404e48.header-scrolled-up-1c404e48 {
    transform: translateY(0) !important;
    box-shadow: none !important;
}
