/**
 * Layered fullscreen mega menu.
 *
 * @package Hoenle
 */

.site-header,
.ast-container,
.main-header-bar,
.main-header-bar-wrap {
	position: relative;
	overflow: visible !important;
}

#masthead.site-header {
	position: fixed !important;
	top: var(--sticky-admin-offset, 0px);
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999999;
	background: #ffffff;
}

#page.site {
	padding-top: 138px;
}

@media (max-width: 921px) {
	#page.site {
		padding-top: 60px;
	}
}

html.has-mega-menu-open {
	overflow: hidden;
}

html.has-mega-menu-open body {
	overflow: hidden;
	box-sizing: border-box;
	padding-right: var(--mega-scrollbar-width, 0px);
}

html.has-mega-menu-open body::before {
	content: "";
	position: fixed;
	top: var(--sticky-admin-offset, 0px);
	right: 0;
	width: var(--mega-scrollbar-width, 0px);
	height: 50px;
	background: #0070B9;
	pointer-events: none;
	z-index: 1000001;
}

@media (min-width: 922px) {
	html {
		scroll-padding-top: calc(110px + var(--wp-admin--admin-bar--height, 0px));
	}
}

@media (max-width: 921px) {
	html {
		scroll-padding-top: calc(60px + var(--wp-admin--admin-bar--height, 0px));
	}
}

.mega-menu__tree {
	display: none !important;
}

.main-navigation .main-header-menu {
	align-items: center;
}

.main-navigation .main-header-menu > .mega-menu__item {
	position: relative;
	display: flex;
	align-items: center;
}

.main-navigation .main-header-menu > .mega-menu__item--has-dropdown {
	position: static !important;
}

#ast-desktop-header .main-header-menu > .mega-menu__item > .menu-link.mega-menu__link {
	display: inline-flex;
	align-items: center;
	color: #363D52 !important;
	padding: 0 !important;
	font-family: "DM Sans", sans-serif !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	transition: color 0.2s ease;
}

#ast-desktop-header .main-header-menu > .mega-menu__item > .menu-link.mega-menu__link:hover,
#ast-desktop-header .main-header-menu > .mega-menu__item.is-active > .menu-link.mega-menu__link {
	color: #0070B9 !important;
}

.mega-menu__item--has-dropdown > .mega-menu__link::after,
.mega-menu__item--has-dropdown > .mega-menu__link .icon-arrow {
	display: none !important;
	content: none !important;
}

.mega-menu__toggle {
	display: none;
}

.mega-menu__dropdown-wrapper {
	position: fixed !important;
	top: 80px;
	left: 0;
	right: 0;
	height: calc(100vh - var(--mega-header-offset, 80px));
	background: #ffffff;
	border-top: 0;
	border-bottom: 1px solid rgba(54, 61, 82, 0.12);
	box-shadow: none;
	display: none;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	z-index: 999998;
}

.mega-menu__dropdown-wrapper.is-open {
	display: block;
}

.mega-menu__dropdown-inner {
	position: relative;
	max-width: 1740px;
	height: 100%;
	margin: 0 auto;
	padding: 34px 54px 64px;
}

.mega-menu__desktop {
	height: 100%;
}

.mega-menu__columns {
	display: flex;
	gap: 30px;
	align-items: stretch;
	height: 100%;
}

.mega-menu__columns::after {
	content: "";
	flex: 1 1 auto;
	min-width: 0;
	background: #ffffff;
}

.mega-menu__column {
	flex: 0 1 clamp(260px, 21vw, 405px);
	min-width: 230px;
	max-width: none;
}

.mega-menu__column-title {
	position: relative;
	margin: 0;
	padding: 0 0 19px;
	border-bottom: 1px solid rgba(54, 61, 82, 0.14);
	color: #363D52 !important;
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.mega-menu__column-title-link {
	color: inherit !important;
	text-decoration: none;
}

.mega-menu__column-title-link:hover,
.mega-menu__column-title-link:focus-visible {
	color: #0070B9 !important;
	text-decoration: none;
}

.mega-menu__column-title-link:focus,
.mega-menu__column-title-link:focus-visible,
.mega-menu__column-link:focus,
.mega-menu__column-link:focus-visible,
.mega-menu__column-link--button:focus,
.mega-menu__column-link--button:focus-visible,
.mega-menu__close:focus,
.mega-menu__close:focus-visible {
	outline: 0 !important;
	box-shadow: none !important;
}

.mega-menu__column-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(54, 61, 82, 0.12);
}

.mega-menu__column-item {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 64px;
	margin: 0;
	border-top: 1px solid rgba(54, 61, 82, 0.12);
	transition: color 0.2s ease;
}

.mega-menu__column-list > .mega-menu__column-item:first-child {
	border-top: 0;
}

.mega-menu__column-item::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: transparent;
	transition: background-color 0.2s ease;
}

.mega-menu__column-item.is-active::after {
	background: #0070B9;
}

.mega-menu__column-link,
.mega-menu__column-link--static {
	flex: 1 1 auto;
	display: block;
	width: 100%;
	padding: 14px 12px 14px 0;
	border: 0;
	background: none;
	color: #363D52 !important;
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-align: left;
	text-decoration: none;
	box-shadow: none !important;
	cursor: pointer;
}

.mega-menu__column-link:hover,
.mega-menu__column-link:focus-visible,
.mega-menu__column-link--button:hover,
.mega-menu__column-link--button:focus-visible {
	color: #0070B9 !important;
	text-decoration: none;
}

.mega-menu__column-item.is-active > .mega-menu__column-link,
.mega-menu__column-item.is-active > .mega-menu__column-link--button,
.mega-menu__column-item.is-active > .mega-menu__column-link--static {
	color: #0070B9 !important;
	font-weight: 500;
	text-decoration: none;
}

.mega-menu__column-link--button {
	text-align: left;
}

.mega-menu__column-link--static {
	cursor: default;
}

.mega-menu__column-toggle {
	position: relative;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #363D52 !important;
	opacity: 0.55;
	cursor: pointer;
}

.mega-menu__column-item.is-active > .mega-menu__column-toggle,
.mega-menu__column-item:hover > .mega-menu__column-toggle {
	color: #0070B9 !important;
	opacity: 1;
}

.mega-menu__column-toggle::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 auto;
	border-top: 1.6px solid currentColor;
	border-right: 1.6px solid currentColor;
	transform: rotate(45deg);
}

.mega-menu__close {
	position: absolute;
	top: 34px;
	right: 36px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #363D52 !important;
	opacity: 0.55;
	cursor: pointer;
	z-index: 2;
}

.mega-menu__close::before,
.mega-menu__close::after {
	content: "";
	position: absolute;
	top: 19px;
	left: 8px;
	width: 24px;
	height: 1.5px;
	background: currentColor;
}

.mega-menu__close::before {
	transform: rotate(45deg);
}

.mega-menu__close::after {
	transform: rotate(-45deg);
}

.mega-menu__close:hover,
.mega-menu__close:focus-visible {
	color: #0070B9 !important;
	opacity: 1;
}

.main-header-menu .wpml-ls-menu-item,
.site-header .wpml-ls-menu-item {
	position: relative;
}

.main-header-menu .wpml-ls-menu-item > a.menu-link,
.site-header .wpml-ls-menu-item > a.menu-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	line-height: 1;
}

.main-header-menu .wpml-ls-menu-item .wpml-ls-flag,
.site-header .wpml-ls-menu-item .wpml-ls-flag {
	display: block;
	width: auto;
	height: 16px;
}

.main-header-menu .wpml-ls-menu-item > .sub-menu,
.site-header .wpml-ls-menu-item > .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 80px;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: #ffffff;
	border-radius: 6px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
	display: none !important;
	opacity: 0;
	pointer-events: none;
	z-index: 1000000;
}

.main-header-menu .wpml-ls-menu-item.is-open > .sub-menu,
.site-header .wpml-ls-menu-item.is-open > .sub-menu {
	display: block !important;
	opacity: 1;
	pointer-events: auto;
}

.main-header-menu .wpml-ls-menu-item > .sub-menu .menu-link,
.site-header .wpml-ls-menu-item > .sub-menu .menu-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 6px 8px;
	color: var(--aktd-color-font);
	text-decoration: none;
	box-shadow: none !important;
}

.main-header-menu .wpml-ls-menu-item > .sub-menu .menu-link:hover,
.main-header-menu .wpml-ls-menu-item > .sub-menu .menu-link:focus-visible,
.site-header .wpml-ls-menu-item > .sub-menu .menu-link:hover,
.site-header .wpml-ls-menu-item > .sub-menu .menu-link:focus-visible {
	background: rgba(0, 113, 180, 0.06);
	color: #0070B9 !important;
}

.main-header-menu .wpml-ls-menu-item .ast-header-navigation-arrow,
.site-header .wpml-ls-menu-item .ast-header-navigation-arrow {
	display: none !important;
}

@media (min-width: 922px) {
	#ast-desktop-header .ast-above-header-wrap,
	#ast-desktop-header .ast-above-header.ast-above-header-bar {
		background: transparent linear-gradient(269deg, #0070B9 0%, #590098 100%) 0% 0% no-repeat padding-box !important;
		border: 0 !important;
	}

	#ast-desktop-header .ast-above-header.ast-above-header-bar,
	#ast-desktop-header .site-above-header-wrap,
	#ast-desktop-header .site-above-header-wrap .ast-builder-grid-row,
	#ast-desktop-header .site-header-above-section-right {
		min-height: 50px;
	}

	#ast-desktop-header .site-above-header-wrap {
		width: 100%;
		max-width: var(--aktd-max-width) !important;
		margin: 0 auto;
		padding-right: 20px !important;
		padding-left: 0 !important;
		background: transparent !important;
	}

	#ast-desktop-header .site-above-header-wrap .ast-builder-grid-row {
		align-items: center;
	}

	#ast-desktop-header .site-header-above-section-right {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0;
		width: 100%;
	}

	#ast-desktop-header .site-above-header-wrap .header-widget-area,
	#ast-desktop-header .site-above-header-wrap .widget,
	#ast-desktop-header .site-above-header-wrap .menu-topbar-container {
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
		margin: 0 !important;
		padding: 0 !important;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] {
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
		gap: 0;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > li {
		order: 10;
		display: flex;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > li + li {
		margin-left: 32px;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > li > a,
	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 50px;
		padding: 0 !important;
		color: #ffffff !important;
		font-family: "DM Sans", sans-serif !important;
		font-size: 14px;
		font-weight: 500;
		line-height: 1.2;
		letter-spacing: 0;
		text-decoration: none !important;
		text-transform: none !important;
		box-shadow: none !important;
		opacity: 0.95;
		transition: color 0.2s ease, opacity 0.2s ease;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon .icon-search {
		position: relative;
		display: block;
		width: 20px;
		height: 20px;
		color: #F3F4F6;
		transition: color 0.2s ease;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon .icon-search svg {
		display: none;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon .icon-search::before,
	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon .icon-search::after {
		content: "";
		position: absolute;
		box-sizing: border-box;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon .icon-search::before {
		top: 1px;
		left: 1px;
		width: 13px;
		height: 13px;
		border: 1px solid currentColor;
		border-radius: 50%;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon .icon-search::after {
		top: 11px;
		left: 11px;
		width: 9px;
		border-top: 1px solid currentColor;
		transform: rotate(45deg);
		transform-origin: left center;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > li > a:hover,
	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > li > a:focus-visible {
		color: #ffffff !important;
		text-decoration: underline !important;
		text-decoration-thickness: 1px;
		text-underline-offset: 4px;
		opacity: 1;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon:hover,
	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon:focus-visible {
		color: #ffffff !important;
		fill: #ffffff !important;
		stroke: #ffffff !important;
		opacity: 1;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon:hover .icon-search,
	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon:focus-visible .icon-search {
		color: #FFFFFF;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon:hover .icon-search::before,
	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon:focus-visible .icon-search::before {
		border-width: 2px;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon:hover .icon-search::after,
	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon:focus-visible .icon-search::after {
		border-top-width: 2px;
	}

	#ast-desktop-header .ast-above-header .ast-header-search {
		position: absolute;
		top: 50%;
		right: 54px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 22px;
		height: 50px;
		margin: 0;
		padding: 0;
		transform: translateY(-50%);
	}

	#ast-desktop-header .ast-above-header .ast-header-search,
	#ast-desktop-header .ast-above-header .ast-header-search .ast-search-menu-icon {
		z-index: 4;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .ast-search-menu-icon,
	#ast-desktop-header .ast-above-header .ast-header-search .ast-search-icon,
	#ast-desktop-header .ast-above-header .ast-header-search .astra-search-icon,
	#ast-desktop-header .ast-above-header .ast-header-search .ast-icon {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 22px;
		height: 22px;
		min-height: 0 !important;
		margin: 0;
		padding: 0 !important;
		color: #ffffff !important;
		fill: currentColor !important;
		line-height: 1;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .ast-search-menu-icon {
		position: relative;
		height: 50px;
		overflow: visible;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .search-form {
		position: absolute !important;
		top: 50%;
		right: -8px;
		width: 0;
		height: 34px;
		margin: 0 !important;
		border: 0 !important;
		border-radius: 17px;
		background: #ffffff;
		box-shadow: none !important;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-50%);
		transition: width 0.22s ease, opacity 0.16s ease, visibility 0.16s ease;
		z-index: 5;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .ast-search-menu-icon.ast-dropdown-active .search-form {
		width: 360px;
		opacity: 1;
		visibility: visible;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .search-form label {
		position: relative;
		display: block;
		width: 100%;
		height: 34px;
		margin: 0;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .search-form .search-field {
		width: 100% !important;
		height: 34px !important;
		margin: 0;
		padding: 0 42px 0 16px !important;
		border: 0 !important;
		border-radius: 17px;
		background: #ffffff !important;
		color: #363D52 !important;
		font-family: "DM Sans", sans-serif !important;
		font-size: 15px;
		font-weight: 500;
		line-height: 34px;
		box-shadow: none !important;
		outline: none !important;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .search-form .search-field::placeholder {
		color: rgba(54, 61, 82, 0.62);
		opacity: 1;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .search-form .search-submit {
		position: absolute;
		top: 0;
		right: 0;
		display: none !important;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
		margin: 0;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		color: #0070B9 !important;
		box-shadow: none !important;
		cursor: pointer;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .search-form .search-submit .ast-icon,
	#ast-desktop-header .ast-above-header .ast-header-search .search-form .search-submit svg {
		width: 17px;
		height: 17px;
		color: currentColor !important;
		fill: currentColor !important;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .ast-search-menu-icon.ast-dropdown-active > .ast-search-icon {
		position: relative;
		z-index: 6;
		opacity: 1;
		pointer-events: auto;
	}

	#ast-desktop-header .ast-above-header .ast-header-search .ast-search-menu-icon.ast-dropdown-active > .ast-search-icon .astra-search-icon,
	#ast-desktop-header .ast-above-header .ast-header-search .ast-search-menu-icon.ast-dropdown-active > .ast-search-icon .ast-icon {
		color: #ffffff !important;
		fill: #ffffff !important;
		stroke: #ffffff !important;
	}

	@media (max-width: 1200px) {
		#ast-desktop-header .ast-above-header .ast-header-search .ast-search-menu-icon.ast-dropdown-active .search-form {
			width: 300px;
		}
	}

	#ast-desktop-header .ast-above-header .ast-header-search svg {
		display: block;
		width: 20px;
		height: 20px;
		fill: currentColor !important;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > .wpml-ls-menu-item {
		order: 30;
		position: relative;
		margin-left: 86px;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > .wpml-ls-menu-item > a.menu-link {
		width: 28px;
		min-width: 28px;
		height: 50px;
		font-size: 0;
		opacity: 1;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > .wpml-ls-menu-item > a.menu-link .wpml-ls-flag {
		display: block;
		width: 24px;
		max-width: 24px;
		height: auto;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > .wpml-ls-menu-item > a.menu-link::before {
		content: none;
		display: none;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > .wpml-ls-menu-item > a.menu-link::after {
		content: none;
		display: none;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > .wpml-ls-menu-item::after {
		content: none;
		display: none;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > .wpml-ls-menu-item > .sub-menu {
		top: calc(100% + 8px);
		right: 0;
	}

	#ast-desktop-header .site-above-header-wrap ul[id^="menu-top"] > .wpml-ls-menu-item > .sub-menu .wpml-ls-flag {
		display: block;
	}
}

#ast-desktop-header .main-navigation .main-header-menu {
	gap: 0 !important;
}

#ast-desktop-header .ast-primary-header-bar,
#ast-desktop-header .site-primary-header-wrap,
#ast-desktop-header .site-primary-header-wrap .ast-builder-grid-row,
#ast-desktop-header .site-header-primary-section-left,
#ast-desktop-header .site-header-primary-section-right {
	height: 88px !important;
	min-height: 88px !important;
}

#ast-desktop-header .site-primary-header-wrap .ast-builder-grid-row,
#ast-desktop-header .site-header-primary-section-left,
#ast-desktop-header .site-header-primary-section-right,
#ast-desktop-header .site-branding {
	align-items: center !important;
}

#ast-desktop-header .site-primary-header-wrap > .ast-builder-grid-row {
	display: flex !important;
	justify-content: space-between !important;
}

#ast-desktop-header .site-header-primary-section-right {
	margin-left: auto !important;
	justify-content: flex-end !important;
}

#ast-desktop-header .ast-primary-header-bar,
#ast-desktop-header .site-primary-header-wrap,
#ast-desktop-header .site-branding,
#ast-desktop-header .ast-site-identity,
#ast-desktop-header .site-logo-img {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

#ast-desktop-header .site-logo-img,
#ast-desktop-header .custom-logo-link {
	display: inline-flex;
	align-items: center !important;
	line-height: 1;
}

#ast-desktop-header .custom-logo-link img {
	display: block;
}

#ast-desktop-header .main-navigation .main-header-menu > .menu-item {
	height: 88px !important;
	line-height: 88px !important;
}

#ast-desktop-header .main-navigation,
#ast-desktop-header .ast-main-header-bar-alignment,
#ast-desktop-header .main-header-bar-navigation,
#ast-desktop-header .site-navigation,
#ast-desktop-header .main-navigation .main-header-menu,
#ast-desktop-header .main-navigation .main-header-menu > .menu-item > .menu-link {
	height: 88px !important;
	min-height: 88px !important;
	align-items: center !important;
}

@media (min-width: 922px) {
	#masthead.is-compact #ast-desktop-header .ast-primary-header-bar,
	#masthead.is-compact #ast-desktop-header .site-primary-header-wrap,
	#masthead.is-compact #ast-desktop-header .site-primary-header-wrap .ast-builder-grid-row,
	#masthead.is-compact #ast-desktop-header .site-header-primary-section-left,
	#masthead.is-compact #ast-desktop-header .site-header-primary-section-right,
	#masthead.is-compact #ast-desktop-header .main-navigation,
	#masthead.is-compact #ast-desktop-header .ast-main-header-bar-alignment,
	#masthead.is-compact #ast-desktop-header .main-header-bar-navigation,
	#masthead.is-compact #ast-desktop-header .site-navigation,
	#masthead.is-compact #ast-desktop-header .main-navigation .main-header-menu,
	#masthead.is-compact #ast-desktop-header .main-navigation .main-header-menu > .menu-item,
	#masthead.is-compact #ast-desktop-header .main-navigation .main-header-menu > .menu-item > .menu-link {
		height: 60px !important;
		min-height: 60px !important;
	}

	#masthead.is-compact #ast-desktop-header .main-navigation .main-header-menu > .menu-item {
		line-height: 60px !important;
	}

	#masthead.is-compact #ast-desktop-header .site-branding,
	#masthead.is-compact #ast-desktop-header .ast-site-identity,
	#masthead.is-compact #ast-desktop-header .site-logo-img,
	#masthead.is-compact #ast-desktop-header .custom-logo-link {
		height: 60px;
		min-height: 60px;
		align-items: center !important;
		overflow: visible;
	}

	#masthead.is-compact #ast-desktop-header .custom-logo-link img {
		width: 108px !important;
		max-width: 108px !important;
		height: auto;
	}
}

#ast-desktop-header .main-navigation .main-header-menu > .menu-item > .menu-link {
	display: inline-flex !important;
	line-height: 1.2 !important;
}

#ast-desktop-header .main-navigation .main-header-menu > .mega-menu__item {
	margin: 0 !important;
}

#ast-desktop-header .main-navigation .main-header-menu > .menu-item + .menu-item {
	margin-left: 44px !important;
}

#ast-desktop-header .site-primary-header-wrap,
#ast-desktop-header .site-above-header-wrap {
	max-width: var(--aktd-max-width) !important;
	margin: 0 auto;
}

#ast-desktop-header .site-primary-header-wrap {
	margin-bottom: 0;
}

#ast-desktop-header .ast-primary-header-bar,
#ast-desktop-header .main-header-bar,
#ast-desktop-header .main-header-bar-wrap,
#ast-desktop-header .site-primary-header-wrap {
	border-top: 0 !important;
	border-bottom: 0 !important;
	box-shadow: none !important;
}

#ast-desktop-header .site-above-header-wrap .header-widget-area {
	padding: 0;
}

.ast-above-header.ast-above-header-bar {
	border: 0 !important;
}

	@media (max-width: 1200px) {
	.mega-menu__dropdown-inner {
		padding-right: 32px;
		padding-left: 32px;
	}

	.mega-menu__columns {
		gap: 20px;
	}

	.mega-menu__column {
		flex-basis: clamp(230px, 23vw, 360px);
		min-width: 210px;
	}
}

@media (max-width: 921px) {
	html.has-mega-menu-open,
	html.has-mega-menu-open body {
		overflow: visible;
	}

	.mega-menu__dropdown-wrapper {
		display: none !important;
	}

	.mega-menu__item {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.mega-menu__item > .mega-menu__link {
		flex: 1 1 auto;
	}

	.mega-menu__item--has-dropdown > .mega-menu__link {
		pointer-events: auto;
	}

	.mega-menu__item--has-dropdown > .mega-menu__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		padding: 0;
		border: none;
		background: transparent;
		cursor: pointer;
	}

	.mega-menu__item--has-dropdown > .mega-menu__toggle::before {
		content: '›';
		color: var(--aktd-color-font, #363D52);
		font-size: 24px;
		line-height: 1;
	}

	.mega-menu__dropdown-wrapper {
		position: fixed !important;
		top: 60px;
		height: auto;
		max-height: none !important;
	}

	.mega-menu__dropdown-inner {
		padding: 30px 20px;
	}

	.mega-menu__desktop {
		display: none !important;
	}

	#ast-mobile-header {
		position: relative;
		padding-top: 5px;
		background: #ffffff;
	}

	#ast-mobile-header::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		display: block;
		height: 5px;
		background: transparent linear-gradient(269deg, #0070B9 0%, #590098 100%) 0% 0% no-repeat padding-box;
	}

	#masthead #ast-mobile-header .ast-primary-header-bar,
	#ast-mobile-header .site-primary-header-wrap,
	#ast-mobile-header .site-primary-header-wrap .ast-builder-grid-row,
	#ast-mobile-header .site-header-primary-section-left,
	#ast-mobile-header .site-header-primary-section-right {
		height: 55px !important;
		min-height: 55px !important;
	}

	#masthead #ast-mobile-header .ast-primary-header-bar {
		padding: 0 !important;
		border-bottom: 0 !important;
		box-shadow: none !important;
	}

	#ast-mobile-header .site-primary-header-wrap {
		box-sizing: border-box;
		width: 100%;
		max-width: none !important;
		margin: 0;
		padding: 0 24px 0 0 !important;
		border-bottom: 0 !important;
		box-shadow: none !important;
	}

	#ast-mobile-header .site-primary-header-wrap > .ast-builder-grid-row,
	#ast-mobile-header .site-primary-header-wrap .ast-builder-grid-row {
		box-sizing: border-box;
		width: 100%;
		max-width: 100%;
		display: flex !important;
		justify-content: space-between !important;
	}

	#ast-mobile-header .site-primary-header-wrap .ast-builder-grid-row,
	#ast-mobile-header .site-header-primary-section-left,
	#ast-mobile-header .site-header-primary-section-right {
		align-items: center !important;
	}

	#ast-mobile-header .site-header-primary-section-left {
		justify-content: flex-start !important;
	}

	#ast-mobile-header [data-section="title_tagline"],
	#ast-mobile-header .site-branding,
	#ast-mobile-header .ast-site-identity,
	#ast-mobile-header .site-logo-img,
	#ast-mobile-header .custom-logo-link {
		display: inline-flex;
		align-items: center;
		margin: 0 !important;
		padding: 0 !important;
		line-height: 1;
	}

	#ast-mobile-header .site-logo-img {
		padding-left: 24px !important;
	}

	#ast-mobile-header .custom-logo-link img {
		display: block;
		width: 118px !important;
		max-width: 118px !important;
		height: auto;
	}

	#ast-mobile-header .site-header-primary-section-right {
		align-items: center;
		gap: 0;
		margin-left: auto !important;
		justify-content: flex-end !important;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"],
	#ast-mobile-header [data-section="section-header-mobile-trigger"] .ast-button-wrap {
		flex: 0 0 24px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		margin: 0 !important;
		padding: 0 !important;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] {
		margin-right: 24px !important;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .menu-toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 24px !important;
		min-width: 24px;
		height: 24px !important;
		min-height: 24px;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		line-height: 1 !important;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .mobile-menu-toggle-icon,
	#ast-mobile-header [data-section="section-header-mobile-trigger"] .ahfb-svg-iconset {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		margin: 0;
		padding: 0;
		line-height: 1;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .ast-mobile-svg {
		display: none !important;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .mobile-menu-toggle-icon > .ahfb-svg-iconset {
		position: relative;
		display: none !important;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .menu-toggle[aria-expanded="false"] .mobile-menu-toggle-icon > .ahfb-svg-iconset:first-child,
	#ast-mobile-header [data-section="section-header-mobile-trigger"] .menu-toggle[aria-expanded="true"] .mobile-menu-toggle-icon > .ahfb-svg-iconset:last-child {
		display: inline-flex !important;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .mobile-menu-toggle-icon > .ahfb-svg-iconset::before,
	#ast-mobile-header [data-section="section-header-mobile-trigger"] .mobile-menu-toggle-icon > .ahfb-svg-iconset::after {
		content: "";
		position: absolute;
		display: block;
		height: 1px;
		background: #363D52;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .mobile-menu-toggle-icon > .ahfb-svg-iconset:first-child::before {
		top: 5px;
		left: 1.5px;
		width: 21px;
		box-shadow: 0 6.5px 0 #363D52, 0 13px 0 #363D52;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .mobile-menu-toggle-icon > .ahfb-svg-iconset:first-child::after {
		display: none;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .mobile-menu-toggle-icon > .ahfb-svg-iconset:last-child::before,
	#ast-mobile-header [data-section="section-header-mobile-trigger"] .mobile-menu-toggle-icon > .ahfb-svg-iconset:last-child::after {
		top: 11.5px;
		left: 2.5px;
		width: 19px;
		transform-origin: center;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .mobile-menu-toggle-icon > .ahfb-svg-iconset:last-child::before {
		transform: rotate(45deg);
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] .mobile-menu-toggle-icon > .ahfb-svg-iconset:last-child::after {
		transform: rotate(-45deg);
	}

	#ast-mobile-header .mega-menu__mobile-head-actions {
		flex: 0 0 auto;
		display: flex;
		align-items: center;
		gap: 30px;
		margin: 0 30px 0 0;
		padding: 0;
	}

	#ast-mobile-header .mega-menu__mobile-head-search {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		margin: 0;
		padding: 0;
		overflow: hidden;
		color: #25344a !important;
		text-decoration: none !important;
		box-shadow: none !important;
	}

	#ast-mobile-header .mega-menu__mobile-head-search::before {
		content: "";
		position: absolute;
		left: 3px;
		top: 3px;
		display: block;
		width: 13px;
		height: 13px;
		border: 1px solid currentColor;
		border-radius: 50%;
		box-sizing: border-box;
	}

	#ast-mobile-header .mega-menu__mobile-head-search::after {
		content: "";
		position: absolute;
		left: 13px;
		top: 13px;
		width: 9px;
		border-top: 1px solid currentColor;
		transform: rotate(45deg);
		transform-origin: left center;
	}

	#ast-mobile-header .mega-menu__mobile-head-search:hover,
	#ast-mobile-header .mega-menu__mobile-head-search:focus-visible {
		color: #0070B9 !important;
	}

	#ast-mobile-header .mega-menu__mobile-head-search:hover::before,
	#ast-mobile-header .mega-menu__mobile-head-search:focus-visible::before {
		border-width: 2px;
	}

	#ast-mobile-header .mega-menu__mobile-head-search:hover::after,
	#ast-mobile-header .mega-menu__mobile-head-search:focus-visible::after {
		border-top-width: 2px;
	}

	#ast-mobile-header .mega-menu__mobile-head-language {
		position: relative;
		flex: 0 0 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	#ast-mobile-header .mega-menu__mobile-head-language-item {
		position: relative;
		flex: 0 0 24px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	#ast-mobile-header .mega-menu__mobile-head-language-item > a.menu-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		margin: 0;
		padding: 0 !important;
		line-height: 1;
		text-decoration: none !important;
		box-shadow: none !important;
	}

	#ast-mobile-header .mega-menu__mobile-head-language-item > a.menu-link .wpml-ls-flag {
		display: block;
		width: 21px;
		max-width: 21px;
		height: 14px;
	}

	#ast-mobile-header .mega-menu__mobile-head-language-item > .sub-menu {
		top: calc(100% + 8px);
		right: 0;
		min-width: 64px;
		padding: 8px;
	}

	#ast-mobile-header .mega-menu__mobile-head-language-item > .sub-menu .menu-link {
		min-height: 0;
		padding: 8px !important;
	}

	#ast-mobile-header .mega-menu__mobile-head-language-item > .sub-menu .wpml-ls-flag {
		width: 24px;
		max-width: 24px;
		height: auto;
	}

	#ast-mobile-popup,
	#ast-mobile-popup .ast-mobile-popup-inner,
	#ast-mobile-site-navigation,
	#ast-mobile-site-navigation .main-navigation {
		background: #ffffff;
	}

	#ast-mobile-popup {
		border-top: 0 !important;
		border-image: none !important;
	}

	#ast-mobile-popup .ast-mobile-popup-inner,
	#ast-mobile-site-navigation .main-navigation {
		color: #363D52;
	}

	#ast-mobile-popup .ast-mobile-popup-content,
	#ast-mobile-site-navigation .main-navigation {
		padding: 0 !important;
	}

	#ast-mobile-header .ast-mobile-header-content .ast-header-search,
	#ast-mobile-header .ast-mobile-header-content [data-section="section-header-search"],
	#ast-mobile-popup .ast-header-search,
	#ast-mobile-popup [data-section="section-header-search"] {
		display: none !important;
	}

	.mega-menu__mobile {
		display: block;
		width: 100%;
		padding: 0 17px;
		color: #363D52;
		background: #ffffff;
	}

	.mega-menu__mobile-panel {
		display: flex;
		flex-direction: column;
	}

	.mega-menu__mobile--level2,
	.mega-menu__mobile--level3 {
		padding-top: 20px;
	}

	.mega-menu__mobile-title {
		display: block;
		order: 2;
		margin: 0;
		padding: 10px 0 12px;
		color: #363D52;
		font-family: "DM Sans", sans-serif;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.2;
		text-align: left;
		text-transform: none;
	}

	.mega-menu__mobile-title-link {
		color: #363D52 !important;
		text-decoration: none !important;
	}

	.mega-menu__mobile--level2 .mega-menu__mobile-title,
	.mega-menu__mobile--level3 .mega-menu__mobile-title {
		padding-top: 20px;
		font-size: 18px;
		font-weight: 700;
	}

	.mega-menu__mobile--root .mega-menu__mobile-title {
		display: none;
	}

	.mega-menu__mobile-list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		order: 3;
		gap: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
	}

	.mega-menu__mobile-item a,
	.mega-menu__mobile-item button,
	.mega-menu__mobile-link--static {
		display: flex;
		align-items: center;
		margin: 0;
		padding: 0;
		border: 0;
		appearance: none;
		background: none;
		color: #363D52;
		font-family: "DM Sans", sans-serif;
		font-size: 18px;
		font-weight: 400;
		line-height: 1.2;
		text-align: left !important;
		text-decoration: none !important;
		text-transform: none;
		cursor: pointer;
	}

	.mega-menu__mobile-item {
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		min-height: 54px;
		margin: 0;
		padding: 12px 46px 12px 0;
		border-bottom: 1px solid rgba(54, 61, 82, 0.16);
	}

	.mega-menu__mobile--level2 .mega-menu__mobile-list > .mega-menu__mobile-item:first-child,
	.mega-menu__mobile--level3 .mega-menu__mobile-list > .mega-menu__mobile-item:first-child {
		border-top: 1px solid rgba(54, 61, 82, 0.16);
	}

	.mega-menu__mobile-item > a {
		display: flex;
		width: 100%;
		min-height: 30px;
		text-align: left !important;
	}

	.mega-menu__mobile-item > .mega-menu__mobile-link {
		width: 100%;
		min-height: 30px;
	}

	.mega-menu__mobile--root .mega-menu__mobile-item a,
	.mega-menu__mobile--root .mega-menu__mobile-item button,
	.mega-menu__mobile--root .mega-menu__mobile-link--static {
		font-size: 18px;
	}

	.mega-menu__mobile-toggle {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: auto;
		border-left: 1px solid rgba(54, 61, 82, 0.28) !important;
		transform: none;
	}

	.mega-menu__mobile-toggle-icon {
		display: block;
		width: 9.5px;
		height: 17px;
		color: #25344a;
		fill: none;
		stroke: currentColor;
		stroke-width: 1;
		stroke-linecap: round;
		stroke-linejoin: round;
		pointer-events: none;
	}

	.mega-menu__mobile-toggle::after {
		display: none;
	}

	.mega-menu__mobile--level3 .mega-menu__mobile-item a {
		font-size: 18px;
		font-weight: 400;
		text-transform: none;
	}

	.mega-menu__mobile-back {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		order: 1;
		gap: 10px;
		margin: 0;
		padding: 0;
		border: 0;
		background: transparent;
		color: #0071B4;
		font-family: "DM Sans", sans-serif;
		font-size: 16px;
		font-weight: 400;
		line-height: 1.2;
		text-transform: none;
		cursor: pointer;
	}

	.mega-menu__mobile-back::before {
		content: '';
		display: inline-block;
		width: 12px;
		height: 12px;
		border-bottom: 1px solid currentColor;
		border-left: 1px solid currentColor;
		transform: rotate(45deg);
	}

	#ast-mobile-popup .mega-menu__mobile {
		border-bottom: 0;
	}

	#ast-mobile-popup ul[id^="menu-top"],
	#ast-mobile-popup ul[id*="topbar"],
	#ast-mobile-site-navigation ul[id^="menu-top"],
	#ast-mobile-site-navigation ul[id*="topbar"] {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		margin: 0 !important;
		padding: 6px 17px !important;
		list-style: none !important;
		background: linear-gradient(115deg, #590098 0%, #0071B4 100%);
		border: 0;
		text-align: left;
	}

	#ast-mobile-popup ul[id^="menu-top"] li,
	#ast-mobile-popup ul[id*="topbar"] li,
	#ast-mobile-site-navigation ul[id^="menu-top"] li,
	#ast-mobile-site-navigation ul[id*="topbar"] li {
		display: flex;
		justify-content: flex-start;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	#ast-mobile-popup ul[id^="menu-top"] .wpml-ls-menu-item,
	#ast-mobile-popup ul[id*="topbar"] .wpml-ls-menu-item,
	#ast-mobile-site-navigation ul[id^="menu-top"] .wpml-ls-menu-item,
	#ast-mobile-site-navigation ul[id*="topbar"] .wpml-ls-menu-item {
		display: none !important;
	}

	#ast-mobile-popup ul[id^="menu-top"] a,
	#ast-mobile-popup ul[id*="topbar"] a,
	#ast-mobile-site-navigation ul[id^="menu-top"] a,
	#ast-mobile-site-navigation ul[id*="topbar"] a {
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		max-width: 100%;
		min-height: 44px;
		padding: 8px 0;
		border-bottom: 0;
		color: #ffffff !important;
		font-family: "DM Sans", sans-serif !important;
		font-size: 14px !important;
		font-weight: 400 !important;
		line-height: 1.2;
		letter-spacing: 0;
		text-align: left !important;
		text-decoration: none !important;
		text-transform: none !important;
	}

	#ast-mobile-popup ul[id^="menu-top"] li:not(.wpml-ls-menu-item) + li:not(.wpml-ls-menu-item) > a,
	#ast-mobile-popup ul[id*="topbar"] li:not(.wpml-ls-menu-item) + li:not(.wpml-ls-menu-item) > a,
	#ast-mobile-site-navigation ul[id^="menu-top"] li:not(.wpml-ls-menu-item) + li:not(.wpml-ls-menu-item) > a,
	#ast-mobile-site-navigation ul[id*="topbar"] li:not(.wpml-ls-menu-item) + li:not(.wpml-ls-menu-item) > a {
		border-top: 1px solid rgba(255, 255, 255, 0.75);
	}

	#ast-mobile-popup .mega-menu__topbar-clone[id^="menu-top"],
	#ast-mobile-popup .mega-menu__topbar-clone[id*="topbar"],
	#ast-mobile-site-navigation .main-navigation > .mega-menu__topbar-clone[id^="menu-top"],
	#ast-mobile-site-navigation .main-navigation > .mega-menu__topbar-clone[id*="topbar"] {
		padding: 6px 17px !important;
	}

	.mega-menu__mobile--level2 .mega-menu__mobile-item > *,
	.mega-menu__mobile--level3 .mega-menu__mobile-item > * {
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 1.2;
		text-transform: none;
	}

	.mega-menu__mobile--root .mega-menu__mobile-list {
		gap: 0 !important;
	}

	#ast-mobile-popup .mega-menu__mobile-item,
	#ast-mobile-popup .mega-menu__mobile-item:hover,
	#ast-mobile-popup .mega-menu__mobile-item:focus-within,
	#ast-mobile-popup .mega-menu__mobile-item.is-active,
	#ast-mobile-popup .mega-menu__mobile-item.current-menu-item,
	#ast-mobile-popup .mega-menu__mobile-item.current-menu-ancestor,
	#ast-mobile-popup .mega-menu__mobile-item.current-menu-parent,
	#ast-mobile-site-navigation .mega-menu__mobile-item,
	#ast-mobile-site-navigation .mega-menu__mobile-item:hover,
	#ast-mobile-site-navigation .mega-menu__mobile-item:focus-within,
	#ast-mobile-site-navigation .mega-menu__mobile-item.is-active,
	#ast-mobile-site-navigation .mega-menu__mobile-item.current-menu-item,
	#ast-mobile-site-navigation .mega-menu__mobile-item.current-menu-ancestor,
	#ast-mobile-site-navigation .mega-menu__mobile-item.current-menu-parent {
		background: transparent !important;
		box-shadow: none !important;
	}

	#ast-mobile-popup .mega-menu__mobile-item > a,
	#ast-mobile-popup .mega-menu__mobile-item > button,
	#ast-mobile-popup .mega-menu__mobile-item > a:hover,
	#ast-mobile-popup .mega-menu__mobile-item > button:hover,
	#ast-mobile-popup .mega-menu__mobile-item > a:focus,
	#ast-mobile-popup .mega-menu__mobile-item > button:focus,
	#ast-mobile-popup .mega-menu__mobile-item > a:focus-visible,
	#ast-mobile-popup .mega-menu__mobile-item > button:focus-visible,
	#ast-mobile-popup .mega-menu__mobile-item.current-menu-item > a,
	#ast-mobile-popup .mega-menu__mobile-item.current-menu-ancestor > a,
	#ast-mobile-popup .mega-menu__mobile-item.current-menu-parent > a,
	#ast-mobile-popup .mega-menu__mobile-item.is-active > a,
	#ast-mobile-popup .mega-menu__mobile-item.is-active > button,
	#ast-mobile-site-navigation .mega-menu__mobile-item > a,
	#ast-mobile-site-navigation .mega-menu__mobile-item > button,
	#ast-mobile-site-navigation .mega-menu__mobile-item > a:hover,
	#ast-mobile-site-navigation .mega-menu__mobile-item > button:hover,
	#ast-mobile-site-navigation .mega-menu__mobile-item > a:focus,
	#ast-mobile-site-navigation .mega-menu__mobile-item > button:focus,
	#ast-mobile-site-navigation .mega-menu__mobile-item > a:focus-visible,
	#ast-mobile-site-navigation .mega-menu__mobile-item > button:focus-visible,
	#ast-mobile-site-navigation .mega-menu__mobile-item.current-menu-item > a,
	#ast-mobile-site-navigation .mega-menu__mobile-item.current-menu-ancestor > a,
	#ast-mobile-site-navigation .mega-menu__mobile-item.current-menu-parent > a,
	#ast-mobile-site-navigation .mega-menu__mobile-item.is-active > a,
	#ast-mobile-site-navigation .mega-menu__mobile-item.is-active > button {
		background: transparent !important;
		color: #363D52 !important;
		box-shadow: none !important;
		outline: 0 !important;
	}

	#ast-mobile-popup .mega-menu__mobile-toggle:hover,
	#ast-mobile-popup .mega-menu__mobile-toggle:focus,
	#ast-mobile-popup .mega-menu__mobile-toggle:focus-visible,
	#ast-mobile-popup .mega-menu__mobile-item.is-active > .mega-menu__mobile-toggle,
	#ast-mobile-site-navigation .mega-menu__mobile-toggle:hover,
	#ast-mobile-site-navigation .mega-menu__mobile-toggle:focus,
	#ast-mobile-site-navigation .mega-menu__mobile-toggle:focus-visible,
	#ast-mobile-site-navigation .mega-menu__mobile-item.is-active > .mega-menu__mobile-toggle {
		background: transparent !important;
		color: #363D52 !important;
		box-shadow: none !important;
		outline: 0 !important;
	}

	@media (max-width: 480px) {
		#ast-mobile-header .mega-menu__mobile-head-actions {
			gap: 30px;
			margin-right: 30px;
		}

		.mega-menu__mobile {
			padding-right: 17px;
			padding-left: 17px;
		}

		#ast-mobile-popup ul[id^="menu-top"],
		#ast-mobile-popup ul[id*="topbar"],
		#ast-mobile-site-navigation ul[id^="menu-top"],
		#ast-mobile-site-navigation ul[id*="topbar"] {
			padding-right: 17px !important;
			padding-left: 17px !important;
		}

		#ast-mobile-popup .mega-menu__topbar-clone[id^="menu-top"],
		#ast-mobile-popup .mega-menu__topbar-clone[id*="topbar"],
		#ast-mobile-site-navigation .main-navigation > .mega-menu__topbar-clone[id^="menu-top"],
		#ast-mobile-site-navigation .main-navigation > .mega-menu__topbar-clone[id*="topbar"] {
			padding-right: 17px !important;
			padding-left: 17px !important;
		}

		.mega-menu__mobile-item a,
		.mega-menu__mobile-item button,
		.mega-menu__mobile--level2 .mega-menu__mobile-item > *,
		.mega-menu__mobile--level3 .mega-menu__mobile-item > * {
			font-size: 18px;
		}

		.mega-menu__mobile--root .mega-menu__mobile-item a,
		.mega-menu__mobile--root .mega-menu__mobile-item button {
			font-size: 18px;
		}
	}
}
.ast-builder-menu-mobile .main-navigation .menu-item.current-menu-item > .menu-link, .ast-builder-menu-mobile .main-navigation .inline-on-mobile .menu-item.current-menu-item > .ast-menu-toggle, .ast-builder-menu-mobile .main-navigation .menu-item.current-menu-ancestor > .menu-link, .ast-builder-menu-mobile .main-navigation .menu-item.current-menu-ancestor > .ast-menu-toggle{
	background: unset !important;
}
