/* Media Query for Mobile Devices */
@media (max-width: 480px) {
  #vir-st-container.hideMobile {
    display: none !important;
  }
}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
  #vir-st-container.hideMobile {
    display: none !important;
  }
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {
  #vir-st-container.hideTablet {
    display: none !important;
  }
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
  #vir-st-container.hideDesktop {
    display: none !important;
  }
}

/* Media Query for Large screens */
@media (min-width: 1281px) {
  #vir-st-container.hideDesktop {
    display: none !important;
  }
}
