.grid {}

.grid .bx_content_section { margin-bottom: 15px; }

.grid .bx_sidebar { margin-bottom: 15px; }

/* grid2x1 */
.grid2x1 {}

.grid2x1 .bx_content_section {
	float: left;
	width: 66%;
	margin-bottom: 15px;
}

.grid2x1 .bx_sidebar {
	float: right;
	width: 33%;
	margin-bottom: 15px;
	padding-left: 5%;
	box-sizing: border-box;
}

@media (max-width: 960px) {
	.grid2x1 .bx_sidebar { padding-left: 4%; }
}

@media (max-width: 640px) {
	.grid2x1 .bx_content_section,
	.grid2x1 .bx_sidebar {
		width: 100%;
		float: none;
	}

	.grid2x1 .bx_sidebar { padding-left: 3%; }
}

@media (max-width: 479px) {
	.grid2x1 .bx_sidebar { padding-left: 1%; }
}

.catalog-block-header {
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	margin: 5px 0;
	padding: 5px 0;
	border-bottom: 2px solid #d9dee6;
	border-bottom-color: var(--primary);
	color: #000;
}

/* Strateg: STYLE | Start */

.bx-filter-section {
	
}

/* .product-item-list-col-3 {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
	gap: 10px;
} */

.catalog-section {
	display: flex;
    flex-wrap: wrap;
    gap: 30px 10px;
    justify-content: space-between;
}

.catalog-section .product-item-line-card {
	max-width: calc(33.33333333333333333% - 10px);
	width: 100%;
	/* aspect-ratio: 1 / 1.2; */
}

/* .product-item-list-col-3 > div{
	width: 30%;	
	height: 30%; 
} */

@media (min-width: 701px) and (max-width: 1000px) {
	.catalog-section .product-item-line-card {
		max-width: calc(50% - 5px);
		width: 100%;
	}
}

@media (min-width: 100px) and (max-width: 700px) {
	.catalog-section .product-item-line-card {
		max-width: calc(100%);
		width: 100%;
	}
}