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/1b321af9-8761-4781-bed9-7f31c863a195/ep/b6a87463-bd6f-4b06-b5f6-dfbaff4073fb?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-b6a87463-bd6f-4b06-b5f6-dfbaff4073fb"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
