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/f17ca5a2-a535-4744-8d9c-395e233116fe?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-f17ca5a2-a535-4744-8d9c-395e233116fe"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
