/* Mobile Mega Menu (Elementor Menu Source) */
.mmme-overlay {
	position: fixed;
	inset: 0;
	background: #eef4f9;
	z-index: 999999;
	transform: translateX(100%);
	transition: transform .3s ease;
}
.mmme-overlay.is-open { transform: translateX(0); }

.mmme-inner {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	font-family: inherit;
}

.mmme-close {
	position: absolute;
	top: 12px;
	right: 12px;
	left: auto;
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}

.mmme-panel {
	position: absolute;
	inset: 0;
	padding: 56px 16px 24px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .3s ease;
	background: #eef4f9;
}
.mmme-panel.is-active { transform: translateX(0); }
.mmme-panel.is-left   { transform: translateX(-100%); }

.mmme-back-row { padding-bottom: 8px; }
.mmme-back {
	border: 0;
	background: transparent;
	font-size: 14px;
	cursor: pointer;
	padding: 4px 0;
}

.mmme-logo { margin-bottom: 12px; }
.mmme-logo img { max-width: 56%; height: auto; display: block; }

.mmme-title {
	font-size: 18px;
	font-weight: 700;
	color: #111;
	margin: 8px 0 12px;
}

.mmme-list { list-style: none; margin: 0; padding: 0; }

.mmme-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 4px;
	border-top: 1px dotted #c5ced9;
	font-size: 15px;
	transition: background .15s ease, color .15s ease;
}
.mmme-item:last-child { border-bottom: 1px dotted #c5ced9; }

li.mmme-item:hover { padding: 12px; color: #fff !important; }
li.mmme-item:hover a,
li.mmme-item:hover span { color: #fff !important; }

.mmme-item a, .mmme-item span {
	text-decoration: none;
	color: #222;
}
.mmme-item a { flex: 1; }

.mmme-item.has-children { cursor: pointer; }
.mmme-arrow { font-size: 16px; opacity: .6; margin-left: 8px; }

body.mmme-locked { overflow: hidden; }
