@media (min-width: 601px) {
	#mobile {
		display:none !important;
	}
	
}

/************************************************************************************
smaller than 480
*************************************************************************************/
@media (min-width: 330px) and (max-width: 600px) {
	#container {
		display:none !important;
	}
}

/************************************************************************************
smaller than 320
*************************************************************************************/
@media screen and (max-width: 329px) {
	#container {
		display:none !important;
	}
}