/* default off (prevents Tilda "hide on desktop" from breaking everything) */
.pc-only, .touch-only { display: none; }

/* Desktop/laptop only */
@media (min-width: 1025px) {
  .pc-only    { display: block !important; }
  .touch-only { display: none  !important; }
}

/* Tablet + phone */
@media (max-width: 1024px) {
  .pc-only    { display: none  !important; }
  .touch-only { display: block !important; }
}
