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/6c5a9fc8-ed59-4b1c-b5c7-f81a04c4f1e7/ep/b5e041e3-1704-478f-89a7-741f30f15ed8?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-b5e041e3-1704-478f-89a7-741f30f15ed8"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
