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/b0d9001c-cd52-44cc-9e90-1a7130c821e5/ep/33199556-150d-4286-a80a-cf88ba6e47de?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-33199556-150d-4286-a80a-cf88ba6e47de"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
