/**
Sticky header shadow
**/
.sticky-header-shadow {
    box-shadow: 0 8px 18px 0 rgba(0,0,0,.12)!important;
}

/**
Always Sticky header
*/

/*header.wp-block-template-part,*/
.sticky-header.sticky-header-active {
    position: fixed;
    top: 0px; /* Start off-screen */
    left: 0;
    width: 100%;
    transition: none;
    z-index: 10;
}

.sticky-phantom {
    transition: all 0.3s ease;
}

/**
Dynamic header
*/

/*header.wp-block-template-part,*/
.dynamic-header.sticky-header-active {
    position: fixed;
    top: 0px; /* Start off-screen */
    left: 0;
    width: 100%;
    transition: none;
    z-index: 10;
}