.site-header__sticky {
	background: var(--color-green-800);
	position: relative;
	transition: all .3s;
}

.site-header__sticky.stick {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10000;
}

.site-header__sticky.stick.nav-up {
	top: -180px;
}

.site-header__elements {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0 var(--space-300);
	max-width: 76rem;
	margin: auto;
}

.site-header__site-logo {
	flex-grow: 1;
}


.flyout--account .flyout__panel a {
	border-bottom: solid thin rgb(190, 190, 190);
}

.flyout--account .flyout__panel a {
	display: block;
	padding: 11px 20px 10px;
	font-size: 13px;
	transition: background .3s;
	text-decoration: none;
}

.flyout--account .flyout__panel a:hover {
	background: black;
	color: white;
}

@media (max-width: 1024px) {
	.site-header__sticky {
		position: relative;
	}

	.header-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 320px;
		height: 100%;
		background: #eee;
		text-align: left;
		overflow: hidden;
		z-index: 1070;
		transition: all .3s ease-in-out;
		transform: translate(-320px);
	}

	.header-menu.opened {
		transform: translate(0);
	}

	.navigation-wrapper {
		padding: 15px;
		border: 0;
		background: var(--color-green-300);
		cursor: pointer;
		overflow: hidden;
		font-size: 0;
	}

	.header-menu .close-menu,
	.header-menu ul .back-button {
		float: right;
	}

	.header-menu .close-menu span,
	.header-menu ul .back-button span {
		position: relative;
		display: inline-block;
		padding: 0;
		width: 28px;
		height: 28px;
		background: rgba(0, 0, 0, 0.1);
		font-size: 0;
		color: #fff;
		line-height: 15px;
	}

	.header-menu .close-menu span:after,
	.header-menu ul .back-button span:after {
		content: '\e901';
		position: absolute;
		top: 50%;
		left: 50%;
		font-family: prisma;
		font-size: 8px;
		color: #fff;
		transform: translate(-50%, -50%);
	}

	.header-menu ul .back-button {
		margin-right: 5px;
	}

	.header-menu ul .back-button span:after {
		content: '\e924';
	}

	.header-menu>ul li {
		border-bottom: 1px solid #eee;
		background: #f6f6f6;
	}

	.header-menu>ul li:after {
		content: "";
		display: block;
		clear: both;
	}

	.header-menu>ul li>a,
	.header-menu>ul li>span {
		position: relative;
		display: block;
		padding: 16px 18px;
		line-height: 17px;
		text-align: left;
		font-size: 15px;
		color: #666;
		z-index: 0;
	}

	.header-menu>ul li>a:hover,
	.header-menu>ul li>span:hover {
		color: black;
	}

	.header-menu>ul li:last-child>a,
	.header-menu>ul li:last-child>span {
		border-bottom: 0;
	}

	.header-menu>ul li>.with-subcategories {
		float: left;
	}

	.plus-button {
		position: relative;
		float: right;
		margin: 10px;
		width: 28px;
		height: 28px;
		background: #fff;
		cursor: pointer;
		z-index: 1;
	}

	.plus-button:after {
		content: '\e925';
		position: absolute;
		top: 50%;
		left: 50%;
		font-family: prisma;
		font-size: 8px;
		color: #dcdde0;
		transform: translate(-50%, -50%);
	}

	.header-menu .sublist-wrap {
		position: fixed;
		top: 0;
		left: 0;
		width: 320px;
		height: 100%;
		background: #eee;
		box-shadow: 1px 0 5px rgba(0, 0, 0, 0.5);
		z-index: 2;
		overflow: hidden;
		transition: all .3s ease-in-out;
	}

	.header-menu .sublist-wrap {
		transform: translate(-320px);
	}

	.header-menu .sublist-wrap.active {
		transform: translate(0);
	}
}

@media (min-width: 1025px) {
	.stick .site-header {}

	.site-header__site-logo {
		flex-grow: 1;
	}

	.close-menu,
	.header-menu .back-button {
		display: none;
	}

	.header-menu {
		position: relative;
		/* background: white; */
		text-align: center;
		z-index: 1010;
		margin: auto;
		width: 96%;
	}

	.header-menu>ul>li {
		display: inline-block;
		vertical-align: middle;
	}

	.header-menu>ul>li>a,
	.header-menu>ul>li>span {
		font-size: 16px;
		font-weight: 400;
		color: var(--color-green-900);
		display: block;
		padding: .25rem .5rem;
		cursor: pointer;
		transition: all .3s;
		border: solid thick transparent;
		text-decoration: none;
		background-color: transparent;
	}

	.header-menu>ul>li:hover>a,
	.header-menu>ul>li:hover>span {
		color:#fff;
	}

	.header-menu .sublist-wrap {
		opacity: 0;
		position: absolute;
		min-width: 220px;
		background: white;
		font-weight: bold;
		text-align: left;
		transition: transform .3s, opacity .3s;
		transform: translateX(20px);
		pointer-events: none;
	}

	.header-menu .hover+.sublist-wrap {
		opacity: 0;
	}

	.header-menu>ul>li>.sublist-wrap {
		transform: translateY(20px);
	}

	.header-menu li:hover>.with-subcategories+div+.sublist-wrap,
	.header-menu li>.with-subcategories.hover+div+.sublist-wrap {
		opacity: 1;
		transform: translateX(0) translateY(-3px);
		pointer-events: auto;
	}

	.header-menu .sublist-wrap.active {
		display: block;
		opacity: 1;
		transform: translateX(0) translateY(-3px);
		pointer-events: auto;
	}

	.top-menu {
		display: block;
	}

	.header-menu .sublist li {
		position: relative;
		border-bottom: solid thin rgb(190, 190, 190);
	}

	.header-menu .sublist .back-button {
		display: none;
	}

	.header-menu .sublist li a {
		display: block;
		padding: 11px 20px 10px;
		font-size: 13px;
		transition: background .3s;
		text-decoration: none;
	}

	.header-menu .sublist li:hover>a {
		background: black;
		color: white;
	}

	.header-menu .sublist-wrap .sublist-wrap {
		top: -1px;
		left: 100%;
	}
}

.site-header a {
	text-decoration: none;
}

@media (min-width:1025px){
	[data-main-menu-toggle] {
		display: none
	}	
}

[class].mega-menu {
	padding: 0;
	background-color: var(--color-yellow-300);
	position: relative;
}

.mega-menu::after {
	background-color: inherit;
	content: "";
	position: absolute;
	width: 300vw;
	height: 100%;
	top: 0;
	left: -100vw;
	z-index: -1;
}