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/11adb83b-a981-486f-8c10-2a9f6ce5af7a/ep/311865a1-870b-4763-b849-c7c6a4b50a5e?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-311865a1-870b-4763-b849-c7c6a4b50a5e"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
