/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .lazy-wrapper{
 	max-width:100%;
 	line-height:0;
 	/*
 	position:absolute;
 	left:0;
 	top:0;
 	width:100%;
 	height:100%;
 	overflow:hidden;
 	*/
 	
 }
	  .lazy-wrapper.type-bg{
	  	height:100%;
	 	left:0;
	 	top:0;
	 	overflow:hidden;
	 	background-size: cover;
	 }

 .lazy-img{
 	background-position:center center;
 	background-repeat: no-repeat;
 	background-size: cover;
 	opacity:1;
 	transition:all 1s ease;
 	height:100%;
 }
	 .lazy-img.hidden{
	 	opacity:0;
	 }	 

	.lazy-img img{
		height:auto;
		width:auto;
	}