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/b2dd88ff-110f-4967-99b3-8213a471c283/ep/e26cb00f-4c99-46e8-8b3c-83ba15ebdd3d?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-e26cb00f-4c99-46e8-8b3c-83ba15ebdd3d"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
