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/bac82dd5-10b6-4398-903d-54a92ad476fa/ep/60344af5-c6c2-42c0-b28e-4cfe507a86fc?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-60344af5-c6c2-42c0-b28e-4cfe507a86fc"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
