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/8a271a18-93ce-4f09-86c4-a3b4b0b583e5/ep/a788839f-9c00-4d52-b57d-b85216efadbd?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-a788839f-9c00-4d52-b57d-b85216efadbd"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
