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/8a271a18-93ce-4f09-86c4-a3b4b0b583e5/ep/e45b3638-2daf-476f-99cf-7a2b239d719a?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-e45b3638-2daf-476f-99cf-7a2b239d719a"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
