.header {
	max-width: 1200px;
	width: 90%;
	height: 84px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: transparent;
}
.headerContainer {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	transition: all 0.4s ease;
}
.headerContainer.light {
	background-color: white;
	box-shadow: 0 4px 11px 0 #00000010;
	position: fixed;
}
.header .navLink {
	display: flex;
	align-items: center;
	gap: 24px;
}

.header .iconWhite {
	display: initial;
}
.header .iconPrimary {
	display: none;
}
.header.light .iconWhite {
	display: none;
}
.header.light .iconPrimary {
	display: initial;
}
.header .navLink .megaMenuBtn {
	display: none;
}
.header .navLink a,
.header .navLink div {
	text-decoration: none;
	color: white;
	font-weight: 500;
	cursor: pointer;
}
.header.light .navLink a,
.header.light .navLink div {
	text-decoration: none;
	color: black;
	font-weight: 500;
	cursor: pointer;
}
.header .auth {
	color: white;
	font-weight: 400;
}

.header.light .auth {
	color: var(--primary-p1);
	font-weight: 400;
}
.header .productsMenu {
	display: flex;
	align-items: center;
	gap: 8px;
}
.megaMenuBtn .sidebar {
	/* width: 111.99%; */
	width: 100%;
	max-width: 450px;
	height: 100vh;
	position: fixed;
	top: 0;
	right: -126%;
	/* right: -6%; */
	background-color: white;
	transition: all 0.6s ease;
	z-index: 2;
}
.megaMenuContainer {
	opacity: 0;
	position: absolute;
	background-color: white;
	top: 20px;
	right: 0;
	visibility: hidden;
	width: 100%;
	height: 382px;
	transition: all 0.3s ease-in-out;
	z-index: 5;
	border-radius: 0px 0px 8px 8px;
	box-shadow: 0 16px 19px 0 #00000020;
}
#megaMenuCheckbox:checked ~ .megaMenuContainer {
	top: 56px;
	opacity: initial;
	visibility: visible;
}
#megamenuOverlay {
	display: none;
}
#megamenuOverlay.active {
	display: block;
}
.megaMenuContainer .menuCol {
	width: 145px;
	height: 100%;
	background-color: #f5f5f5;
	border-radius: 0px 0px 8px 0;
	padding: 26px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.megaMenuContainer .menuCol label {
	padding: 4px 18px;
	background-color: transparent;
	color: black;
	display: flex;
	width: 100%;
	transition: all 0.15s ease-in-out;
	cursor: pointer;
}
.megaMenuContainer .menuCol > div input:checked ~ label {
	background-color: var(--primary-p5);
	color: white;
}
.megaMenuBtn #megaMenuCheck:checked ~ .sidebar {
	right: 0;
}
.megaMenuBtn .sidebar ul {
	padding: 18px 24px;
}
.megaMenuBtn .sidebar ul a {
	font-size: 14px;
	color: #00000080;
	font-weight: 700;
}
.megaMenuBtn .sidebar ul li {
	font-weight: 700;

	padding: 18px 8px;
	font-size: 14px;

	color: var(--primary-p1);
}
.megaMenuBtn .productsSidebar {
	/* width: 111.99%; */
	width: 100%;
	max-width: 450px;
	height: 100vh;
	position: fixed;
	top: 0;
	right: -126%;
	/* right: -6%; */
	background-color: white;
	transition: all 0.6s ease;
}
.megaMenuBtn #productsSidebarCheckbox:checked ~ .productsSidebar {
	right: 0;
}
.productsSidebar .accordionContainer {
	padding: 18px 24px;
}
.productsSidebar .accordionContainer label {
	padding: 18px 8px;
	font-size: 14px;
	color: #00000080;
	cursor: pointer;
	transition: all 0.1s;
}
.productsSidebar input[type="checkbox"]:checked ~ label {
	background-color: var(--primary-p1);
	border-radius: 4px;
	color: white;
}
.productsSidebar input[type="checkbox"]:checked ~ label i {
	transform: rotate(180deg);
}
.productsSidebar .accordionContent {
	height: 0px;
	overflow: hidden;
	background-color: #f5f5f5;
	display: flex;
	flex-direction: column;
	padding: 0 16px;
	gap: 10px;
}
.productsSidebar input[type="checkbox"]:checked ~ .accordionContent {
	border-radius: 4px;
	padding: 12px 16px;
	height: 450px;
}
.productsSidebar .accordionContent p {
	font-size: 14px;
	color: black;
	font-weight: 400;
}
.productsSidebar .accordionContent h5 {
	font-size: 14px;
	color: var(--secondary-s5);
	font-weight: 600;
}

@media screen and (max-width: 1024px) {
	.header {
		width: 100%;
		padding-inline: 5%;
		border-bottom: 1px solid #ffffff80;
		height: 52px;
	}
	.header .navLink {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		flex-grow: 1;
	}
	.header .auth {
		justify-content: end;
		display: flex;
		flex-grow: 1;
	}
	.header .navLink > a,
	.header .navLink > div:not(.megaMenuBtn) {
		display: none;
	}
	.header .navLink .megaMenuBtn {
		display: initial;
	}
	.header .auth span {
		display: none;
	}
	.header .auth img {
		width: 24px;
		height: 24px;
	}
	.header .navLink > img {
		width: 38px;
		height: 38px;
	}
}
