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/35db33da-903b-4fe2-9156-210dabad8c44/ep/03f0a9bf-b29c-4d5d-8b0a-95ac2383a309?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-03f0a9bf-b29c-4d5d-8b0a-95ac2383a309"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
