* {
	box-sizing: border-box;
}
html,
body {
	position: relative;
	font-family: 'Golos Text Regular';
	font-size: 20px;
	color: #000;
	height: 100%;
    min-height: 100%;
    position: relative;
	margin: 0;
}
body input, body button, body textarea, body select {
	outline:none;
}
body label {
	margin:0;
}
a {
	text-decoration: none;
}

.img-responsive {
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
	display: block;
}
.clear {
	clear: both;
}
.main-button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	min-width: 195px;
	padding: 0 10px;
	border-radius: 4px;
	background: #0C0C0C;
	color: #fff;
	text-align: center;
	font: 16px/16px 'Golos Text Medium';
}
.main-button:hover {
	background: #1F1F1F;
}
.main-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 70px;
	height: 22px;
	padding: 0 5px;
	border-radius: 2px;
	background: #FF0000;
	color: #fff;
	text-align: center;
	font: 12px/16px 'Golos Text Medium';
}
.main-badge.small {
	min-width: 54px;
}

.icon-cart {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(images/icon_cart.png) 0 0 no-repeat;
}
.icon-cart:hover {
	background-position:  0 -20px;
}
.icon-personal {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(images/icon_personal.png) 0 0 no-repeat;
}
.icon-personal:hover {
	background-position:  0 -20px;
}
.icon-favorite {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(images/icon_favorite.png) 0 0 no-repeat;
}
.icon-favorite:hover {
	background-position:  0 -20px;
}
.icon-search {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(images/icon_search.png) 0 0 no-repeat;
}

.container-block {
	width: 1240px;
	height: 100%;
	margin: 0 auto;
}
.counter {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: #FF0000;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font: 8px/10px "Golos Text Regular";
	color: #fff;
}





/*******HEADER******/
#header-action {
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #0C0C0C;
	font: 14px/14px "Golos Text Regular";
	color: #fff;
}
.header-wrapper {
	position: relative;
	height: 42px;
	background: #fff;
}
.header-flex {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-flex .left {
	display: flex;
	align-items: center;
	gap: 40px;
}
.header-flex .logo {
	width: 151px;
	flex-shrink: 0;
}
.header-flex .logo img {
	max-width: 100%;
	object-fit: contain;
}
.header-flex .top-menu {
	display: flex;
	align-items: center;
	gap: 32px;
}
.header-flex .top-menu  a {
	font: 16px/16px 'Golos Text Medium';
	color: #000;
}
.header-flex .header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
}
.header-flex .header-actions > div {
	position: relative;
	width: 20px;
	height: 20px;
}
.header-flex .header-actions .counter {
	bottom: -2px;
	right: -2px;
}