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/0f0ec76d-9d59-4194-805a-1a2817921f8c/ep/b7239058-d6de-4467-8fcc-1bd5d56fc210?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-b7239058-d6de-4467-8fcc-1bd5d56fc210"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
