/** Shopify CDN: Minification failed

Line 19:8 Unexpected "{"
Line 19:16 Expected ":"
Line 25:1 Unexpected "{"
Line 25:2 Expected identifier but found "%"
Line 27:1 Unexpected "{"
Line 27:2 Expected identifier but found "%"
Line 29:1 Unexpected "{"
Line 29:2 Expected identifier but found "%"
Line 33:10 Unexpected "{"
Line 33:18 Expected ":"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
#video-{{section.id}} .youtube {

	background-repeat: no-repeat; 
	background-position: center center; 
	background-size: cover;
	
	{% if section.settings.youtubeimgmobile %}
		background-image: url('{{ section.settings.youtubeimgmobile | img_url: '400x600', crop: 'center' }}');
	{% else %}
		background-image: url('{{ section.settings.youtubeimg | img_url: '400x600', crop: 'center' }}');
	{% endif %}
}
	
	@media screen and (min-width: 600px) {
		#video-{{section.id}} .youtube {
			
			{% if section.settings.youtubeimgmobile %}
			background-image: url('{{ section.settings.youtubeimgmobile | img_url: '700x700', crop: 'center' }}');
			{% else %}
			background-image: url('{{ section.settings.youtubeimg | img_url: '700x700', crop: 'center' }}');
			{% endif %}

		}
	}

	@media screen and (min-width: 900px) {
		#video-{{section.id}} .youtube {
		
			background-image: url('{{ section.settings.youtubeimg | img_url: '1000x562', crop: 'center' }}');

		}
	}


	@media screen and (min-width: 1200px) {
		#video-{{section.id}} .youtube {
			
			background-image: url('{{ section.settings.youtubeimg | img_url: '1280x720', crop: 'center' }}');

		}
	}