@charset "UTF-8";
/*! mobile.css © 2023, Belmont Information Services */
/**
 * @name		mobile.css
 * @description	Styles that override the basic styles in a mobile
 *				environment. A "mobile environment" is implicitly
 *				defined by the media attributes defined for this .css
 *				file in the alvin_page function in alvin_def.inc
 * @author		Mark.Nichols@BelmontInformationServices.com
 * @copyright	© 1991-2023, Belmont Information Services
 * @package		Alvin
 * @version		4
 * @internal	Changes
 * - 11/06/11	Initial toe in the water
 * - 11/06/13	Initially, the information table contained in the page
 *				heading div (#zpagehead) would be visible or not visible
 *				depending on whether this .css table was in effect.  Now
 *				the table in this div is created with a class of
 *				"zmnoshow" (mobile no show), while a new piece of
 *				content with just the customer name has a class
 *				of "zmshow" (mobile show).  The result is that on a
 *				mobile device, the table is visible and the abbreviated
 *				content is not.  If the screen changes, perhaps because
 *				of a rotation to/from landscape, it will toggle
 *				automatically.  There is also a separate piece of
 *				javascript that does the toggle based on user input.
 * - 05/19/21	Refactor and rename to scss to check build process
 * - 11/16/23	Updated header comment block to see if it still builds
 * - 12/03/23	Rewrite this docblock
 */
/*
div#zpagehead table {
	display:			none;
}
*/
/* 11/06/13 - the new way below */
div#zpagehead .zmnoshow {
  display: none; }

div#zpagehead .zmshow {
  display: inline; }
