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/73f2ae77-2bb5-4c40-ac98-6f567f210900/ep/290f17bb-b6c6-4fc0-8254-02c0b74b7239?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-290f17bb-b6c6-4fc0-8254-02c0b74b7239"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
