.catalog-section {
	padding-bottom: 70px;
	display: flex;
	*display: block;
}

@media (max-width: 1023px) {
	.catalog-section {
		display: block;
	}
}

.catalog-section__sidebar {
	float: left;
	width: 205px;
	flex: 205px 0 0;
	padding-right: 32px;
}

@media screen and (max-width: 1023px) {
	.catalog-section__sidebar {
		float: none;
		width: 100%;
	}
	.catalog-section__filter {
		display: none;
	}
}

.catalog-filter__set {
	margin-bottom: 24px;
}


.catalog-filter [type=submit]{
	padding-top: 8px;
	padding-bottom: 8px;
}

.filter-set {
	border: none;
	padding: 0;
}

.filter-set__trigger {
	margin-bottom: 16px;
	font-size: 16px;
	color: #0072bc;
	font-weight: bold;
	position: relative;
	padding-right: 16px;
	padding-left: 0;
	cursor: pointer;
}

.filter-set__trigger::after {
	content: '';
	background: url('../images/small-arrow.png') no-repeat;
	background-size: contain;
	display: block;
	width: 8px;
	height: 4px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: scaleY(1);
}

.filter-set_expanded .filter-set__trigger::after {
	transform: scaleY(-1);
}

.filter-set label {
	display: block;
	margin-bottom: 8px;
}

.filter-set input[type=checkbox] {
	margin: 0 8px 0 0;
	vertical-align: middle;
	font-size: 16px;
	height: 16px;
    width: 16px;
    opacity: 0.5;
}
.filter-set input[type=checkbox]:checked {
	opacity: 1;
}

.filter-set label span {
	vertical-align: middle;
}


.catalog-section__container {
	float: left;
	width: 1041px;
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 1365px) {
	.catalog-section__container {
		width: 787px;
	}
}

@media screen and (max-width: 1023px) {
	.catalog-section__container {
		width: 100%;
	}
}

.catalog-section__lazy-load {
	width: 100%;
	margin-top: 2px;
	border: none;
	color: #0072bc;
	font-size: 16px;
	text-transform: none;
	padding: 8px 0;
	border-radius: 0;
}

.catalog-section__item {
	width: 219px;
	min-height: 262px;
	padding: 32px 20px 16px;
	border: 1px solid #ebebeb;
	float: left;
	margin-right: -1px;
	margin-bottom: -1px;
}

@media screen and (max-width: 1023px) {
	.catalog-section__item {
		width: 197px;
	}
}

@media screen and (max-width: 767px) {
	.catalog-section__item {
		width: 100%;
		height: auto;
	}
}
.catalog-item {
	text-align: center;
	position: relative;
}

.catalog-item__img {
	width: 100%;
	height: 164px;
	display: block;
}

.catalog-item__img img {
	height: 100%;
	width: 100%;
	display: block;
	object-position: center;
	object-fit: scale-down;
}

.catalog-item a {
	color: #000;
	text-decoration: none;
}

.catalog-item__name {	
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
	.catalog-item__name {	
		margin-bottom: 16px;
		display: block;
	}
}

.catalog-item__add-btn {
	position: absolute;
	width: 187px;
	bottom: 17px;
	left: 0;
	right: 0;
	margin: auto;
	text-transform: none;
	padding: 6px 0;
	font-size: 16px;
	border-radius: 0;
}

@media screen and (max-width: 767px) {
	.catalog-item__add-btn {
		position: static;
		display: block;
		height: auto;
	}
}