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/48b29a26-c877-4902-9a38-5450947047c4/ep/d87bbbcc-1a1f-4161-a792-d12e159794e8?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-d87bbbcc-1a1f-4161-a792-d12e159794e8"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
