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/2f7eba77-c94a-45ef-84fd-dc3876932bdc?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-2f7eba77-c94a-45ef-84fd-dc3876932bdc"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
