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/b931d246-107e-4928-96de-7ca2da75943a/ep/aea6e82e-7e6b-4d14-a0e2-8304c5d1bde2?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-aea6e82e-7e6b-4d14-a0e2-8304c5d1bde2"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
