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/950b2c64-81ff-4c02-bfb5-2e1e689b8ac5/ep/dfcf94d7-936b-4d96-82d7-dc207e33e25d?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-dfcf94d7-936b-4d96-82d7-dc207e33e25d"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
