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/f808e874-4607-45d0-899c-602b7fa67c71/ep/c07547fb-5f9e-4154-befa-ee04866c065d?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-c07547fb-5f9e-4154-befa-ee04866c065d"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
