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/d782ac5f-30ee-4cc9-85d8-d75a95d3d095/ep/d3e1fd63-1372-4859-8fc7-136a40f3ef6b?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-d3e1fd63-1372-4859-8fc7-136a40f3ef6b"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
