/****************************************************/
/* Header */

#header_v2 { position: relative; background: #fff;}

/* Top Nav */

.header_top { position: relative; background: var(--color-background-grey); height: 32px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	padding: 0 32px;
}
	.header_top .badges {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		height: 32px;
		column-gap: 12px;
	}
	.header_top .badges .badge {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 8px;
		font-size: 12px;
		line-height: 1em;
	}
	.header_top .badges .badge .google svg { width: 41px; height: 20px;}
	.header_top .badges .badge .trustpilot { margin-top: -4px;}
	.header_top .badges .badge .trustpilot svg { width: 65px; height: 20px;}
	.header_top .badges .badge svg {}
	
	.header_top > ul.header_support {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-end;
		align-items: center;
		height: 32px;
		column-gap: 12px;
	}
	.header_top > ul.header_support > li { position: relative; font-size: 12px; line-height: 44px; white-space: nowrap;}
	.header_top > ul.header_support > li > a,
	.header_top > ul.header_support > li > span { cursor: pointer;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		column-gap: 4px;
	}
	.header_top > ul.header_support > li > span .tel { display: block; width: 16px; height: 16px; line-height: 1em; background: url('../../_assets/svg/tel.svg') no-repeat center center; background-size: contain;}
	.header_top > ul.header_support > li > a .chat { display: block; width: 16px; height: 16px; line-height: 1em; background: url('../../_assets/svg/chat.svg') no-repeat center center; background-size: contain;}
	.header_top > ul.header_support > li > span > .arrow { display: block; width: 20px; height: 20px; transform: rotate(90deg); line-height: 1em; transition: transform .3s;}
	.header_top > ul.header_support > li > span.active > .arrow { transform: rotate(270deg);}
	.header_top > ul.header_support > li > ul { display: block; visibility: hidden; opacity: 0; position: absolute; top: 100%; left: 50%; margin-left: -110px; width: 220px; max-height: 400px; overflow-y: scroll; background: #fff; z-index: 9991; transition: opacity .5s; box-shadow: var(--menu-shadow);}
	.header_top > ul.header_support > li > ul.visible { visibility: visible; opacity: 1;}
	
	/* Content Dropdown */
	
	#select_contact {}
	#select_contact_menu { overflow: auto; padding: 16px 0;}
	#select_contact_menu > li { display: block;}
	#select_contact_menu > li > a {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 12px;
		padding: 8px 16px;
	}
	#select_contact_menu > li > a .ico { display: block; width: 24px; height: 24px; line-height: 1em; background: no-repeat center center; background-size: contain;}
	#select_contact_menu > li > a .tel { background-image: url('../../_assets/svg/tel.svg');}
	#select_contact_menu > li > a .whatsapp { background-image: url('../../_assets/svg/whatsup.svg');}
	#select_contact_menu > li > a div { font-size: 14px; line-height: 20px;}
	#select_contact_menu > li > a span { display: block; font-size: 12px; color: #7E8188; line-height: 1em;}
	#select_contact_menu > li > a:hover { background: var(--color-background-grey);}
	
	@media (min-width: 768px) and (max-width: 1200px) {
		.header_top > ul > li.select_region > ul { margin-left: 0; left: auto; right: 0;}
	}
	
	@media (max-width: 767px) {
		.header_top { display: none;}
	}

/* Main Header block */

.header_main {
	position: relative;
	height: 64px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	column-gap: 12px;
	padding: 0 20px 0 24px;
}
	.header_main .header_main_left {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 12px;
	}
	#open_mobile_menu { display: block; width: 40px; height: 40px; cursor: pointer; border-radius: 3px; transition: background .5s; background: url('../../_assets/svg/menu.svg') no-repeat center center;}
	#open_mobile_menu:hover { background-color: var(--color-background-grey);}
	
	/* Region Dropdown */
	
	#select_region { font-size: 14px; line-height: 44px;
		position: relative;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		column-gap: 8px;
		transition: background .5s;
		padding: 0 12px;
		cursor: pointer;
	}
	#select_region:hover { background-color: var(--color-background-grey);}
	#select_region img { border-radius: 50%;}
	#select_region > .arrow { display: block; width: 20px; height: 20px; transform: rotate(90deg); line-height: 1em; transition: transform .3s;}
	#select_region_menu { padding: 16px 0; display: block; visibility: hidden; opacity: 0; position: absolute; top: 100%; right: 20px; width: 240px; max-height: 400px; overflow-y: scroll; background: #fff; z-index: 9991; transition: opacity .5s; box-shadow: var(--menu-shadow);
	}
	#select_region_menu.visible { visibility: visible; opacity: 1;}
	#select_region_menu > li { display: block;}
	#select_region_menu > li > button { display: block; width: 100%; background: #fff; padding: 8px 16px; margin: 0; border: none; color: var(--color-primary);
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 12px;
	}
	#select_region_menu > li:nth-child(4) { border-bottom: 1px solid var(--color-border-grey);}
	#select_region_menu > li > button:hover { background: rgb(202, 255, 235);}
	#select_region_menu > li > button i img { border-radius: 50%;}
	#select_region_menu > li > button span { display: inline-block; font-size: 14px;}
	
	@media (max-width: 767px) {
		.header_main { height: 52px; padding: 0 10px 0 14px;}
		.header_main #logo { max-width: 144px;}
		#open_mobile_menu { width: 40px; height: 40px;}
		#select_region_menu { right: 0;}
	}

/* LE Header Menu */

.header_menu {
	position: relative;
	height: 48px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	column-gap: 12px;
	padding: 0 32px 0 20px;
	white-space: nowrap;
	border-top: 1px solid var(--color-border-grey);
	border-bottom: 1px solid var(--color-border-grey);
}
	.header_menu > nav { display: inline-block;}
	
	/* Scroll */
	
	.header_menu::-webkit-scrollbar { height: 0px;}
	.header_menu::-webkit-scrollbar-track { background: #fff;}
	.header_menu::-webkit-scrollbar-thumb { background-color: var(--color-background-grey); border-radius: 10px;}
	
	/* Menu */
	
	.header_menu > nav > ul {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.header_menu > nav > ul > li { display: inline-block; position: relative;}
	.header_menu > nav > ul > li > a,
	.header_menu > nav > ul > li > span { position: relative; padding: 0 12px; height: 48px; color: var(--color-primary); white-space: nowrap; line-height: 1em; font-size: 14px; font-weight: 500; transition: background-color 0.5s; cursor: pointer; text-align: start; box-sizing: border-box; vertical-align: middle;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 8px;
	}
	.header_menu > nav > ul > li > a:hover,
	.header_menu > nav > ul > li > span:hover { color: var(--color-primary); background: var(--color-background-grey);}
	.header_menu > nav > ul > li.active a { box-shadow: inset 0 -4px 0 0 var(--color-primary);}
	.header_menu > nav > ul > li > a .go { display: none;}
	.header_menu > nav > ul > li > span > i.more { display: inline-block; width: 24px; height: 24px; transform: rotate(90deg); transition: transform .3s; background: url('../../_assets/svg/arrow.svg') no-repeat center center; background-size: contain;}
	.header_menu > nav > ul > li > span.active > i.more { transform: rotate(270deg);}
	.header_menu > nav > ul > li > a .svg { display: inline-block; width: 24px; height: 24px; line-height: 1em; transform: scale(0.83);}
	.header_menu > nav > ul > li > a .new { position: absolute; top: 2px; right: 0; border-radius: 15px; font-size: 10px; font-weight: 500; font-style: normal; line-height: 15px; padding: 0 3px; background: rgb(239, 80, 95); color: #fff;}
	
	.header_menu > nav > ul > li > ul { display: block; visibility: hidden; opacity: 0; position: absolute; top: 100%; left: 50%; margin-left: -110px; width: 220px; background: #fff; padding: 16px 0; transition: opacity .5s; z-index: 9991; box-shadow: var(--menu-shadow);}
	.header_menu > nav > ul > li > ul > li { display: block; position: relative;}
	.header_menu > nav > ul > li > ul > li > a { display: block; position: relative; padding: 11px 16px; color: var(--color-primary); white-space: nowrap; line-height: 1em; font-size: 14px; font-weight: 400; transition: background-color 0.5s;}
	.header_menu > nav > ul > li > ul > li > a:hover { color: var(--color-primary); background: var(--color-background-grey);}
	.header_menu > nav > ul > li > ul.visible { visibility: visible; opacity: 1;}
	
	/* Special Links */
	
	.special_links {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 12px;
	}
	.special_links a { 
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 8px;
		font-size: 12px;
		color: #868993;
	}
	.special_links a .societe { width: 100px; height: 20px; background: url('../../_assets/svg/le_societe_logo.svg') no-repeat center center; background-size: contain;}
	.special_links a .luxplus { width: 88px; height: 20px; background: url('../../_assets/svg/le_luxplus_logo.svg') no-repeat center center; background-size: contain;}
	
	.header_menu > nav > ul li.on_tab { display: none;}
	.header_menu > nav > ul li.on_mob { display: none;}
	.header_menu > nav > ul > li.off_tab { display: inline-block;}
	.header_menu > nav > ul > li.off_mob { display: inline-block;}
	.header_menu > nav > ul > li > ul > li.off_tab { display: block;}
	.header_menu > nav > ul > li > ul > li.off_mob { display: block;}
	
	@media (max-width: 1440px) {
		.header_menu > nav > ul > li.on_tab { display: inline-block;}
		.header_menu > nav > ul > li > ul > li.on_tab { display: block;}
		.header_menu > nav > ul li.on_mob { display: none;}
		.header_menu > nav > ul li.off_tab { display: none;}
		.header_menu > nav > ul > li.off_mob { display: inline-block;}
		.header_menu > nav > ul > li > ul > li.off_mob { display: block;}
	}
	@media (max-width: 1300px) {
		.header_menu > nav > ul > li.on_tab { display: inline-block;}
		.header_menu > nav > ul > li.on_mob { display: inline-block;}
		.header_menu > nav > ul > li > ul > li.on_tab { display: block;}
		.header_menu > nav > ul > li > ul > li.on_mob { display: block;}
		.header_menu > nav > ul li.off_tab { display: none;}
		.header_menu > nav > ul li.off_mob { display: none;}
	}
	
	@media (max-width: 1020px) {
		.special_links a > span { display: none;}
	}
	
	@media (max-width: 767px) {
		.header_menu { height: 38px; padding: 0 30px 0 10px; scrollbar-width: auto; scrollbar-height: 0; scrollbar-color: #fff #fff; overflow-y: hidden; padding-right: 30px;}
		.header_main:after { content: ''; position: absolute; top: calc(100% + 1px); right: 0; width: 20px; height: 36px; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); z-index: 99;}
		.header_menu > nav > ul > li.has_dropdown { display: none;}
		.header_menu > nav > ul > li > span,
		.header_menu > nav > ul > li > a { height: 38px;}
	}

/****************************************************/
/* Fixed Nav Panel */

main { position: relative; display: block;}

.block_key { position: absolute; top: 0; left: 0; width: 100%;  background: rgba(255, 255, 255, 1); z-index: 999; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);}
	body.admin-bar .block_key.fixed { margin-top: 32px;}
	.block_key.stickOnScroll-on {}
	.block_key .wrap {
		position: relative;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		height: 56px;
		column-gap: 12px;
		padding: 0 32px 0 20px;
		border-bottom: 1px solid var(--color-border-grey);
		width: 100%;
	}
	.block_key .wrap .lhs {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		height: 56px;
	}
	
	/* Home Crumbs (replace breadcumbs on home page) */
	
	.home_crumbs {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		height: 56px;
	}
	.home_crumbs a { position: relative; display: inline-block; white-space: nowrap; padding: 0 12px; font-size: 14px; line-height: 56px; color: #363A45; font-weight: 500; transition: .3s;}
	.home_crumbs a:hover { background: var(--color-background-grey);}
	
	/* Original Breadcrumbs */
	
	.breadcrumbs {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		height: 56px;
		gap: 3px;
	}
	.breadcrumbs a,
	.breadcrumbs span { display: inline-block; padding: 10px 2px; color: var(--color-primary); font-size: 14px; font-weight: 400;}
	.breadcrumbs a:hover { text-decoration: underline;}
	.breadcrumbs i { display: inline-block; width: 18px; height: 18px;}
	.breadcrumbs span { opacity: 0.5;}
	
	/* Rank Math Breadcrumbs */
	
	.rank-math-breadcrumb p {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		height: 56px;
		gap: 3px;
		margin-left: 12px;
	}
	.rank-math-breadcrumb a,
	.rank-math-breadcrumb span { display: inline-block; padding: 10px 2px; color: var(--color-primary); font-size: 14px; font-weight: 400; white-space: nowrap;}
	.rank-math-breadcrumb span.separator { display: inline-block; width: 18px; height: 18px; background: url('../../_assets/svg/arrow.svg') no-repeat center center; background-size: contain;}
	.rank-math-breadcrumb a:hover { text-decoration: underline;}
	.rank-math-breadcrumb span.last { opacity: 0.5;}
	
	/* Search */
	
	#searchform { position: relative; width: 70%; max-width: 400px;}
	#searchform input { display: block; width: 100%; padding: 0 10px 0 40px; background: var(--color-background-grey); color: var(--color-primary); height: 40px; font-size: 16px; line-height: 40px; border: 1px solid var(--color-background-grey); box-shadow: none; transition: none; border-radius: 0;}
	#searchform input:focus { border-color: rgba(0,0,0,0.2);}
	#searchform button { position: absolute; width: 40px; height: 40px; margin: 0; padding: 0; top: 0; left: 0; background: none; border: none; color: var(--color-primary);
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
	}
	#searchform button i { display: block; width: 20px; height: 20px;}
	
	@media (max-width: 767px) {
		.block_key .wrap { height: 50px; padding: 0 20px 0 10px;}
		.home_crumbs,
		.breadcrumbs,
		.rank-math-breadcrumb { display: none;}
		#searchform {}
	}
	
	@media screen and (max-width: 767px) {
		html #wpadminbar { top: 0; position: fixed;}
		body.admin-bar .block_key.stickOnScroll-on { margin-top: 14px;}
	}

/****************************************************/	
/* Mega Menu */
	
#lux_mega_menu { position: relative; cursor: pointer; transition: background .5s;
	padding: 0 12px; font-size: 14px; line-height: 56px; color: #363A45; font-weight: 600;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	column-gap: 4px;
	white-space: nowrap; 
}
	#lux_mega_menu > i.more { display: inline-block; width: 20px; height: 20px; transform: rotate(90deg); transition: transform .3s; background: url('../../_assets/svg/arrow.svg') no-repeat center center; background-size: contain;}
	#lux_mega_menu.active > i.more { transform: rotate(270deg);}
	#lux_mega_menu:hover { background: var(--color-background-grey);}
	
	@media (max-width: 767px) {
		.block_key #lux_mega_menu { padding: 0 10px; line-height: 50px;}
		.block_key.stickOnScroll-on #lux_mega_menu {}
	}
	
	/* Dropdown Blog Menu */
	
	#mega_menu { position: absolute; display: block; visibility: hidden; top: 100%; left: 0; opacity: 0; width: 100%; background: #fff; z-index: 991; transition: opacity .5s; box-shadow: 0 0 2px rgba(0,0,0,0.1), 0 5px 17px rgba(0,0,0,0.05)}
	#mega_menu.visible { visibility: visible; opacity: 1;}
	#mega_menu #close_mega_menu { display: none;}
	#mega_menu .inner { 
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
		padding: 30px 30px 30px 20px;
		gap: 30px;
	}
	#mega_menu .inner .group { display: block;}
	#mega_menu .inner .group.g0 { display: none;}
	#mega_menu .inner .group.g1,
	#mega_menu .inner .group.g2 { width: calc((60% - 60px - 300px) / 2);}
	#mega_menu .inner .group.g3 { width: 20%;}
	#mega_menu .inner .group.g4 { width: 20%;}
	#mega_menu .inner .group.g5 { width: 300px;}
	#mega_menu .inner .group .label { display: block; font-family: "Suisse Works", serif; font-size: 14px; padding: 8px 0; margin: 0 10px; border-bottom: 1px solid var(--color-border-grey); border-radius: 3px;}
	#mega_menu .inner .group.g5 .label { margin: 0 0 16px 0;}
	#mega_menu .inner .group ul { padding: 16px 0;}
	#mega_menu .inner .group ul > li { display: block;}
	#mega_menu .inner .group ul > li > a { display: block; padding: 8px 10px; font-size: 14px; font-weight: 500; line-height: 1.2em;}
	#mega_menu .inner .group ul > li > a:hover { background: var(--color-background-grey);}
	#mega_menu .inner .group ul > li.all > a { text-decoration: underline; margin-top: 10px;}
	#mega_menu .inner .group ul > li.all > a:hover { background: none; color: #000;}
	#mega_menu .inner .group ul.list_posts {}
	#mega_menu .inner .group ul.list_posts > li > a {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		padding: 10px;
		column-gap: 15px;
	}
	#mega_menu .inner .group ul.list_posts > li > a > figure { position: relative; display: block; width: 50px; height: 50px;}
	#mega_menu .inner .group ul.list_posts > li > a > figure img { max-width: none; max-height: none; height: 100%; width: 100%; object-fit: cover;}
	#mega_menu .inner .group ul.list_posts > li > a > div { width: calc(100% - 65px); max-height: 50px;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
	@media (max-width: 1200px) {
		#mega_menu .inner .group.g1,
		#mega_menu .inner .group.g2 { width: calc((50% - 60px) / 2);}
		#mega_menu .inner .group.g3 { width: 25%;}
		#mega_menu .inner .group.g4 { width: 25%;}
		#mega_menu .inner .group.g5 { display: none;}
	}
	
	@media (max-width: 900px) {
		#mega_menu .inner .group.g1,
		#mega_menu .inner .group.g2 { width: calc((60% - 60px) / 2);}
		#mega_menu .inner .group.g3 { width: 40%;}
		#mega_menu .inner .group.g4 { display: none;}
		#mega_menu .inner .group.g5 { display: none;}
	}
	
	@media (max-width: 767px) {
		#mega_menu { position: fixed; z-index: 9991; width: 100%; top: 0; overflow-y: scroll; padding-top: 50px;}
		body.admin-bar #mega_menu { height: calc(100% - 46px); top: 46px;}
		#mega_menu #close_mega_menu { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 50px; background: #fff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); z-index: 9992;}
		#mega_menu #close_mega_menu span { display: block; position: absolute; top: 5px; left: 14px; width: 40px; height: 40px; background: url('../../_assets/svg/close.svg') no-repeat center center; cursor: pointer;}
		#mega_menu #close_mega_menu span:hover { background-color: var(--color-background-grey);}
		#mega_menu .inner { 
			flex-direction: column;
			flex-wrap: wrap;
			justify-content: flex-start;
			align-items: flex-start;
			padding: 0 10px;
			gap: 30px;
		}
		#mega_menu .inner .group.g0 { display: block; width: 100%; padding-top: 16px;}
		#mega_menu .inner .group.g1,
		#mega_menu .inner .group.g2 { display: block; width: 100%;}
		#mega_menu .inner .group.g3,
		#mega_menu .inner .group.g4,
		#mega_menu .inner .group.g5 { display: block; width: 100%;}
		#mega_menu .inner .group .label { font-size: 14px; padding: 8px 0; opacity: 0.6;}
		#mega_menu .inner .group ul { padding: 0;}
		#mega_menu .inner .group ul > li > a { display: block; padding: 12px 10px; font-size: 15px; font-weight: 500; line-height: 1.2em; border-bottom: 1px solid var(--color-background-grey);}
		#mega_menu .inner .group ul > li > a:hover { background: var(--color-background-grey);}
		#mega_menu .inner .group ul > li.all > a { text-decoration: underline; margin-top: 10px;}
		#mega_menu .inner .group ul > li.all > a:hover { background: none; color: #000;}
	}

/****************************************************/	
/* Mobile Menu - Main */

body.has_menu_modal { overflow: hidden; height: 100%;}
	body.has_menu_modal:after { content: ''; display: block; position: fixed; top: 0; z-index: 99999; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); transition: .3s;}
	
#main_mobile_menu { display: none; position: fixed; top: 0; left: 0; width: 400px; height: 100%; background: #fff; overflow-y: scroll; z-index: 999991; padding: 70px 0 50px 0;}
	#main_mobile_menu.visible { display: block;}
	
	.trigger_mobile_menu { visibility: hidden; position: fixed; top: 0; left: 0; width: 400px; height: 70px; background: #fff; cursor: pointer; transition: background .5s; z-index: 999991;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		column-gap: 12px;
		padding: 0 30px 0 20px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	#main_mobile_menu.visible .trigger_mobile_menu { visibility: visible;}
	.trigger_mobile_menu span { display: block; width: 42px; height: 42px; background: url('../../_assets/svg/close.svg') no-repeat center center; cursor: pointer;}
	.trigger_mobile_menu:hover span { background-color: var(--color-background-grey);}
	
	@media (max-width: 500px) {
		#main_mobile_menu { width: 100%;}
		.trigger_mobile_menu { width: 100%;}
	}
	
	#main_mobile_menu nav { position: relative;}
	#main_mobile_menu nav > ul { display: block; padding-bottom: 4px;}
	#main_mobile_menu nav ul > li { display: block; position: relative; width: 100%; margin: 4px 0;}
	#main_mobile_menu nav ul li > a,
	#main_mobile_menu nav ul li > span { display: block; position: relative; width: 100%; padding: 8px 24px; border-radius: 2px; font-size: 14px; font-weight: 400; color: var(--color-primary);
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 12px;
	}
	#main_mobile_menu nav ul li.active > a,
	#main_mobile_menu nav ul li > span:hover,
	#main_mobile_menu nav ul li > a:hover { background: var(--color-background-grey);}
	#main_mobile_menu nav ul li > a .icon { display: inline-block; width: 20px; height: 20px;}
	#main_mobile_menu nav ul li > a .icon svg { width: 20px; height: 20px;}
	
	#main_mobile_menu nav > ul.sub { border-bottom: 1px solid var(--color-border-grey);}
	#main_mobile_menu nav > ul.sub li > span.hasmore { cursor: pointer;}
	#main_mobile_menu nav > ul.sub li > span .more { display: block; position: absolute; top: 0; right: 0; width: 40px; height: 40px; background: url('../../_assets/svg/arrow.svg') no-repeat center center; transition: transform .3s; transform: rotate(90deg);}
	#main_mobile_menu nav > ul.sub li > span.hasmore.active .more { transform: rotate(-90deg);}
	#main_mobile_menu nav > ul.sub li.has_dropdown > .dropdown_module { visibility: hidden; opacity: 0; height: 0; transition: .3s; padding: 0;}
	#main_mobile_menu nav > ul.sub li.has_dropdown > .dropdown_module.visible { visibility: visible; opacity: 1; height: auto; padding: 8px 0;}
	#main_mobile_menu nav > ul.sub li.has_dropdown > .dropdown_module > li { margin: 0;}
	#main_mobile_menu nav > ul.sub li.has_dropdown > .dropdown_module > li a { padding-left: 48px;}
	
	/* Special Links */
	
	#main_mobile_menu .special_links {
		display: flex;
		flex-direction: column-reverse;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		row-gap: 8px;
		padding: 8px 0; 
		border-bottom: 1px solid var(--color-border-grey);
	}
	#main_mobile_menu .special_links a { 
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 8px;
		font-size: 12px;
		color: #868993;
		padding: 12px 24px;
		width: 100%;
	}
	#main_mobile_menu .special_links a:hover { background: var(--color-background-grey);}
	#main_mobile_menu .special_links a > span { display: block !important;}
	
	/* Contact Support */
	
	.sub_mobile_menu.support { display: block; padding: 8px 0; border-bottom: 1px solid var(--color-border-grey);}
	.sub_mobile_menu.support > li { display: block;}
	.sub_mobile_menu.support > li > a {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 12px;
		padding: 12px 24px;
	}
	.sub_mobile_menu.support > li > a .ico { display: block; width: 20px; height: 20px; line-height: 1em; background: no-repeat center center; background-size: contain;}
	.sub_mobile_menu.support > li > a .tel { background-image: url('../../_assets/svg/tel.svg');}
	.sub_mobile_menu.support > li > a .whatsapp { background-image: url('../../_assets/svg/whatsup.svg');}
	.sub_mobile_menu.support > li > a .chat { background-image: url('../../_assets/svg/chat.svg');}
	.sub_mobile_menu.support > li > a div { font-size: 16px; line-height: 24px;}
	.sub_mobile_menu.support > li > a span { display: block; font-size: 12px; color: #7E8188; line-height: 1.2em;}
	.sub_mobile_menu.support > li > a:hover { background: var(--color-background-grey);}
	
	/* Region Dropdown */
	
	.sub_mobile_menu.regions { display: block; padding: 8px 0; border-bottom: 1px solid var(--color-border-grey);}
	.sub_mobile_menu.regions > li { display: block; position: relative;}
	.sub_mobile_menu.regions > li > #select_region {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 12px;
		padding: 8px 48px 8px 24px;
		font-size: 14px !important;
	}
	.sub_mobile_menu.regions > li > .expander { display: block; position: absolute; top: 10px; right: 0; width: 40px; height: 40px; background: url('../../_assets/svg/arrow.svg') no-repeat center center; transition: transform .3s; transform: rotate(90deg);}
	.sub_mobile_menu.regions > li.opened > .expander { transform: rotate(270deg);}

	.sub_mobile_menu.regions img { border-radius: 50%;}
	.sub_mobile_menu.regions #select_region_menu { padding: 0; position: relative; visibility: visible; opacity: 1; right: auto; top: 0; max-height: auto; height: auto; width: 100%; box-shadow: none; overflow-y: visible;}
	.sub_mobile_menu.regions #select_region_menu > li { display: block;}
	.sub_mobile_menu.regions #select_region_menu > li > button { display: block; width: 100%; background: #fff; padding: 12px 24px; margin: 0; border: none;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		column-gap: 12px;
	}
	.sub_mobile_menu.regions #select_region_menu > li:nth-child(4) { border-bottom: 1px solid var(--color-border-grey);}
	.sub_mobile_menu.regions #select_region_menu > li > button:hover { background: rgb(202, 255, 235);}
	.sub_mobile_menu.regions #select_region_menu > li > button i img { border-radius: 50%;}
	.sub_mobile_menu.regions #select_region_menu > li > button span { display: inline-block; font-size: 14px;}



