IE FIX:
Add an empty container inside the container that has the “Blurred Results” in it. That container should have the ieContainer class on it, and you should name it as well, so you can find it later in the List.
Add this CSS to the page or creative level CSS:
.ieContainer {position: absolute; width: 100%; height: 100%;top: 0; left: 0; background: rgba(0,0,0,0.9);z-index: 10;display: none;}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.ieContainer {display: block !important;}
}