<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#wpadminbar .siteimprove-trigger-contentcheck a svg {
  max-height: 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  padding-right: 35px;
}
#wpadminbar .quicklinks&gt;ul&gt;li.siteimprove-trigger-contentcheck&gt;a {
  padding-left: 30px;
}
@keyframes highlight-blink {
  50% {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
  }
}

.si-highlight {
	background-color: rgba(221, 10, 27, 0.2);
	border: 2px solid #DD0A1B;
	animation-name: highlight-blink;
	animation-duration: 0.4s;
	animation-iteration-count: 4;
	animation-timing-function: ease;
}

body.si-full-highlight {
  position: relative;
}

/* For highlighting of the body, we don't want to wrap an element around the body itself, 
as that will cause a re-render of the page of our CMS Plugin, body has to be the first element as well
So instead we add a class to body, and in it we got a pseudo element that is ontop of the body's children */
body.si-full-highlight:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 9999;
  background-color: rgba(221, 10, 27, 0.2);
  border: 2px solid #DD0A1B;
  animation-name: highlight-blink;
  animation-duration: 0.4s;
  animation-iteration-count: 4;
  animation-timing-function: ease;
}

.si-overlay {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:rgba(0, 0, 0, 0.55);
  background: url(data:;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAABl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuNUmK/OAAAAATSURBVBhXY2RgYNgHxGAAYuwDAA78AjwwRoQYAAAAAElFTkSuQmCC) repeat scroll transparent\9; /* ie fallback png background image */
  z-index:100000;
  color:white;
}
</pre></body></html>