
// WS-88531 
(function() {
    var isLpStyles = !!document.querySelector('.lp-styles') || document.querySelector('html').className.indexOf('lp-forms') !== -1;
    if (!isLpStyles) { return; }
    
    var isInstagramWebView = window.navigator && window.navigator.userAgent.indexOf('Instagram') !== -1;
    var isFBWebView = window.navigator && (
        window.navigator.userAgent.indexOf('FBAN') !== -1 ||
        window.navigator.userAgent.indexOf('FBAV') !== -1 ||
        window.navigator.userAgent.indexOf('FB4A') !== -1 ||
        window.navigator.userAgent.indexOf('FB_IAB') !== -1
    );
    
    if (isInstagramWebView || isFBWebView) {
      var isFirstLoad = window.sessionStorage && !window.sessionStorage.getItem('firstLoad');
      if (isFirstLoad) {
          sessionStorage.setItem('firstLoad', true);
          window.location.reload();  
      }
    }
})();

document.addEventListener('DOMContentLoaded', function() {
    if (Element.prototype.closest) {
        // WS-89127
        if (document.querySelector('.landings-layout .logo__text')) {
            document.querySelector('.landings-layout .logo__text').closest('.logo').style.display = "inline-block";
        }
        
    }
        
    if (document.location.pathname == '/') {
        document.documentElement.style.overflow = "inherit";
        document.body.style.overflow = "inherit";
    }
    
     //WS-90738
    var linksElement = document.querySelector('[data-home-product-hot-links]');
    if(linksElement){
        var links = linksElement.querySelectorAll('a');
        for(var i = 0; i < links.length; i++){
            links[i].target = '_blank';
        }
    }
});

