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/1846a5ba-b6e8-4d9c-bcdd-36336418660f/ep/6da2a443-c0b4-4344-a7d6-d4b46ec8e960?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-6da2a443-c0b4-4344-a7d6-d4b46ec8e960"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
