@mixin mobile-device-only() {
  @media screen and (max-width: 844px) 
  and (-webkit-min-device-pixel-ratio: 2),
  screen and (max-width: 844px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
    @content;
  }
}