/* Media Query for Touch Devices */
@media (hover:none), (hover:on-demand) {

}
/* Media Query for Mobile Devices */
@media (max-width:480px) {
	.not-tablet,
	.not-phone {
		display:none !important;
	}
	.is-phone {
		display:block !important;
	}
}
/* Media Query for low resolution Tablets, Ipads */
@media (min-width:481px) and (max-width:767px) {
	.is-phone,
	.not-tablet {
		display:none !important;
	}
	.not-phone,
	.is-tablet {
		display:block !important;
	}
}
/* Media Query for Tablets Ipads portrait mode */
@media (min-width:768px) and (max-width:1024px){
	.is-phone,
	.not-tablet {
		display:none !important;
	}
	.not-phone,
	.is-tablet {
		display:block !important;
	}
} 
/* Media Query for Laptops and Desktops */
@media (min-width:1025px) and (max-width:1280px){
	.is-phone,
	.not-desktop {
		display:none !important;
	}
	.not-phone,
	.is-desktop {
		display:block !important;
	}
}
/* Media Query for Large screens */
@media (min-width:1281px) {
	.is-phone,
	.not-desktop {
		display:none !important;
	}
	.not-phone,
	.is-desktop {
		display:block !important;
	}
}