@media screen and (max-width: 640px) {
	
	.no-display {
		display: none;
	}
}

@media only screen and (max-width: 960px) {
   .mobile-hide { display: none !important; }
}

@media only screen and (min-width: 960px) {
   .desktop-hide { display: none !important; }
}