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/dfa6fa1e-cb46-4604-8070-da46968add21/ep/20f05472-8b11-4f26-9eff-a89910661b52?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-20f05472-8b11-4f26-9eff-a89910661b52"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
