/*!
(C)2022-2023 by Don Stamey, MacWisdom Systems, http://www.macwisdom.com. All rights reserved.
This module may not be copied, modified, or used without written permission of the above owner.
*/
.gg_hamburger_icon {
	z-index: 9990;
	display: inline-block;
	border: 2px solid;
	border-radius: .4em;
	padding: .2em .3em;
	text-align: center;
	white-space: nowrap;
	font-family: Arial, Tahoma, Gill Sans, Verdana, sans-serif;
	font-size: 1rem;
	font-weight: normal;
	font-style: normal;
	cursor: pointer;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}
.gg_hamburger_icon:hover {
	border-color: #888;
}
.gg_hamburger_icon:active {
	background-color: #888;
}
.gg_hamburger_icon div {
	display: inline-block;
	vertical-align: middle;
}
.gg_hamburger_icon span {
	display: block;
	width: 25px;
	margin: 5px 0;
	border-top: 3px solid;
}
.gg_hamburger_icon div:nth-child(2) {
	position: relative;
	top: .1em;
	font-size: 11px;
}
.gg_hamburger_backdrop {
	display: none;
	z-index: 9991;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 1px solid #fff;
	background: rgba(0,0,0,0.5);
}
.gg_hamburger_menu {
	z-index: 9992;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	max-width: 95%;
	border: 2px solid #999;
	padding: 8px 12px;
	color: #000;
	background-color: #fff;
	overflow: auto;
	overscroll-behavior: none; /* for mobile */
	transform: translate(-150%);
	transition: transform .25s ease-in-out;
}
.gg_hamburger_menu_open {
	transform: translateX(0);
}
.gg_hamburger_menu #_controls {
}
.gg_hamburger_menu #_closeBtn {
	font-size: .9rem;
}
