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/a3ae1d66-3cba-492e-a2ab-436a68248af3/ep/fb4ea03b-b5c2-48d9-9c7b-178dcfb11c81?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-fb4ea03b-b5c2-48d9-9c7b-178dcfb11c81"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
