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/5f3df491-b095-465c-9d23-791b4fa9f7eb/ep/c6e26c08-ea77-48e3-95e8-de644650f00b?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-c6e26c08-ea77-48e3-95e8-de644650f00b"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
