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/e7a6ffa5-3245-4ad5-9914-c7b7043657e9/ep/9f97b6df-3d1c-4285-9252-65a948d8cf72?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-9f97b6df-3d1c-4285-9252-65a948d8cf72"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
