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/9eacbf93-5535-4f3c-ba9a-cf70a9e6ab60/ep/95c1a8bc-540c-4fd1-9046-8ce2b8b0530e?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-95c1a8bc-540c-4fd1-9046-8ce2b8b0530e"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
