function redcircleIframe() {
    let iframe = document && document.createElement && document.createElement("iframe");
    iframe.setAttribute("style","border: none;max-width: 100%;width:1px;min-width:100%;");
    iframe.setAttribute("height", 170);
    iframe.setAttribute("scrolling", "no");
    iframe.setAttribute("src", "https://redcircle.com/embedded-player/sh/f23075c7-7436-4bad-8b9f-6b4962683869/ep/f5c1f9bb-3b1d-47d9-8ceb-6cce96c8cd98?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-f5c1f9bb-3b1d-47d9-8ceb-6cce96c8cd98"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
