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/3525632b-71ac-4980-9bd8-d7c031aaebf7/ep/ddef2c32-6e7f-4d16-969c-b2af0e22d283?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-ddef2c32-6e7f-4d16-969c-b2af0e22d283"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
