@media (max-width:991px){

    .shopex-mobile-header{

        width:100%;

        background:#fff;

        transition:all .30s ease;

        z-index:99990;

    }

    .shopex-mobile-header.is-sticky{

        position:fixed;

        top:0;

        left:0;

        right:0;

        box-shadow:0 4px 18px rgba(0,0,0,.08);

        animation:shopexSticky .25s ease;

    }

    body.shopex-header-space{

        padding-top:72px;

    }

}

@keyframes shopexSticky{

    from{

        transform:translateY(-100%);

    }

    to{

        transform:translateY(0);

    }

}