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/879ad4b2-1d10-4cc9-8787-291092fccc2f/ep/1ee57d25-b144-4e71-9391-4aa3e7c2f7d9?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-1ee57d25-b144-4e71-9391-4aa3e7c2f7d9"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
