.verge-show-desktop { display:block; }
.verge-show-tablet { display:none; }
.verge-show-mobile { display:none; }

@media only screen 
  and (max-device-width: 749px) {
  .verge-show-desktop { display:none !important; }
  .verge-show-tablet { display:none !important; }
  .verge-show-mobile { display:block; }
}

@media only screen and (device-width: 768px) {
  /* For general iPad layouts */
  .verge-show-desktop { display:none !important; }
  .verge-show-tablet { display:block; }
  .verge-show-mobile { display:none !important; }
}


@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
  /* For portrait layouts only */
  .verge-show-desktop { display:none !important; }
  .verge-show-tablet { display:block; }
  .verge-show-mobile { display:none !important; }
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
  /* For landscape layouts only */
  .verge-show-desktop { display:none !important; }
  .verge-show-tablet { display:block; }
  .verge-show-mobile { display:none !important; }
}

@media only screen and (min-device-width: 539px) and (max-device-width: 721px) and (orientation:portrait) {
  /* For portrait layouts only */
  .verge-show-desktop { display:none !important; }
  .verge-show-tablet { display:block; }
  .verge-show-mobile { display:none !important; }
}

@media only screen and (min-device-width: 721px) and (max-device-width: 539px) and (orientation:landscape) {
  /* For landscape layouts only */
  .verge-show-desktop { display:none !important; }
  .verge-show-tablet { display:block; }
  .verge-show-mobile { display:none !important; }
}