/* Temporary stylesheet to override inline opacity/visibility and reveal content.
   Place BEFORE itsnc.* scripts or include in <head>. Uses !important to override inline styles.
   NOTE: this is a temporary debugging stylesheet and may affect layout. */
img, picture, video, svg, source {
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
}

[style*="opacity: 0"], [style*="opacity:0"] {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Reveal elements commonly used as wrappers */
.image-wrapper,
.full-section-image,
.fit-cover,
.wf-section,
.section,
.hero,
.hidden,
.invisible {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transition: none !important;
}

/* Try to reveal background images */
[style*="background-image"] {
  visibility: visible !important;
  background-repeat: no-repeat !important;
}