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/33199c07-ef40-4a5a-9735-af69e28af621/ep/95f05719-1438-4e3b-ba66-4a61dbc62c4d?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-95f05719-1438-4e3b-ba66-4a61dbc62c4d"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
