#mobile-menu:has( .top-menu.opened) {
	background: #fff;
}
#mobile-menu .header {
	background-color: #f4f4f4;
	display: block;
	font-size: 0;
	height: 152px;
	overflow: hidden;
	width: 100%;
}
#mobile-menu .header .header-top {
	align-items: center;
	display: flex;
	height: 96px;
	padding: 16px;
}

#mobile-menu .header .header-top .search-button {
	background: url(/static/g/search.svg) no-repeat center center;
	border: none;
	cursor: pointer;
	display: block;
	height: 28px;
	margin-left: auto;
	overflow: hidden;
	width: 32px;
}

#mobile-menu .header .header-top .languages {
	border-left: 1px solid #FFFFFF70;
	color: #1A5632;
	display: inline-block;
	font: 14px/32px roman;
	font-weight: 800;
	margin: 1px 0 0 16px;
	position: relative;
	text-decoration: none;
	vertical-align: top;
}

#mobile-menu .header .header-bottom {
	align-items: center;
	background-color: #fff;
	display: flex;
	height: 56px;
	justify-content: space-between;
	padding-right: 16px;
}

#mobile-menu .header .header-bottom .component-include {
	display: block;
	font-size: 12px;
	min-width: 65px;
}

#mobile-menu .header a {
	display: inline-block;
	vertical-align: middle;
}

#mobile-menu .header a.hamburger {
	background: url(/static/g/hamburger.svg) no-repeat center center;
	height: 56px;
	transition: all 0.5s;
	width: 60px;
}

#mobile-menu .header a.hamburger.opened {
	background: url(/static/g/close.svg) no-repeat center center;
}

#mobile-menu .header a.logo {
	background: url(/static/g/logo.svg) no-repeat left top;
	height: 64px;
	width: 128px;
}

#mobile-menu .top-menu {
	display: none;
	padding: 16px 16px 0 16px;
	position: relative;
}

#mobile-menu .top-menu.opened::before {
	background-color: #e6e6e6;
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	top: 0;
	width: calc(100% - 32px);
}

#mobile-menu .top-menu .wrapper {
	background-color: #e9f5ec;
	border: 1px solid #cadecf;
	border-radius: 16px;
}

#mobile-menu .top-menu a {
	border-bottom: 1px solid #cadecf;
	color: #1a5632;
	display: block;
	font: 14px/24px heavy;
	min-height: 48px;
	padding: 12px 20px;
}

#mobile-menu .top-menu nav:last-child a:last-child {
	border-bottom: none;
}

/* NAV MAINMENU */
#mobile-menu nav.main-menu {
	background: #fff;
	display: none;
	padding: 16px;
}

#mobile-menu nav.main-menu > ul {
	background-color: #f4f4f4;
	border: 1px solid #e9e9e9;
	border-radius: 16px;
	padding-left: 0;
	margin-bottom: 0;
}

/* Első szint */
#mobile-menu nav.main-menu ul li a {
	border-bottom: 1px solid #e9e9e9;
	color: #1a5632;
	display: block;
	font: 14px/24px heavy;
	min-height: 48px;
	padding: 12px 20px;
	position: relative;
	text-decoration: none;
}

#mobile-menu nav.main-menu ul li.parent a:after {
	border-right: 2px solid #666;
	border-top: 2px solid #666;
	content: '';
	display: block;
	height: 8px;
	position: absolute;
	right: 20px;
	top: 19px;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	transition: all 0.5s;
	width: 8px;
}

#mobile-menu nav.main-menu ul li:last-child a {
	border-bottom: none;
}

#mobile-menu nav.main-menu ul li.opened a {
	color:#1a5632;
}

#mobile-menu nav.main-menu ul li.opened a:after {
	border-right: 2px solid #666;
	border-top: 2px solid #666;
	content: '';
	display: block;
	height: 8px;
	position: absolute;
	right: 20px;
	top: 23px;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 8px;
}

#mobile-menu nav.main-menu ul li.cart a {
	color: #1a5632;
}
/* /Első szint */

/* Második szint */
#mobile-menu nav.main-menu ul ul {
	background-color: #fafafa;
	display: none;
	padding-left: 0;
}

#mobile-menu nav.main-menu ul li.parent ul li a {
	color: #1a5632;
	font: normal 14px/24px Arial;
}

#mobile-menu nav.main-menu ul li.parent ul li a:after {
	content: none;
}

#mobile-menu nav.main-menu ul li.parent ul li.parent a:after {
	border-right: 2px solid #666;
	border-top: 2px solid #666;
	content: '';
	display: block;
	height: 8px;
	position: absolute;
	right: 20px;
	top: 19px;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	width: 8px;
}

#mobile-menu nav.main-menu ul li.parent ul li.opened {
	border-bottom: 1px solid #e9e9e9;
}

#mobile-menu nav.main-menu ul li.parent ul li.opened a {
	border-bottom: none;
	color:#1a5632;
}

#mobile-menu nav.main-menu ul li.parent ul li.opened a:after {
	border-right: 2px solid #666;
	border-top: 2px solid #666;
	content: '';
	display: block;
	height: 8px;
	position: absolute;
	right: 20px;
	top: 23px;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 8px;
}
/* /Második szint */

/* Harmadik szint */
#mobile-menu nav.main-menu ul ul ul {
	border-left: 2px solid #3dae2b;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 12px 0 12px 20px;
}

#mobile-menu nav.main-menu ul ul li:last-child ul {
	border-bottom: none;
}

#mobile-menu nav.main-menu ul li.parent ul li.parent ul li a {
	border: none;
	color: #1a5632;
	font: normal 14px/24px Arial;
	min-height: 24px;
	padding: 0 20px;
	text-transform: none;
}

#mobile-menu nav.main-menu ul li.parent ul li.parent ul li a.active {
	color: #1a5632;
}

#mobile-menu nav.main-menu ul li.parent ul li.parent ul li a:after {
	content: none;
}

#mobile-menu .popular-apps .app-tracking {
	background-color: #f1f1f1;
	border-bottom: 1px solid #cbcbcb;
	display: none;
	padding: 15px;
}

#mobile-menu .popular-apps .app-tracking label {
	font-size: 0;
}
/* /Harmadik szint */
/* /NAV MAINMENU */

@media (min-width: 768px) {
	#mobile-menu .header .header-top {
		padding: 16px 24px;
	}
}

@media (min-width: 1024px) {
	#mobile-menu {
		display: none;
	}
}