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/ef7a7534-9c7c-4ff3-a12c-7ff1edcb8c61/ep/c8930f4c-b4b2-487f-a70b-6c14cd28d936?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-c8930f4c-b4b2-487f-a70b-6c14cd28d936"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
