
.dlx-mm,
.dlx-mm * {
	box-sizing: border-box;
}

.dlx-mm {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	grid-template-columns: 1fr min(var(--dlx-mm-panel-width), 100%);
	visibility: hidden;
	pointer-events: none;
}

.dlx-mm__backdrop {
	grid-column: 1 / -1;
	grid-row: 1;
	background: var(--dlx-mm-overlay);
	opacity: 0;
	transition: opacity .38s ease;
}

.dlx-mm__panel {
	grid-column: 2;
	grid-row: 1;
	width: min(var(--dlx-mm-panel-width), 100vw);
	height: 100%;
	margin-left: auto;
	background: var(--dlx-mm-bg);
	color: var(--dlx-mm-text);
	transform: translateX(100%);
	transition: transform .42s cubic-bezier(.22,.61,.36,1);
	outline: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.dlx-mm.is-open {
	visibility: visible;
	pointer-events: auto;
}

.dlx-mm.is-open .dlx-mm__backdrop {
	opacity: var(--dlx-mm-overlay-opacity);
}

.dlx-mm.is-open .dlx-mm__panel {
	transform: translateX(0);
}

body.dlx-mm-open {
	overflow: hidden;
	touch-action: none;
}

.dlx-mm__header {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 168px;
	padding: 38px 70px 26px;
}

.dlx-mm__logo {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 72px;
}

.dlx-mm__logo a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.dlx-mm__logo img,
.dlx-mm__logo .custom-logo {
	display: block;
	width: min(var(--dlx-mm-logo-width), 100%);
	max-height: 96px;
	object-fit: contain;
}

.dlx-mm__text-logo {
	flex-direction: column;
	font-family: "Times New Roman", Georgia, serif;
	font-size: 38px;
	line-height: .9;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.dlx-mm__text-logo small {
	margin-top: 8px;
	font-family: Arial, sans-serif;
	font-size: 10px;
	letter-spacing: .45em;
}

.dlx-mm__close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 46px;
	height: 46px;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
	color: var(--dlx-mm-text);
}

.dlx-mm__close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25px;
	height: 1px;
	background: currentColor;
	transform-origin: center;
}

.dlx-mm__close span:first-child {
	transform: translate(-50%,-50%) rotate(45deg);
}

.dlx-mm__close span:last-child {
	transform: translate(-50%,-50%) rotate(-45deg);
}

.dlx-mm__scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 0 34px 28px;
	scrollbar-width: thin;
}

.dlx-mm__nav {
	margin-top: 4px;
}

.dlx-mm-menu,
.dlx-mm-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dlx-mm-menu > .menu-item {
	border-bottom: 1px solid var(--dlx-mm-divider);
	padding: var(--dlx-mm-item-space) 0;
}

.dlx-mm-menu > .menu-item:last-child {
	border-bottom: 0;
}

.dlx-mm__menu-row {
	min-height: 66px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.dlx-mm__menu-row > a {
	flex: 1 1 auto;
	min-width: 0;
	color: var(--dlx-mm-text);
	text-decoration: none;
	font-family: Georgia, "Times New Roman", serif;
	font-size: var(--dlx-mm-menu-size);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -.02em;
}

.dlx-mm__submenu-toggle {
	position: relative;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: var(--dlx-mm-text);
	cursor: pointer;
	padding: 0;
}

.dlx-mm__submenu-toggle span::before,
.dlx-mm__submenu-toggle span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 19px;
	height: 1px;
	background: currentColor;
	transform: translate(-50%,-50%);
	transition: transform .25s ease, opacity .25s ease;
}

.dlx-mm__submenu-toggle span::after {
	transform: translate(-50%,-50%) rotate(90deg);
}

.menu-item.is-submenu-open > .dlx-mm__menu-row > a,
.menu-item.current-menu-item > .dlx-mm__menu-row > a,
.menu-item.current-menu-ancestor > .dlx-mm__menu-row > a {
	color: var(--dlx-mm-accent);
}

.menu-item.is-submenu-open > .dlx-mm__menu-row .dlx-mm__submenu-toggle {
	color: var(--dlx-mm-accent);
}

.menu-item.is-submenu-open > .dlx-mm__menu-row .dlx-mm__submenu-toggle span::after {
	opacity: 0;
	transform: translate(-50%,-50%) rotate(0);
}

.dlx-mm-menu .sub-menu {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding-left: 22px;
	border-left: 1px solid transparent;
	transition: max-height .42s ease, opacity .28s ease, padding .36s ease, margin .36s ease, border-color .36s ease;
}

.dlx-mm-menu .menu-item.is-submenu-open > .sub-menu {
	max-height: 900px;
	opacity: 1;
	margin: 2px 0 20px;
	padding-top: 5px;
	padding-bottom: 8px;
	border-left-color: var(--dlx-mm-accent);
}

.dlx-mm-menu .sub-menu .menu-item a {
	display: block;
	padding: 10px 0 10px 16px;
	color: var(--dlx-mm-muted);
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: var(--dlx-mm-submenu-size);
	font-weight: 400;
	line-height: 1.35;
}

.dlx-mm-menu .sub-menu .menu-item.current-menu-item > a {
	color: var(--dlx-mm-accent);
}

.dlx-mm__footer {
	margin-top: 34px;
	padding-top: 24px;
	border-top: 1px solid var(--dlx-mm-accent);
}

.dlx-mm__languages {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 22px;
}

.dlx-mm__language {
	position: relative;
	min-width: 76px;
	padding: 8px 20px 13px;
	color: var(--dlx-mm-text);
	text-align: center;
	text-decoration: none;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	letter-spacing: .12em;
}

.dlx-mm__language + .dlx-mm__language {
	border-left: 1px solid var(--dlx-mm-divider);
}

.dlx-mm__language.is-active {
	color: var(--dlx-mm-accent);
}

.dlx-mm__language.is-active::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 3px;
	width: 24px;
	height: 1px;
	background: var(--dlx-mm-accent);
	transform: translateX(-50%);
}

.dlx-mm__cta {
	min-height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 15px 22px;
	border: 1px solid var(--dlx-mm-accent);
	border-radius: 4px;
	background: var(--dlx-mm-accent);
	color: var(--dlx-mm-button-text);
	text-decoration: none;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 16px;
	line-height: 1.15;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.dlx-mm__cta svg {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
}

.dlx-mm__actions {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 10px;
	margin-top: 12px;
}

.dlx-mm__actions a {
	min-height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 11px 12px;
	border: 1px solid var(--dlx-mm-accent);
	border-radius: 4px;
	color: var(--dlx-mm-text);
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.dlx-mm__actions svg {
	flex: 0 0 23px;
	width: 23px;
	height: 23px;
	fill: none;
	stroke: var(--dlx-mm-accent);
	stroke-width: 1.45;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 580px) {
	.dlx-mm {
		display: block;
	}

	.dlx-mm__panel {
		width: 100%;
	}

	.dlx-mm__header {
		min-height: 138px;
		padding: 29px 58px 20px;
	}

	.dlx-mm__close {
		top: 14px;
		right: 12px;
	}

	.dlx-mm__scroll {
		padding-left: 22px;
		padding-right: 22px;
		padding-bottom: 22px;
	}

	.dlx-mm__menu-row {
		min-height: 61px;
	}

	.dlx-mm__actions a {
		letter-spacing: .06em;
	}
}

@media (max-width: 380px) {
	.dlx-mm__actions {
		grid-template-columns: 1fr;
	}

	.dlx-mm__language {
		min-width: 62px;
		padding-left: 12px;
		padding-right: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dlx-mm__panel,
	.dlx-mm__backdrop,
	.dlx-mm-menu .sub-menu,
	.dlx-mm__submenu-toggle span::before,
	.dlx-mm__submenu-toggle span::after {
		transition: none !important;
	}
}
/* ---------------------------------------------------------
 * Elementor/theme compatibility
 * Prevent global button styles from affecting menu controls.
 * --------------------------------------------------------- */

html body .dlx-mm button.dlx-mm__close,
html body .dlx-mm button.dlx-mm__submenu-toggle {
	-webkit-appearance: none !important;
	appearance: none !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: none !important;
	max-height: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	text-shadow: none !important;
	outline: 0 !important;
	font: inherit !important;
	line-height: 1 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	transition: none !important;
}

html body .dlx-mm button.dlx-mm__close,
html body .dlx-mm button.dlx-mm__close:hover,
html body .dlx-mm button.dlx-mm__close:focus,
html body .dlx-mm button.dlx-mm__close:active {
	position: absolute !important;
	top: 24px !important;
	right: 24px !important;
	width: 46px !important;
	height: 46px !important;
	color: var(--dlx-mm-text) !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	transform: none !important;
	cursor: pointer !important;
}

html body .dlx-mm button.dlx-mm__submenu-toggle,
html body .dlx-mm button.dlx-mm__submenu-toggle:hover,
html body .dlx-mm button.dlx-mm__submenu-toggle:focus,
html body .dlx-mm button.dlx-mm__submenu-toggle:active {
	position: relative !important;
	flex: 0 0 44px !important;
	width: 44px !important;
	height: 44px !important;
	color: var(--dlx-mm-text) !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	transform: none !important;
	cursor: pointer !important;
}

html body .dlx-mm .menu-item.is-submenu-open > .dlx-mm__menu-row button.dlx-mm__submenu-toggle,
html body .dlx-mm .menu-item.is-submenu-open > .dlx-mm__menu-row button.dlx-mm__submenu-toggle:hover,
html body .dlx-mm .menu-item.is-submenu-open > .dlx-mm__menu-row button.dlx-mm__submenu-toggle:focus {
	color: var(--dlx-mm-accent) !important;
}

html body .dlx-mm button.dlx-mm__close::before,
html body .dlx-mm button.dlx-mm__close::after,
html body .dlx-mm button.dlx-mm__submenu-toggle::before,
html body .dlx-mm button.dlx-mm__submenu-toggle::after {
	content: none !important;
	display: none !important;
}

html body .dlx-mm button.dlx-mm__close span,
html body .dlx-mm button.dlx-mm__submenu-toggle span {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
}

html body .dlx-mm button.dlx-mm__close span {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	width: 25px !important;
	height: 1px !important;
	background: currentColor !important;
	transform-origin: center !important;
}

html body .dlx-mm button.dlx-mm__close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg) !important;
}

html body .dlx-mm button.dlx-mm__close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg) !important;
}

html body .dlx-mm button.dlx-mm__submenu-toggle span {
	background: transparent !important;
}

html body .dlx-mm a,
html body .dlx-mm a:hover,
html body .dlx-mm a:focus,
html body .dlx-mm a:active {
	box-shadow: none;
	text-decoration: none;
}

@media (max-width: 580px) {
	html body .dlx-mm button.dlx-mm__close,
	html body .dlx-mm button.dlx-mm__close:hover,
	html body .dlx-mm button.dlx-mm__close:focus,
	html body .dlx-mm button.dlx-mm__close:active {
		top: 14px !important;
		right: 12px !important;
	}
}
