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/9eacbf93-5535-4f3c-ba9a-cf70a9e6ab60/ep/63ef9b01-afa4-43a5-8bb3-e72a09bf5f8e?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-63ef9b01-afa4-43a5-8bb3-e72a09bf5f8e"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
