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/df0a6c9a-7e3d-4884-a812-0063e19fa492/ep/47ae7555-9a6e-483f-900f-84d913f248fa?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-47ae7555-9a6e-483f-900f-84d913f248fa"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
