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/22735be4-0b21-4868-a23e-6521dff83435/ep/98360154-4c62-47aa-89ad-d7f89be1f6cb?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-98360154-4c62-47aa-89ad-d7f89be1f6cb"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
