
.navigation {
	position: relative;
	line-height: 56px;
	width: 100%;
	margin-top: 0.5rem;
	background: #292b2c;
	transition: 0.6s;
}

.navigation .menu {
	position: relative;
	display: flex;
	justify-content: flex-start;
	list-style: none;
	user-select: none;
	padding: 0;
	margin: 0;
	transition: 0.6s;
}

.navigation .menu ul {
	padding: 0;
	margin: 0;
	min-width: 150px;
}
.menu .menu-item {
	line-height: normal;
	padding: 0;
}
.menu-item > a {
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	margin: 0 5px;
	padding: 14px 10px;
	display: block;
	transition: 0.3s;
}

.menu-item > a:hover {
	color: #469DFF;
}
.menu-item .sub-menu {
	position: absolute;
	background: #292b2c;
	top: 47px;
	z-index: 99;
	line-height: 40px;
	list-style: none;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.2);
	pointer-events: none;
	transform: translateY(20px);
	opacity: 0;
	transition-property: transform, opacity;
}

.menu-item:hover .sub-menu {
	pointer-events: all;
	transform: translateY(0);
	opacity: 1;
	transition: 0.3s;
}

.menu-item .sub-menu .sub-item {
	position: relative;
	padding: 3px 0;
	cursor: pointer;
	box-shadow: inset 0px -30px 5px -30px rgba(255,255,255, 0.2);
}

.menu-item .sub-menu .sub-item a {
	display: block;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	padding: 0 15px;
	line-height: 30px;
}

.menu-item .sub-menu .sub-item:hover {
	background: #4080EF;
	transition: 0.3s;
}

.menu-item .sub-menu .sub-item:last-child:hover {
	border-radius: 0 0 8px 8px;
}

.more .more-menu {
	position: absolute;
	background: #292b2c;
	list-style: none;
	top: 0;
	left: 100%;
	white-space: nowrap;
	border-radius: 0 8px 8px 8px;
	overflow: hidden;
	pointer-events: none;
	transform: translateY(20px);
	opacity: 0;
	transition-property: transform, opacity;
}

.more:hover .more-menu {
	pointer-events: all;
	transform: translateY(0);
	opacity: 1;
	transition: 0.3s;
}

.more-menu .more-item {
	padding: 6px 0;
	box-shadow: inset 0px -30px 5px -30px rgba(255,255,255,0.2);
}

.more-menu .more-item:hover {
	background: #4080EF;
	transition: 0.3s;
}

.menu-btn,
.close-nav {
	display: none;
}

/* new mega menu for categories 22.08.23 */
.drop-menu {
	position: relative;
}
.drop-menu:hover > .mega-menu {
	opacity: 1;
	visibility: visible;
}
.drop-menu .mega-menu {
	position: absolute;
	left: 0;
	background-color: #fff;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.mega-menu .content {
	width: 100%;
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
}
.menu-item.drop-menu:hover > button {
	color: #469DFF;
}
.menu-item > button {
	background: none;
	color: #fff;
	margin: 0 5px;
	padding: 14px 10px;
	font-size: 15px;
	outline: none;
}
.mega-menu a {
	font-size: 14px;
	display: block;
}
.mega-menu a:hover {
	text-decoration: underline;
}
.mega-menu .col-header {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 0.5rem;
}
.mega-menu .menu-col {
	min-width: 150px;
}
.mega-menu li {
	line-height: normal;
	margin-bottom: 15px;	
}
.mega-menu .sub-cats {
	border-left: 1px solid rgba(0,0,0,.2);
}
.mega-menu .sub-cats li {
	width: 90%;
	margin: 0;
	margin-left: auto;
	margin-bottom: 12px;
}
.navigation .menu .mega-menu ul {
	min-width: 0;
}

/* ACCOUNT OPTIONS FOR MOBILES */
.acc-mobile {
	display: none;
}

@media only screen and (max-width: 1400px) {
	.drop-menu .mega-menu {
		left: -50%;
	}
	.mega-menu .menu-col {
		min-width: 120px;
	}
	.mega-menu a {
		font-size: 13px;
	}
	.mega-menu .col-header {
		font-size: 15px;
	}
}
@media only screen and (max-width: 1060px) {
	.freeShipping {
		padding: 5px 0;
	}
	
	.navigation {
		padding: 8px 16px;
		display: inline-block;
		margin-top: 2.5rem;
	}
	.navigation .menu {
		position: fixed;
		display: block;
		z-index: 99;
		background: #292b2c;
		max-width: 350px;
		width: 100%;
		height: 100vh;
		top: 0;
		right: -100%;
		padding: 120px 25px 85px;
		overflow-y: auto;
		justify-content: center;
		list-style: none;
		user-select: none;
		transition: 0.5s;
		transition-property: right;
	}
	.navigation .menu.active {
		right: 0;
	}
	
	.menu .menu-item {
		position: relative;
	}
	
	.menu-item .sub-menu {
		opacity: 1;
		position: relative;
		top: 0;
		transform: translateX(10px);
		background: rgba(255,255,255,0.1);
		border-radius: 5px;
		overflow: hidden;
		display: none;
		transition: none;
	}
	
	.menu-item:hover .sub-menu {
		transform: translateX(10px);
		transition: none;
	}
	
	.menu-item .sub-menu .sub-item {
		box-shadow: none;
	}
	
	.menu-item .sub-menu .sub-item:hover {
		background: none;
	}
	
	.menu-item .sub-menu .sub-item a:hover {
		color: #4080EF;
		transition: 0.3s;
	}
	
	.sub-item.more .more-menu {
		opacity: 1;
		position: relative;
		left: 0;
		transform: translateY(0);
		background: rgba(255,255,255,0.1);
		border-radius: 5px;
		display: none;
		transition: none;
	}
	
	.more .more-menu .more-item {
		box-shadow: none;	
	}
	
	.more .more-menu .more-item:hover {
		background: none;
	}
	.more .more-menu .more-item a {
		margin-left: 20px;
	}
	
	.close-nav {
		display: block;
		position: absolute;
		width: 25px;
		height: 25px;
		top: 0;
		left: 0;
		margin: 22px;
		cursor: pointer;
	}
	
	.menu-btn {
		width: 32px;
		height: 32px;
		cursor: pointer;
		display: block;
		float: right;
	}
	.menu-btn img,
	.close-nav img {
		width: 100%;
		height: 100%;
	}
	
	/* display mobile account controls */
	.acc-mobile {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		position: absolute;
		z-index: 999;
		top: 43px;
		right: 16px;
		gap: 38px;
		flex-direction: row-reverse;
	}
	.acc-mobile .acc-option { 
		position: relative;
		text-align: center;
	}
	.acc-mobile .acc-option i {
		font-size: 29px;
		color: #fff;
		display: block;
		margin-bottom: 5px;
	}
	.acc-mobile .acc-option img {
		display: block;
		margin: auto;
		margin-bottom: 5px;
	}
	.acc-mobile .acc-option .acc-txt {
		font-size: 11px;
		color: #fff !important;
		line-height: normal;
	}
	.acc-mobile .acc-option .cart-count {
		left: -6px;
		top: 5px;
	}
	header .acc-options { display: none; }
	header .header-row.header-top {
		flex-direction: column;
	}
	
	.header-top .comp-logo,
	.header-top .head-search {
		width: 100%;
	}
	.header-top .comp-logo img {
		display: block;
		margin: auto;
	}
	.header-top .head-search .search-input {
		width: 60%;
	}
	.menu-item > button {
		height: auto;
		display: block;
		width: 100%;
		text-align: left;
	}
	.drop-menu .mega-menu {
		opacity: initial !important;
		visibility: initial !important;
		display: none;
		position: relative;
		background: none;
		left: 0;
	}
	.mega-menu .content {
		flex-direction: column;
		padding: 0;
		width: 90%;
		margin-left: auto;
		gap: 0.5rem;
	}
	.mega-menu a {
		color: #fff;
		font-size: 13px;
	}
	.mega-menu .col-header {
		font-size: 14px;
		font-weight: 600;
	}
	.mega-menu .sub-cats {
		border-left: 1px solid rgba(255,255,255,0.2);
	}
}

@media only screen and (max-width: 350px) {
	.navigation .menu {
		min-width: 0;
		width: 100%;
		padding: 90px 7%;
	}
	
	.navigation .menu.active {
		left: 0;
	}
}