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/0c99a094-45d5-44c6-9e10-f17b42d218ac/ep/dc46e443-5075-4bab-baf2-04b6d05f28ae?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-dc46e443-5075-4bab-baf2-04b6d05f28ae"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
