#body {
	background: #eee;
}
body #header {
	width: 100%;
	position: relative;
	display: block;
	padding-top: 50px;
	background: white;
}
#site-logo {
	position: absolute;
	left: 0px;
	top: 0px;
}
#site-logo img {
	margin-top: 10px;
	margin-left: 50px;
	transition: width .3s  ease-in-out;
}
.fixed-header #site-logo img {
	width: 100px;
}



#site-logo::after  {
content: " ";
display: block;
height: 100px;
width: 600px;
margin: -10px;
backgrounD: linear-gradient(to top left, transparent 50%, white 50%);
transition: margin .3s ease-in-out;
	
}
.fixed-header #site-logo::after {
	margin-top:-59px;
}


.header-buttons {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 50%;
	display: grid;
	margin: 0;
	padding: 0;
	grid-template-columns: 1fr;
	grid-auto-flow: column;
	gap: 10px;
	transition: height 0.3s ease-in-out;
}

.header-buttons li {
	margin: 0;
	padding: 3px 15px;
	display: block;
		
}
.header-buttons li:nth-child(odd) {
	background: #9f031e;
	border-radius: 0px 0px 10px 10px;
	color: white;
	text-align: center;
}
.header-buttons li:nth-child(even) {
	background: #010101;
	border-radius: 0px 0px 10px 10px;
	color: white;
	text-align: center;
}


.header-buttons li a {
	color: white;
}
.fixed-header .header-buttons {
	display: none;
}

#mobile-menu {
	max-width: 1160px;
	margin: 0 auto;
}

@media (max-width: 1260px) {
	#header {
		max-width: 100%;
	}
}

.mobile_menu_active #site-logo {
	position: relative;
}
.mobile_menu_active #site-logo::after  {
	display: none;
}
.mobile_menu_active .header-buttons {
height: 0px;
}

body.mobile_menu_active #header {
	padding-top: 0px;
}
body.mobile_menu_active #headerwrap #main-nav a {
	padding-left: 10px;
}
body.mobile_menu_active #main-nav li > .sub-menu {
	margin-left: 0px;
	min-width: 100%;
}
