/** Shopify CDN: Minification failed

Line 17:15 Expected identifier but found whitespace
Line 17:17 Unexpected "{"
Line 17:26 Expected ":"
Line 17:51 Expected ":"
Line 18:18 Expected identifier but found whitespace
Line 18:20 Unexpected "{"
Line 18:29 Expected ":"
Line 18:57 Expected ":"

**/


/* CSS from section stylesheet tags */
.quiz-banner-margin {
    margin-top: {{ section.settings.margin_top }}px;
    margin-bottom: {{ section.settings.margin_bottom }}px;
}

.quiz-banner-section .desktop-banner {
    display: block;
    width: 100%;
    height: auto;
}

.quiz-banner-section .mobile-banner {
    display: none;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .quiz-banner-section .desktop-banner {
        display: none;
    }
    
    .quiz-banner-section .mobile-banner {
        display: block;
    }
}