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/c321f686-e5b5-4aa6-a69d-3dbb13f7ff38/ep/bb6b28c7-9656-44f8-b3c2-2e3bfe7cc353?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-bb6b28c7-9656-44f8-b3c2-2e3bfe7cc353"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
