@media print {
    html, body {
       display: none;  /* hide whole page */
    }
}

/* Mobile */
@media only screen and (max-width: 1280px) {
    .screen_desktop {
        display: none;
    }
}


/* Desktop or Tablet */
@media only screen and (min-width: 1281px) {
    .screen_mobile {
        display: none;
    }
}