/* QPFL Mobile Menu */
.qpfl-mobilemenu-trigger .open-mobile-menu {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	line-height: 1;
	cursor: pointer;
}

.new-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
	width: min(78vw, 435px);
	height: 100dvh;
	max-height: 100vh;
	background: transparent;
	outline: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.new-mobile-menu.active {
	display: block;
}

body.qpfl-mobilemenu-open {
	overflow: hidden;
}

.new-mobile-menu .mobile-menu {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.menu-layer,
.menu-layer-main {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.menu-layer {
	z-index: 1;
	overflow: hidden;
	background: var(--fs-color-primary);
	transform: translateX(-100%);
}

.menu-layer-main {
	z-index: 2;
	overflow: hidden;
	background: #fff;
	transform: translateX(-100%);
}

.menu-layer.active,
.menu-layer-main.active {
	animation: qpfl-mobilemenu-appear 0.25s ease-out forwards;
}

.menu-layer-main.active {
	animation-delay: 0.08s;
}

.close-mobile-menu {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #212121;
	line-height: 1;
	cursor: pointer;
}

.close-mobile-menu svg {
	width: 22px;
	height: 22px;
}

.new-mobile-menu .main-menu {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding-top: 10px;
	overflow: hidden;
}

.menu-layer-logo {
	flex: 0 0 auto;
	padding: 0 64px 12px 20px;
	border-bottom: 1px solid #ddd;
}

.menu-layer-logo .logomobile {
	text-align: left;
	font-weight: 700;
	color: #212121;
}

.menu-layer-logo .logomobile img {
	display: block;
	width: auto;
	max-width: 80px;
	max-height: 48px;
	height: auto;
}

.menu-main-container {
	/*flex: 1 1 auto;*/
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.new-mmenu,
.newsub-menu {
	margin: 0;
	padding: 10px 20px 14px;
	list-style: none;
	background: #fff;
}

.new-mmenu {
	padding-top: 14px;
	padding-bottom: 24px;
}

.newsub-menu {
    padding: 0 0 0 16px;
    border: 0;
    background: #fbfbfb;
}

.newsub-menu[hidden] {
	display: none;
}

.newsub-menu.open {
	display: block;
}

.new-mmenu__item {
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 0;
}

.new-mmenu__item .new-mmenu__item:last-child {
	border-bottom: 0;
}

.new-mmenu__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 40px;
}

.new-mmenu__link {
	flex: 1 1 auto;
	padding: 0;
	color: #212121;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	text-decoration: none;
	text-transform: uppercase;
}

.newsub-menu .new-mmenu__link {
	font-size: 13px;
	font-weight: 600;
	text-transform: none;
}

.newsub-menu .newsub-menu .new-mmenu__link {
	font-size: 12px;
	color: #4b5563;
}

.new-mmenu__link:hover,
.new-mmenu__link:focus,
.new-mmenu li.current-menu-item > .new-mmenu__row .new-mmenu__link,
.new-mmenu li.current_page_item > .new-mmenu__row .new-mmenu__link {
	color: var(--fs-color-primary);
	background: transparent;
}

.has-child > .new-mmenu__row .toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #212121;
	opacity: 1;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, color 0.2s ease;
}

.has-child > .new-mmenu__row .toggle[aria-expanded="true"] {
	color: var(--fs-color-primary);
	transform: rotate(90deg);
}

.has-child > .new-mmenu__row .toggle svg {
	width: 18px;
	height: 18px;
}
.new-mmenu__row.active .new-mmenu__link{
    color:var(--fs-color-primary);
}
.call-action {
	flex: 0 0 auto;
	margin: 0 20px;
	padding-top: 10px;
	border-top: 1px solid #ddd;
}

.call-action ul {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.call-action ul li {
	margin: 0;
	padding: 10px 0 0;
}

.call-action ul li a {
	color: #212121;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
	text-decoration: none;
	text-transform: uppercase;
}

.call-action li.menu-call-action {
	margin-bottom: 12px;
	border: 1px solid #212121;
	text-align: center;
}

.ux-body-overlay {
	z-index: 99;
}

@keyframes qpfl-mobilemenu-appear {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(0);
	}
}
