/** Shopify CDN: Minification failed

Line 14:6 Unexpected "#"

**/
/* 
  FULL-SCREEN QUIZ POPUP IFRAME
  --------------------------------
  This CSS forces the targeted iframe to be full-screen
  and hides any scrolling.
  
  (Adjust the selector below if your iframe uses a different ID or class.)
*/
iframe#.popup_iframe {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  border: none !important;
  overflow: hidden !important;
  z-index: 9999 !important;
}

/* 
  If you prefer to target by a class (for example, if your iframe has a class “.popup_iframe”), use:
  
  iframe.popup_iframe {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    border: none !important;
    overflow: hidden !important;
    z-index: 9999 !important;
  }
*/
