VWO flickering issues
Some users experience a brief white screen after the page loads when using VWO with CookieHub. This happens because VWO modifies the page opacity during its rendering process.
To fix this, add the following CSS to your website. It ensures VWO cannot change the body element’s opacity:
body {
opacity: 1 !important;
filter: none !important;
}