.egc-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 999999;
	box-sizing: border-box;
	background: #ffffff;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.egc-mobile-menu.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.egc-mobile-menu__content {
	box-sizing: border-box;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

html.egc-scroll-lock,
html.egc-scroll-lock body {
	overflow: hidden;
}

html.egc-scroll-lock body {
	touch-action: none;
}

/* Keep the trigger independent from Elementor and theme button states. */
.egc-mobile-menu-wrap button.egc-mobile-menu__trigger,
.egc-mobile-menu-wrap button.egc-mobile-menu__trigger:is(:hover, :focus, :active) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	min-width: 0;
	min-height: 0;
	margin: 0;
	border: none;
	border-radius: 6px;
	outline: 0;
	box-shadow: none;
	background: transparent;
	background-image: none;
	color: #f28c2e;
	font: inherit;
	line-height: normal;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	appearance: none;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
	opacity: 1;
	transform: none;
	transition: none;
}

.egc-mobile-menu-wrap button.egc-mobile-menu__trigger:focus-visible {
	outline: 2px solid #f28c2e;
	outline-offset: 2px;
	box-shadow: none;
}

.egc-mobile-menu-wrap button.egc-mobile-menu__trigger svg {
	display: block;
	width: 28px;
	height: 28px;
	flex: none;
}

@media (prefers-reduced-motion: reduce) {
	.egc-mobile-menu {
		transition: none;
	}
}