/*
 * Floating Login button (added to the static build - see README).
 *
 * Nothing here styles the button itself. Its look comes from the theme's
 * .qbutton class, and its gold-to-grey hover from the inline style plus the
 * data-hover-* attributes the theme's initButtonHover() reads - exactly how
 * every other button on the site is authored. This file only places it.
 */
a.qbutton.lcr-login-float {
	position: fixed;
	top: 28px;
	right: 30px;
	/* Above the page content - the theme's custom CSS puts .full_width at 5000 -
	   but below prettyPhoto's lightbox overlay at 9500, so opening a gallery
	   image still covers the button rather than it punching through. */
	z-index: 6000;
}

/*
 * Hidden below 1000px, the breakpoint where the theme swaps the vertical menu
 * for the mobile header. That header is only 100px tall with a centred logo,
 * and the Customer Login item in the mobile menu covers the same ground.
 */
@media only screen and (max-width: 1000px) {
	a.qbutton.lcr-login-float {
		display: none;
	}
}
