Page elements are loaded offscreen in an .mx-incubator. But position: fixed elements don’t care about being offscreen, so they will already show on your page either way. I use the following css snippet to prevent that from happening:
    .mx-incubator {
        .yourbuttonclass {
            display: none;
        }
    }