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/f23075c7-7436-4bad-8b9f-6b4962683869/ep/f7d8ed4c-0b17-45ce-b1e4-376d9fd5509f?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-f7d8ed4c-0b17-45ce-b1e4-376d9fd5509f"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
