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/ef41bfad-831e-4581-9c3f-4e9fa7d927dc/ep/305621e8-3da4-43c8-b2e6-1fdbfcd97d67?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-305621e8-3da4-43c8-b2e6-1fdbfcd97d67"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
