/*
 * The Loyalty Launcher "My Rewards" button and the PWA plugin's "Install App"
 * bar are both `position: fixed` at the bottom of the viewport, and neither
 * reserves space for itself — so they sit on top of whatever page content
 * happens to be there, hiding text (most visible on the My Account / lost
 * password page). Reserving space at the bottom of every page, rather than
 * patching each plugin individually, fixes this regardless of which of the
 * two (or both) happen to be visible on a given page.
 */

body {
	padding-bottom: 90px;
}

/* The PWA install bar is full-width and can be tall on small screens (it
   wraps to two lines), so smaller viewports need more reserved space. */
@media (max-width: 782px) {
	body {
		padding-bottom: 140px;
	}
}

/* Keep the two widgets from stacking directly on top of each other too. */
.pwaforwp-footer-prompt {
	z-index: 9999;
}

.wll_main_container {
	z-index: 9998;
}
