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/d2af9498-634b-4043-bf77-4fb54699252d/ep/da331013-f1b1-46f8-a343-a00e6002f54c?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-da331013-f1b1-46f8-a343-a00e6002f54c"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
