/*
XS: Extra small devices Phones (<768px)
SM: Small devices Tablets (?768px)
MD: Medium devices Desktops (?992px)
LG: Large devices Desktops (?1200px)
*/

/* XS */
@media screen and (max-width: 767px){ 

	#moduleModal .modal-dialog{
		margin-left:0;
	}
	
	#photoPerformance {
		background-position: 35% 0%;
	}
}

/* SM */
@media screen and (min-width: 768px) and (max-width: 991px) { 
	#photoPerformance {
		background-position: 35% 0%;
	}

}

/* MD */
@media screen and (min-width: 992px) and (max-width: 1199px) { 

}

/* LG */
@media screen and (min-width: 1200px) { 

}