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/f45c583a-4c17-417e-8324-52149e78be91/ep/48c9da48-0bf0-4e07-9086-c92ebbdbf4c0?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-48c9da48-0bf0-4e07-9086-c92ebbdbf4c0"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
