.wacc-lock {
	overflow: hidden;
}

.wacc-mm-wrap {
	display: inline-block;
	width: 100%;
}

.wacc-mm-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border-radius: 999px;
	border: 0;
	padding: 0.65rem 1rem;
	line-height: 1;
	background: #0e1530;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.2s ease;
}

.wacc-mm-btn.size-sm {
	padding: 0.45rem 0.8rem;
	font-size: 0.9rem;
}

.wacc-mm-btn.size-lg {
	padding: 0.85rem 1.2rem;
	font-size: 1.05rem;
}

.wacc-mm-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: 0.25s ease;
	z-index: 9999;
	background: #5f5651;
	color: #fff;
}

.wacc-mm-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.wacc-mm-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 24px 28px 12px;
	flex: 0 0 auto;
	gap: 16px;
}

.wacc-mm-head-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
	flex: 1 1 auto;
}

.wacc-mm-brand {
	display: block;
	width: 100%;
}

.wacc-mm-brand img {
	display: block;
	width: 170px;
	max-width: 100%;
	height: auto;
}

.wacc-mm-close {
	min-height: 40px;
	border-radius: 999px;
	background: #243055;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	cursor: pointer;
	line-height: 1;
	flex: 0 0 auto;
	padding: 0 16px;
	white-space: nowrap;
}

.wacc-mm-close-text {
	display: inline-block;
}

.wacc-mm-close-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
}

.wacc-mm-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	padding: 8px 28px 32px;
	overflow-y: auto;
	min-height: 0;
}

.wacc-mm-lang {
	margin: 0;
}

.wacc-mm-nav {
	width: 100%;
}

.wacc-mm-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wacc-mm-nav a {
	display: block;
	padding: 14px 0;
	text-decoration: none;
	color: inherit;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
}

.wacc-mm-contact-wrap {
	display: flex;
	width: 100%;
	padding-top: 24px;
}

.wacc-mm-contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	background: #fff;
	color: #0e1530;
	font-size: 18px;
	text-align: center;
	max-width: 100%;
	box-sizing: border-box;
}

.wacc-mm.contact-pos-top .wacc-mm-contact-wrap {
	order: 1;
	margin-bottom: 18px;
	padding-top: 0;
}

.wacc-mm.contact-pos-top .wacc-mm-nav {
	order: 2;
}

.wacc-mm.contact-pos-top .wacc-mm-socials {
	order: 3;
	margin-top: auto;
	padding-top: 24px;
}

.wacc-mm.contact-pos-bottom .wacc-mm-nav {
	order: 1;
}

.wacc-mm.contact-pos-bottom .wacc-mm-socials {
	order: 2;
	margin-top: 20px;
}

.wacc-mm.contact-pos-bottom .wacc-mm-contact-wrap {
	order: 3;
	margin-top: auto;
	padding-top: 32px;
}

.wacc-mm-socials {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.wacc-mm-socials a {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.wacc-mm-socials a img {
	width: 30px;
	height: 30px;
	display: block;
}

.wacc-mm-nav li.menu-item-has-children > a {
	position: relative;
	padding-right: 36px;
}

.wacc-mm-nav li.menu-item-has-children > a .submenu-toggle {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: 0;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease;
	color: inherit;
}

.wacc-mm-nav li.menu-item-has-children > a .submenu-toggle::before {
	content: "▾";
	font-size: 22px;
	opacity: 0.9;
}

.wacc-mm-nav li.is-open > a .submenu-toggle {
	transform: translateY(-50%) rotate(180deg);
}

.wacc-mm-nav ul ul {
	display: none;
	margin: 6px 0 10px 14px;
	padding-left: 12px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.wacc-mm-nav li.is-open > ul {
	display: block;
}

.wacc-mm-nav ul ul a {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.9;
	padding: 6px 0;
}