	
/*  Smartphones (Landscape)  */
@media screen and (max-width: 767px) {
#testtest {
	width: 100%;
	height: 300px;
	background-color:#666;
	}	
	
.mobiloff {
	display: none;
	}

.mobilon {
	visibility: visible;
	}	
}

/*  Smartphones (Portrait)  */
@media screen and (max-device-width: 480px) {
#testtest {
	width: 100%;
	height: 300px;
	background-color:#000;
	}		
	
.mobiloff {
	display: none;
	}

.mobilon {
	visibility: visible;
	}			
}

/* Desktop zu kleines Fenster */

@media (min-width: 768px) {
#testtest {
	width: 100%;
	height: 400px;
	background-color:#FF0;
	}	
}

/*  iPads(Portrait)*/ 

@media only screen and
(min-device-width:768px) and
(max-device-width:1024px) and
(orientation:portrait){
	#testtest {
	width: 100%;
	height: 400px;
	background-color: #C00;
	}	
 }


/* iPads (Landscape) */

@media only screen and
(min-device-width:768px) and
(max-device-width:1024px) and
(orientation: landscape){
	#testtest {
	width: 100%;
	height: 400px;
	background-color: #3C0;
	}	
.mobilon {
	visibility: hidden;
	display: none !important;
	}		
 }
 
/* Desktop kleiner */ 
 @media (min-width:768px) {
.mobilon {
	visibility: hidden;
	display: none !important;
	}		
 }

/* Desktop groß */
@media (min-width: 1025px) {
.mobilon {
	visibility: hidden;
	display: none !important;	
	}	
		
}




/* 
 Desktop & Laptops
@media only screen and (min-width: 1224px){... }

Große Bildschirme
@media only screen and (min-width:1824px){... }

@media (min-width: 1200px) {
	
}

@media  only screen and (-webkit-min-device-pixel-ratio: 1.5),
    only screen and (   min--moz-device-pixel-ratio: 1.5),
    only screen and (     -o-min-device-pixel-ratio: 3/2),
    only screen and (        min-device-pixel-ratio: 1.5),
    only screen and (min-resolution: 192dpi) {

	}
	
*/

