/* Smartphone Portrait and Landscape - Setting 0 */
@media only screen and (min-device-width : 0px) and (max-device-width : 480px){
  .mobileShow0 { display: block; }  /* don't show it on small screen */
}
@media only screen and (min-device-width: 481px) {
  .mobileShow0 { display: none; } /* show it elsewhere */
}

/* Smartphone Portrait and Landscape - Setting 1 */
@media only screen and (min-device-width : 0px) and (max-device-width : 480px){
  .mobileShow1 { display: none; }  /* don't show it on small screen */
}
@media only screen and (min-device-width: 481px) {
  .mobileShow1 { display: block; } /* show it elsewhere */
}

/* Smartphone Portrait and Landscape - Setting 2 */
@media only screen and (min-device-width: 0px) and (max-device-width: 480px) {
  .mobileShow2 { display:block; height:300px; overflow:hidden; }  /* show it on small screens */
}
@media only screen and (min-device-width: 481px) {
  .mobileShow2 { display:block; height:260px; overflow:hidden; }  /* show it elsewhere */
}

/* Smartphone Portrait and Landscape - Setting 3 */
@media only screen and (min-device-width: 0px) and (max-device-width: 480px) {
  .mobileShow3 { display:block; height:100%; }
}
@media only screen and (min-device-width: 481px) {
  .mobileShow3 {  }  /* show it elsewhere */
}

/* Smartphone Portrait and Landscape - Setting 4 */
/* changed from 1200px to 1366px */
/* @media only screen and (min-device-width : 0px) and (max-device-width : 1366px){*/
/*  .mobileShow4 { display: none; } */  /* don't show it on small screen */
/*}
@media only screen and (min-device-width: 1367px) {
  .mobileShow4 { display: block; } */ /* show it elsewhere */
/* } */

/* Smartphone Portrait and Landscape - Setting 5 */
@media only screen and (min-device-width : 0px) and (max-device-width : 1200px){
  .mobileShow5 { display: block; }  /* don't show it on small screen */
}
@media only screen and (min-device-width: 1201px) {
  .mobileShow5 { display: none; } /* show it elsewhere */
}

