#popup-manager {
	position: relative;
	z-index: 9999;
}
header,
#fixed-cont {
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	left: 0;
}
header {
	height: 40px;
	z-index: 999;
}
#fixed-cont {
	height: 80px;
	z-index: 998;
}
header + #fixed-cont {
	top: 40px;
}
#fixed-cont + #body {
	margin-top: 80px;
}
header + #fixed-cont + #body {
	margin-top: 120px;
}
#body::after {
	opacity: 0;
}
#fixed-cont::after {
	content: "";
	position: absolute;
	left: 15%;
	top: 100%;
	width: 70%;
	height: 5px;
	background: #ebc475;
	background: -moz-linear-gradient(left, #ebc475 0%, #e5b66e 100%);
	background: -webkit-linear-gradient(left, #ebc475 0%,#e5b66e 100%);
	background: linear-gradient(to right, #ebc475 0%, #e5b66e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebc475', endColorstr='#e5b66e',GradientType=1 );
	z-index: 2;
	transition: 1s;
}
#fixed-cont.fixed_top::after {
	left: 0;
	width: 100%;
	height: 3px;
}
@media screen and (max-width: 1366px) {
	#fixed-cont::after {
		left: 10%;
		width: 80%;
	}
}
@media screen and (max-width: 1159px) {
	#fixed-cont::after {
		left: 5%;
		width: 90%;
	}
}
@media screen and (max-width: 979px) {
	#fixed-cont::after {
		left: 0;
		width: 100%;
	}
}
@media screen and (max-width: 800px) {
	#fixed-cont {
		height: 135px;
	}
	#fixed-cont + #body {
		margin-top: 135px;
	}
	header + #fixed-cont + #body {
		margin-top: 175px;
	}
	#top_right span.float-menu-button {
		background-color: #e2c391;
		height: 38px;
		border-color: #fff;
		/* background-image: url("../images/icons32/menu_mob_chza_white.png"); */
	}
}