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/d3171865-8da3-4a4c-9e42-6d61d7c790e7/ep/60c15727-584e-459c-a8cc-a1cae9b00d83?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-60c15727-584e-459c-a8cc-a1cae9b00d83"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
