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/65ceded7-b334-4c66-8f9d-0ba71a57c11d/ep/b656d28c-6771-48e2-8fe6-cdb5820f95ae?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-b656d28c-6771-48e2-8fe6-cdb5820f95ae"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
