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/144c8007-0075-4f50-b077-2b66f1490840/ep/b2e387c2-bd09-4bfc-8497-c17db4ef1975?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-b2e387c2-bd09-4bfc-8497-c17db4ef1975"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
