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/7296fb3f-2794-4eaa-9411-96b6d5f87561/ep/5b926ef5-fcc0-4162-b8e9-60ccacd5c9ad?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-5b926ef5-fcc0-4162-b8e9-60ccacd5c9ad"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
