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/c46ae915-6716-4648-af07-dfefd11c70e2/ep/bd22c3b6-f449-4b5b-b99d-d061ecbaf140?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-bd22c3b6-f449-4b5b-b99d-d061ecbaf140"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
