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/21d1e9b5-8b02-4fac-9ac5-4bf4eb9a2b8e/ep/de421df0-1e04-417c-aa76-0d927e569623?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-de421df0-1e04-417c-aa76-0d927e569623"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
