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/33024130-54d4-4485-953e-41e8396f4001/ep/e870ed9b-b7e3-4e2c-af47-21fce84e74c4?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-e870ed9b-b7e3-4e2c-af47-21fce84e74c4"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
