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/c46fddc4-67bf-4766-a41e-191059998aaf/ep/ad2e6ab8-9a1f-4091-9f7b-6d3389a8ff1f?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-ad2e6ab8-9a1f-4091-9f7b-6d3389a8ff1f"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
