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/2b9e6b0d-8f77-4faa-b3cc-93ffde9a6f20/ep/020ce82f-040b-48aa-a6e2-75a859d7f1e2?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-020ce82f-040b-48aa-a6e2-75a859d7f1e2"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
