/* This file is reserved for overriding and extending the template styles. */

/* Remove blocking iframe overlays */
iframe[style*="z-index: 2147483647"],
iframe[style*="z-index:2147483647"] {
  display: none !important;
}

/* Alternative: Hide any iframe with very high z-index */
iframe[style*="z-index: 214748364"] {
  display: none !important;
}

/* Hide any fixed positioned iframe that covers the entire viewport */
iframe[style*="position: fixed"][style*="width: 100%"][style*="height: 100%"] {
  display: none !important;
}