
.jtjDesktopOnly {
  display: none;
}

@media only screen and (min-width: 1215px) { /* If we are on a desktop, then show the element */

  .jtjDesktopOnly {
    display: block;
  }

}

.jtjDesktopExcluded {
  display: none;
}

@media only screen and (max-width: 1215px) { /* If we are on a desktop, then hide the element */

  .jtjDesktopExcluded {
    display: block;
  }

}



