.header {
	min-height: 58px;
	padding-bottom: 10px;
	overflow: hidden;
	width: 100%;
	position: relative;
	background: #fff;
}

.header .logo {
	display: block;
	margin: 0 auto;
	width: 184px;
}

/* buttons */
.header-panel {
	margin-top: 14px;
	overflow: hidden;
}
.header-panel .left,
.header-panel .center,
.header-panel .right {
	float: left;
	min-height: 45px;
	width: 25%;
}
.header-panel .center {
	width: 50%;
}
.header-panel .right {
	text-align: right;
}

.header-panel .menu,
.header-panel .search,
.header-panel .cart {
	display: block;
	width: 24px;
	height: 24px;
	margin-top: 13px;
	text-decoration: none;
}

.header-panel .menu {
	background: url("../img/menu.svg") center no-repeat;
	background-size: 24px 17px;
	float: left;
}
body.nosvg .header-panel .menu {
	background: url('../img/icons/mob-button.png') 0 0 no-repeat;
}

.header-panel .search {
	background: url("../img/search.svg") center no-repeat;
	background-size: 24px 24px;
	float: right;
}
body.nosvg .header-panel .search {
	background: url('../img/icons/mob-button.png') -27px 0 no-repeat;
}

.header-panel .cart {
	background: url("../img/cart.svg") center no-repeat;
	background-size: 24px 24px;
	float: right;
	margin-left: 10px;
	position: relative;
	cursor: default;
	pointer-events: none;
	opacity: 0.3;
}
body.nosvg .header-panel .cart {
	background: url('../img/icons/mob-button.png') -80px 0 no-repeat;
}
.header-panel .cart:after {
	content: attr(data-count);
	font: bold 14px/25px Arial, sans-serif;
	text-align: center;
	color: #fff;
	width: 25px;
	height: 25px;
	background: #0d67a7;
	border-radius: 14px;
	position: absolute;
	top: -12px;
	right: -12px;
	display: none;
}
.header-panel .cart.active {
	opacity: 1;
	pointer-events: auto;
}
.header-panel .cart.active:after {
	display: block;
}

.header-panel .lang {
	float: left;
	height: 24px;
	margin-left: 10px;
	margin-top: 13px;
	text-decoration: none;
	font: 18px Tahoma, sans-serif;
	color: #494949;
	border-bottom: 1px dashed;
	cursor: pointer;
	overflow: hidden;
	text-align: center;
}
.header-panel .lang > span {
	display: block;
	height: 24px;
}
.header-panel .lang.active {
	margin: 8px -8px -29px 2px;
	padding: 5px 8px;
	background: #DEECF6;;
	height: 52px;
	border-bottom: none;
}
.header-panel .lang > a {
	display: block;
	height: 24px;
	margin-top: 2px;
	text-decoration: none;
	color: #494949;
}

/* search */
.search-form {
	display: none;
	margin-top: 10px;
	width: 92%;
	padding: 0 4%;
}