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/f9ebd595-f2c2-489f-9a52-7e1bcb952fbf/ep/dedc7d49-3b38-4e98-b201-ada100e064d4?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-dedc7d49-3b38-4e98-b201-ada100e064d4"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
