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/f7d5434f-afe5-4a22-9341-b79d11c960e3/ep/a1c37181-f949-4069-8cfc-d8071a54d67d?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-a1c37181-f949-4069-8cfc-d8071a54d67d"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
