/* Hide sticky call bar on desktop, show on mobile only */
@media (min-width: 768px) {
  div[style*="position:fixed;bottom:0"] {
    display: none !important;
  }
}

/* Add bottom padding so content isn't hidden behind the bar on mobile */
@media (max-width: 767px) {
  body {
    padding-bottom: 56px !important;
  }