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/8f95124d-e448-470b-a570-41b0153c25c2/ep/55bbe74c-4c3e-4db0-8318-165cd3819e8b?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-55bbe74c-4c3e-4db0-8318-165cd3819e8b"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
