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/f605c724-fc23-4179-9daf-32201fa9cfda/ep/25e5acd1-9d84-4d4b-92d2-f54b6536acac?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-25e5acd1-9d84-4d4b-92d2-f54b6536acac"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
