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/f5f44931-0cad-4f0b-93d1-cca1b3db62a7/ep/aeb38081-67d6-4bc0-a6a4-21fbcb698928?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-aeb38081-67d6-4bc0-a6a4-21fbcb698928"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
