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/31a9be23-4340-4f75-b93b-fdffb335f9e5/ep/de15d72e-c801-4f87-abd5-7829b9cdd773?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-de15d72e-c801-4f87-abd5-7829b9cdd773"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
