CSS : Mobile (@media)
Media Query For Mobile
These styles will only show on screens 768px and lower.
.mobile, .mobile-inline {display: none !important;}
@media screen and (max-width: 768px) {
.mobile {display: block !important;}
.mobile-inline {display: inline !important;}
.desktop {display: none !important;}
}