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/b0d9001c-cd52-44cc-9e90-1a7130c821e5/ep/b3542fcc-103a-49d5-82b6-4f0d89d69466?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-b3542fcc-103a-49d5-82b6-4f0d89d69466"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
