.hide-orders a.orders,
.hide-orders li.orders {
	display: none;
}

.hide-discover a.discover,
.hide-discover li.discover {
	display: none !important;
}

.hide-purchase-logo li.purchase-logo {
	display: none !important;
}

body li.users {
	display: none;
}

body.administrator li.users,
body.branch-admin li.users {
	display: flex;
}

.my-products li.requests {
	display: none !important;
}

.header {
	/* position: fixed; */
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100;
}

body.admin-bar header.header {
	top: 32px;
}

@media screen and (max-width: 1024px) {
	header {
		position: static !important;
	}
}

.header-notice {
	font-size: 14px;
	padding-block: 10px;
	color: #fff;
	text-align: center;
	background: var(--primary-color);
	padding-inline: 5px;
	font-weight: 500;
	display: flex;
	justify-content: center;
}

.header-main {
	background: var(--secondary-color);
	height: 90px;
	padding-inline: 30px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
	position: relative;
}

@media (max-width:1158px) {
	.header-main {
		padding-inline: 15px;
	}
}

@media (max-width: 1024px) {
	.header-main {
		height: 65px;
		padding-inline: 10px;
		box-shadow: none;
	}

	.header-mobile {
		box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
	}
}

.header-left {
	display: flex;
	height: 100%;
}

.header-logo-link {
	height: 100%;
	display: flex;
	align-items: center;
	margin-right: 20px;
}

img.header-logo {
	max-height: 40px;
	max-width: 150px;
	width: 100%;
	min-width: 50px;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.header-logo {
		max-height: 30px;
	}

	.header-nav {
		display: none;
	}

	.header-logo-link {
		margin-right: 0px;
	}
}

nav.header-nav #menu-primary-nav {
	gap: 10px;
}

.header-main .header-nav-link {
	color: var(--secondary-contrast-color);
	padding: 10px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0);
	transition: 0.1s all;
}

.header-main .current_page_parent>a,
.header-main .current-menu-item>a,
.header-main .header-nav-link:hover {
	background-color: color-mix(in oklab, var(--secondary-color), var(--secondary-contrast-color) 5%);
}

.header-main .header-nav-link .svg-icon {
	margin-right: 7px;
}

.all-products-menu-link a:after {
	content: "";
	background: url(../images/chevron-down_white.svg) no-repeat center;
	background-size: contain;
	width: 8px;
	height: 8px;
	display: inline-flex;
	margin-left: 5px;
	opacity: 0.5;
	transition: 0.4s all;
	filter: var(--secondary-color-filter);
}

.header-main .all-products-menu-link.active .header-nav-link:after {
	transform: rotate(-180deg);
}

.header-main .all-products-menu-link a:hover:after {
	opacity: 1;
}

.header-submenu {
	background-color: var(--tertiary-color);
	color: var(--tertiary-contrast-color);
	position: relative;
	z-index: -3;
}

.header-submenu .header-nav-link {
	color: var(--tertiary-contrast-color);

	&:hover {
		color: var(--tertiary-contrast-color);
	}
}

.header-submenu .header-submenu-container {
	max-width: var(--container-width);
	padding-inline: 25px;
	margin: 0 auto;
}

.header-submenu-split {
	height: 60px;
	display: flex;
	justify-content: space-between;
	border-bottom: solid 1px hsla(0, 0%, 44%, 0.2);
}

@media (max-width: 1024px) {
	.header-submenu {
		display: none;
	}
}

.header-nav-ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 32px;
	height: 100%;
}

.header-nav-link {
	display: flex;
	align-items: center;
	color: var(--secondary-contrast-color-dimmed);
	text-decoration: none;
	font-weight: 400;
	font-size: 14px;
	transition: all 0.2s ease;
}

.header-nav-link-notification {
	width: 16px;
	height: 16px;
	border-radius: 100%;
	font-size: 10px;
	display: block;
	color: white;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-color);
	margin-left: -10px;
}

.header-nav-link:hover {
	color: var(--secondary-contrast-color);
}

.header-nav-li {
	display: flex;
	align-items: center;
	height: 100%;
}

.header-submenu .current_page_parent>a,
.header-submenu .current-menu-item>a {
	color: var(--primary-color);
}

.header-nav .menu-item-has-children .sub-menu li.menu-item a:after {
	display: none;
}

/* #region Search */
.header-right {
	height: 100%;
	display: flex;
	gap: 10px;
}

.header-search-container {
	flex: 1;
	display: flex;
	align-items: center;
	margin-inline: 50px;
	position: relative;
	justify-content: center;
}

@media (max-width: 1260px) {
	.header-search-container {
		margin: 0;
	}
}

@media (max-width:1158px) {
	.header-main .header-nav-link .svg-icon {
		display: none;
	}

	.header-logo-link {
		margin-right: 0;
	}

	nav.header-nav #menu-primary-nav {
		gap: 5px;
	}

	.header-account {
		flex-shrink: 0;
	}
}

@media (max-width: 1024px) {
	.header-main .header-search-container {
		display: none;
	}
}

.header-search {
	width: 100%;
	max-width: 600px;
	display: flex;
	background: #f7f7f7;
	color: #000;
	border-radius: 5px;
	min-height: 50px;
	position: relative;
}

@media (max-width: 1024px) {
	.header-search {
		min-height: 50px;
		max-width: 100%;
	}
}

.header-search-input {
	flex: 1;
	background: #f7f7f7;
	font-weight: 300;
	border: none;
	padding-inline: 25px;
	border-radius: 5px;
	outline: none;
}

.header-search-input,
.header-search-input::placeholder {
	font-size: 14px;
	font-weight: 400;
}

.header-search-input:focus {
	background-color: #fff;
}

.header-search-icon-container {
	display: flex;
	align-items: center;
	padding-right: 15px;
	padding-left: 15px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	cursor: pointer;
	position: relative;
}

.header-search-submit {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 100%;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	opacity: 0;
	cursor: pointer;
}

.header-search-input:focus+.header-search-icon-container {
	background: #fff;
}

/* .header-search-icon path {
	fill: var(--tertiary-contrast-color);
} */

/* #endregion Search */

/* #region Cart */

.header-cart-container {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

@media (max-width: 1024px) {
	.header-main .header-cart-container {
		display: none;
	}
}

.header-cart {
	border-radius: 5px;
	background: var(--primary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	height: 60px;
	aspect-ratio: 1;
}

.header-cart:hover {
	background-color: color-mix(in oklab, var(--primary-color), black 10%);
}

.header-cart-icon {
	height: 22px !important;
}

.header-mobile .header-cart .header-cart-icon {
	height: 20px !important;
}

.header-cart-item-count {
	z-index: 1;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	background-color: #fff;
	border-radius: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 8px;
	right: 8px;
	color: #000;
	font-size: 10px;
	font-weight: 500;
	text-decoration: none;
}

.header-cart-item-count:empty {
	display: none;
}

@media (max-width: 1024px) {
	.header-cart-item-count {
		font-size: 8px;
		min-width: 12px;
		height: 12px;
		top: 5px;
		right: 5px;
	}
}

/* #endregion Cart */

/* #region Account */
.header-account {
	max-width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.header-account-fixed {
	flex: 1;
	background: var(--tertiary-color);
	height: 60px;
	border-radius: 5px;
	display: flex;
	gap: 10px;
	align-items: center;
	padding-right: 18px;
	padding-left: 18px;
	cursor: pointer;
	transition: 0.2s background-color ease;
}

.header-account-fixed:hover {
	background-color: color-mix(in oklab, var(--tertiary-color), black 10%);
}

.header-account-dropdown-icon {
	height: 8px !important;
	flex-shrink: 0;
}

.header-account-dropdown-icon path {
	stroke: var(--tertiary-contrast-color);
}

.header-account-entity-logo {
	flex-shrink: 0;
	max-width: 100px !important;
	max-height: 40px;
	object-fit: contain;
}

.header-account-info {
	flex-grow: 1;
	margin-right: 5px;
	white-space: nowrap;
}

@media (max-width: 1024px) {
	.header-account-fixed {
		height: 45px;
	}

	.header-account-entity-logo {
		max-height: 30px;
	}
}

.header-account-entity-name {
	font-size: 14px;
	font-weight: 300;
	color: var(--tertiary-contrast-color);
	width: 110px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-account-branch-name {
	font-size: 12px;
	font-weight: 400;
	color: var(--tertiary-contrast-color-dimmed);
	width: 110px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* #endregion  */

/* #region Account Dropdown */

.header-account-dropdown {
	position: absolute;
	top: 85px;
	background: var(--secondary-color);
	color: var(--secondary-contrast-color);
	right: 0;
	min-width: 300px;
	border-radius: 5px;
	display: none;
	z-index: 6;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
	.header-account-dropdown {
		top: 60px;
		right: 0;
		min-width: 290px;
	}
}

.header-account-dropdown-entities {
	padding: 12px;
	max-height: 360px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow-y: auto;
}

.header-account-dropdown-entities::-webkit-scrollbar-track {
	background-color: hsla(0, 0%, 33%, 0.2);
}

.header-account-dropdown-entities::-webkit-scrollbar {
	width: 8px;
	background-color: hsla(0, 0%, 33%, 0.2);
}

.header-account-dropdown-entities::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: rgba(0, 0, 0, 0.15);
}

.header-account-dropdown-entity {
	display: flex;
	align-items: center;
	background-color: color-mix(in oklab, var(--secondary-color), var(--secondary-contrast-color) 5%);
	padding: 10px 15px;
	border-radius: 5px;
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease;
	min-height: 68px;
	text-decoration: none;
}

.header-account-dropdown-entity:hover {
	background-color: color-mix(in oklab, var(--secondary-color), var(--secondary-contrast-color) 10%);
}

.header-account-dropdown-entity-active::after {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: var(--primary-color);
	margin-left: auto;
}

.header-account-dropdown-entity img {
	width: 46px;
}

.header-account-dropdown-entity-info {
	margin-left: 25px;
}

.header-account-dropdown-entity-name {
	font-size: 14px;
	font-weight: 300;
}

.header-account-dropdown-branch-name {
	font-size: 12px;
	font-weight: 400;
	color: var(--secondary-contrast-color-dimmed);
}

/* Header dropdown nav */
.header-account-dropdown-nav {
	background: var(--tertiary-color);
	color: var(--tertiary-contrast-color);
	padding: 20px 14px 20px 14px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.header-account-dropdown-nav-ul {
	list-style: none;

	&.administrator-menu {
		border-bottom: 1px solid #fff;
	}
}

.header-account-dropdown-nav-li {
	padding: 6px 15px;
}

.header-account-dropdown-nav-link {
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s ease;

}

.header-account-dropdown-nav-link:hover {
	color: var(--primary-color);
}

/* #endregion Account Dropdown */

/* #region Mobile header */
.header-mobile {
	background: var(--secondary-color);
	display: flex;
	gap: 10px;
	justify-content: space-between;
	padding-inline: 10px;
	padding-bottom: 10px;
}

.header-mobile-burger {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.header-mobile-burger img {
	margin-right: 0;
	padding-right: 0;
	width: 20px;
}

.header-mobile-burger-container {
	border-radius: 5px;
	background: var(--tertiary-color);
	padding: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-mobile .header-search-container {
	display: flex;
	justify-content: center;
	flex-grow: 1;
}

.header-mobile .header-search {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.header-mobile .header-search-icon-container {
	padding-left: 5px;
	padding-right: 15px;
}

.header-mobile .header-search-input {
	width: 100%;
	max-width: unset;
	flex: 1;
	font-weight: 300;
	padding: 0 15px;
}

.header-mobile .header-search-input::placeholder {
	font-weight: 300;
}

.header-mobile .header-search-icon-container {
	padding: 0;
	display: flex;
	justify-content: center;
}

.header-search-icon-container {
	min-width: 40px;
}

.header-search-icon {
	min-width: 16px;
}

.header-mobile .header-mobile-burger,
.header-mobile .header-cart-container {
	flex-shrink: 0;
}

.header-mobile .header-cart-container {
	display: flex;
	justify-content: flex-end;
	margin-left: 0;
}

.header-mobile .header-cart {
	width: 50px;
	height: 50px;
}

@media (min-width: 1025px) {

	.header-mobile,
	.bottom-mobile-menu {
		display: none;
	}
}

/* Header mobile menu */
.header-mobile-menu {
	display: none;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	z-index: 6;
}

.header-mobile-menu-overlay {
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
}

.header-mobile-menu-content {
	--_line-height: 50px;

	background: #f2f2f2;
	width: 75%;
	max-width: 75%;
	height: calc(100% - 80px);
	position: fixed;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

.admin-bar .header-mobile-menu-content {
	height: calc(100% - 110px);
	top: 30px;
}

.header-mobile-menu a {
	text-decoration: none;
}

.header-mobile-menu-header {
	background-color: var(--tertiary-color);
	line-height: var(--_line-height);
	padding: 0 20px;
	color: inherit;
	font-size: 14px;
	font-weight: 600;

	display: flex;
	align-items: center;
	gap: 16px;
}

.header-mobile-menu-header button {
	background-color: #fff;
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 3px;
	color: #222;
	line-height: 24px;
	font-size: 12px;
	font-weight: 400;
	cursor: pointer;
}

.header-mobile-menu-nav ul li {
	color: #222;
	line-height: var(--_line-height);
	border-bottom: solid 1px hsl(0, 0%, 88%);
	margin: 0;
	list-style: none;
}

.header-mobile-menu-nav ul li a {
	width: 100%;
	padding-left: 20px;
	display: flex;
	align-items: center;
}

.header-mobile-menu-nav li.borderless {
	border: 0;
	line-height: 32px;
	color: #666;
}

.header-mobile-menu-nav li:not(.borderless)+li.borderless {
	margin-top: 15px;
}

.header-mobile-menu-nav .current_page_parent,
.header-mobile-menu-nav .current-menu-item {
	background-color: hsl(0, 0%, 88%);
}

/* bottom mobile menu */

@media (max-width: 1024px) {
	body {
		margin-bottom: 80px;
	}
}

.bottom-mobile-menu {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 100;
	box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.2);
}

.bottom-mobile-menu ul {
	background-color: var(--tertiary-color);
	display: flex;
	list-style: none;
}

.svg-icon {
	--_contrast-color: var(--secondary-contrast-color);
	color: var(--primary-color);
	width: 17px;
	object-fit: contain;
	aspect-ratio: 1;
}

.bottom-mobile-menu ul a {
	--_contrast-color: var(--tertiary-contrast-color);
	flex: 1 0;
	height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: var(--primary-color);

	position: relative;
	text-decoration: none;
}

.bottom-mobile-menu ul a svg {
	width: 17px;
	height: 17px;
}

.bottom-mobile-menu ul a li {
	color: var(--_contrast-color);
	font-size: 10px;
	font-weight: 400;
}

.bottom-mobile-menu ul a.active {
	--_contrast-color: var(--secondary-contrast-color);
	background-color: var(--secondary-color);
}

.bottom-mobile-menu ul a.all-products-menu-link.active {
	background-color: transparent;
}

.bottom-mobile-menu ul a.active li {
	color: var(--_contrast-color);
}

.bottom-mobile-menu ul a.active::before {
	content: "";
	position: absolute;
	top: 0;
	width: 80%;
	height: 2px;
	background-color: var(--primary-color);
	border-bottom-left-radius: 100vw;
	border-bottom-right-radius: 100vw;
}

/* #endregion Mobile header */

/* #region Page banner */

.header-page-banner {
	background: var(--tertiary-color);
}

.header-page-banner.green {
	background-color: var(--primary-color);
}

.header-page-banner.green .header-page-banner-heading {
	color: #fff;
}

.header-page-banner-heading {
	color: var(--tertiary-contrast-color);
	font-weight: 500;
	font-size: 32px;
}

.header-page-banner-sub-heading {
	color: var(--tertiary-contrast-color-dimmed);
	font-size: 12px;
	font-weight: 400;
	opacity: 0.8;
}

.header-page-banner-container {
	height: 150px;
	max-width: 1300px;
	margin: 0 auto;
	padding: 10px 25px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-page-banner-container.column {
	flex-direction: column;
	justify-content: center;
}

.header-page-banner-container .woocommerce-breadcrumb {
	display: block;
	color: var(--tertiary-contrast-color-dimmed);
	font-size: 14px;
	margin: 0;
}

.header-page-banner-container .woocommerce-breadcrumb a {
	color: var(--tertiary-contrast-color);
}

.header-page-banner a {
	text-decoration: none;
}

.header-page-banner-cards {
	display: grid;
	grid-auto-flow: column;
	gap: 10px;
	margin-left: auto;
}

.header-page-banner-cards>div.header-page-banner-card {
	min-width: 165px;
	height: 60px;
	background-color: #fff;
	border-radius: 10px;
	padding: 5px;

	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.header-page-banner-cards>div.header-page-banner-card .card-text {
	margin-left: 5px;

	display: flex;
	flex-direction: column;
	justify-content: center;

	font-size: 10px;
	color: #808080;
}

.header-page-banner-cards>div.header-page-banner-card .card-text>span {
	font-size: 12px;
	font-weight: 700;
	color: #222;
}

.header-page-banner-cards>div.header-page-banner-card svg {
	width: 50px;
	height: 50px;
	background-color: var(--secondary-color);
	border-radius: 8px;
	padding: 10px;
	object-fit: contain;
	fill: var(--primary-color);
}

@media (max-width: 768px) {
	.header-page-banner {
		background: transparent;
	}

	.header-page-banner-container {
		height: auto;
		align-items: flex-start;
		padding: 20px 10px 0;
	}

	.header-page-banner-heading {
		font-size: 24px;
		font-weight: 500;
		color: #222;
	}

	.header-page-banner-container .woocommerce-breadcrumb a {
		color: #222;
	}

	.header-page-banner-container .woocommerce-breadcrumb {
		color: hsla(0, 0%, 13%, 0.5);
	}
}

/* #endregion Page banner */

/* #region Brands banner */

.brands-banner {
	background-color: #fff;
}

.brands-banner-container {
	max-width: var(--container-width);
	padding-inline: 25px;
	margin: 0 auto;
}

.brands-banner-links {
	height: 60px;
	padding-block: 17px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 35px;
}

.brands-banner-links a {
	height: 100%;
}

.brands-banner-links img {
	height: 100%;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.brands-banner-links {
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.brands-banner {
		display: none;
	}
}

/* #endregion Brands banner */

/* nav badges */
.header .badge {
	min-width: 16px;
	height: 16px;
	margin-left: 4px;
	padding: 0 5px;
	background-color: var(--primary-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
}

/* #region Mega menu */
li.menu-item-332 {
	position: static;
}

li.menu-item-332>a:empty {
	display: none;
}

.all-products-menu {
	height: 100%;
}

.mega-menu.hide,
.mega-menu-bg.hide {
	display: none;
}

.mega-menu-bg {
	width: 100vw;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	/* background-color: rgba(0, 0, 0, 0.3); */
	z-index: -2;
}

.mega-menu {
	--_line-height: 50px;

	height: calc(100vh - 130px);
	min-height: 300px;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: -1;
	display: flex;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
	color: #222;
	overflow: hidden;
}

.mega-menu a {
	text-decoration: none;
}

.mega-menu-level {
	width: 300px;
	box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.mega-menu-header {
	line-height: var(--_line-height);
	padding: 0 20px 0 60px;
	color: var(--secondary-contrast-color);
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 16px;
}

.mega-menu-header button {
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 3px;
	color: #222;
	line-height: 24px;
	font-size: 12px;
	font-weight: 400;
	cursor: pointer;
	background-color: white;
}

button.header-mobile-menu-controls-close,
button.mega-menu-mobile-controls.close {
	font-size: 0;
	background: url(../images/close-icon.svg) no-repeat center;
	background-size: 8px;
	background-color: white;
}

.mega-menu-header button:not(.close) {
	background: url(../images/chevron-left.svg) no-repeat center;
	background-size: 8px;
	background-color: var(--secondary-contrast-color);
}

.mega-menu-level[data-level="1"] .mega-menu-header {
	background-color: var(--secondary-color);
}

.mega-menu-level[data-level="2"] .mega-menu-header {
	background-color: color-mix(in oklab, var(--secondary-color), var(--secondary-contrast-color) 10%);
}

.mega-menu-level[data-level="3"] .mega-menu-header {
	background-color: color-mix(in oklab, var(--secondary-color), var(--secondary-contrast-color) 20%);
}

/* Mega menu body */
.mega-menu-body {
	overflow-y: auto;
}

.mega-menu-body ul a {
	line-height: var(--_line-height);
}

.mega-menu-body>a {
	padding-left: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.mega-menu-body ul a li {
	transition: 0.1s all;
}

.mega-menu-body ul a:hover li {
	background: rgba(0, 0, 0, 0.05);
}

.mega-menu-body ul li {
	border-bottom: solid 1px #eee;
	padding-left: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.mega-menu-body ul.simple li {
	border: 0;
}

.mega-menu-body img {
	height: 20px;
	aspect-ratio: 1;
	object-fit: contain;
}

.mega-menu-level:not([data-level="3"]) .mega-menu-body ul:not(.simple) li>span {
	border-left: solid 1px #eee;
	margin-left: auto;
	width: var(--_line-height);
	display: flex;
	justify-content: center;
	background: rgba(102, 102, 102, 0.03);
}

.mega-menu-level:not([data-level="3"]) .mega-menu-body ul:not(.simple) li>span:hover {
	background: rgba(102, 102, 102, 0.1);
}

.mega-menu-body ul li.active {
	background-color: rgba(102, 102, 102, 0.1);
}

.mega-menu-body ul li.active::after {
	border-color: hsl(0, 0%, 80%);
	background-color: rgba(102, 102, 102, 0.1);
}

.mega-menu-level[data-level="1"] {
	z-index: 3;
}

.mega-menu-level[data-level="2"] {
	z-index: 2;
}

.mega-menu-level[data-level="3"] {
	z-index: 1;
}

/* Mega menu mobile */

@media (max-width: 1024px) {
	.mega-menu-header {
		padding: 0 20px;
	}

	.mega-menu {
		height: calc(100% - 80px);
		position: fixed;
		top: 0;
		z-index: 3;
		isolation: isolate;
		overflow: unset;
	}

	.admin-bar .mega-menu {
		height: calc(100% - 110px);
		top: 30px;
	}

	.mega-menu-bg {
		background-color: rgba(0, 0, 0, 0.3);
		z-index: 2;
	}

	.mega-menu-level {
		position: absolute;
		inset: 0;
		overflow: unset;
	}

	.mega-menu-level[data-level="1"] {
		z-index: 1;
	}

	.mega-menu-level[data-level="2"] {
		z-index: 2;
	}

	.mega-menu-level[data-level="3"] {
		z-index: 3;
	}
}

@media (min-width: 1025px) {
	.mega-menu-header button {
		display: none;
	}

	form.header-search {
		height: 60px;
	}
}

@media (max-width:767px) {
	.admin-bar .mega-menu {
		height: calc(100% - 125px);
		top: 45px;
	}
}

/* #endregion Mega menu */

body.my-products .all-products-menu-item,
body.my-products .menu-item-219 {
	display: none;
}

/* #region request-access */
@media (max-width: 1024px) {
	.header-main .request-access-btn {
		display: none;
	}
}

.page-id-8088 .container:has(.request-access-banner) {
	display: none;
}

.request-access-banner {
	background-color: var(--primary-color);
	color: #fff;
	border-radius: 5px;
	padding: 40px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.request-access-banner.inverted {
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.request-access-banner .left {
	max-width: 460px;
	margin-right: auto;
}

.request-access-banner h3 {
	font-size: 28px;
	font-weight: 600;
	padding-bottom: 15px;
}

.request-access-banner .actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.request-access-banner .btn {
	color: #fff;
}

.request-access-banner .right {
	display: flex;
	justify-content: center;
	align-items: center;
}

.request-access-banner .hero {
	position: absolute;

	inset: 0 0 0 auto;
	width: 400px;
}

.request-access-banner .hero::after {
	content: "";
	position: absolute;

	inset: -1px;
	background-color: var(--secondary-color);
	clip-path: polygon(40% 0%, 100% 0, 100% 100%, 25% 100%);
	clip-path: polygon(160px 0%, 100% 0, 100% 100%, 120px 100%);
}

.request-access-banner .hero img {
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
}

.request-access-banner .hero img:last-child {
	left: 130px;
	z-index: 1;
}

@media (max-width: 900px) {
	.request-access-banner .hero {
		display: none;
	}
}

.request-access-modal .modal-card {
	width: 600px;
	max-height: 350px;
}

.request-access-modal .modal-inner {
	padding: 70px 90px;
	text-align: center;
	align-items: center;
	gap: 30px;
}

.modal.request-access-modal h2 {
	font-size: 28px;
	font-weight: 600;
}

.request-access-modal p {
	padding: 0;
}

.request-access-modal button {
	padding-inline: 50px;
	margin-top: auto;
}

/* #endregion */

body:not(.enable-customizer) .customizer-link {
	display: none;
}

/* Header Account Points */

.header-account-points__wrapper {
	display: flex;
	flex-direction: column;
	color: var(--tertiary-contrast-color);
}

.header-account-points {
	display: flex;
	align-items: center;
}

.header-account-points:after {
	content: "";
	width: 1px;
	height: 35px;
	display: flex;
	background-color: var(--tertiary-contrast-color-dimmed);
	margin-left: 10px;
	opacity: .2;
}

.header-account-points__points,
.header-account-points__points-basket {
	display: flex;
	align-items: center;
}

.header-account-points__points label,
.header-account-points__points-basket label {
	margin-right: 5px;
	color: var(--tertiary-contrast-color-dimmed);
	cursor: pointer;
}

.header-account-points__points span {
	color: var(--primary-color);
}

/* Reuze outlet */
.term-3470 .header-submenu {
	background-color: #30754b;
}

.term-3470 .header-page-banner {
	background-color: #3c8c5c;
}

.term-3470 .header-page-banner-heading:before {
	content: '';
	display: block;
	margin: 0 auto 5px auto;
	width: 30px;
	height: 30px;
	background-image: url(../images/reuze-icon.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.term-3470 .header-page-banner-heading,
.term-3470 .header-page-banner-container .woocommerce-breadcrumb,
.term-3470 .header-page-banner-container .woocommerce-breadcrumb a {
	color: #fff;
}

.term-3470 .header-nav-link {
	color: #ffffffb3;
}

.term-3470 .header-nav-link:hover {
	color: #fff;
}

/* REUZE MENU ITEM */
.hide-sell-back .reuze-menu-item {
	display: none;
}