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/323ee216-9adb-4aa9-bc0c-6f005d4e8f9f/ep/af63a0e4-2456-4b3d-a9f7-5890f848d65c?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-af63a0e4-2456-4b3d-a9f7-5890f848d65c"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
