(function(w, d) {
    const container = d.getElementById('xplorie-widget-container');

    const iframe = d.createElement('iframe');
    iframe.src = 'https://app.xplorie.com/widgets/334';
    iframe.id = 'xpl-widget-iframe';
    iframe.style.width = '100%';
    iframe.style.border = 'none';
    iframe.scrolling = 'no';

container.appendChild(iframe);

    w.addEventListener('message', (event) => {
        if (event.data.type === 'xplWidgetResize') {
            iframe.style.height = event.data.height + 'px';
        }
    });
})(window, document);
