.catalog-section{
	display: table;
	width: 100%;
    border-collapse: collapse;
}
.catalog-section .row:before,
.catalog-section .row:after{
	display: none;
}
.catalog-section .row.titles,
.catalog-section .product-item-container{
    display: table-row;
}
.catalog-section .row.titles,
.catalog-section .product-item-container:nth-child(odd){
	background-color: #dddddd;
}
.catalog-section .product-item-container:nth-child(even){
	background-color: rgb(249, 249, 251);
}
.catalog-section .row.titles{
	font-weight: 700;
}
.catalog-section .row.titles > div,
.catalog-section .product-item-container > div{
	display: table-cell;
	border: 1px solid #000;
	padding: 5px;
	font-size: 12px;
	text-align: center;
}
.catalog-section .product-item-container > div:first-child{
	text-align: left;
	white-space: nowrap;
}
.catalog-section .product-item-container .btn.orderPrice{
	min-height: 0;
    padding: 5px 10px;
    font-size: 12px;
    margin: 0 auto;
    display: block;
}
.catalog-section .product-item-container .product-item-button-container .btn{
    font-size: inherit;
    min-height: 0;
    border: none;
    padding: 5px 10px;
    background-color: #bb1e10;
}
@media (max-width: 780px){
	.catalog-section-wrap{
		overflow-x: scroll;
	}
/*	.catalog-section{
		border-collapse: none;
	}
	.catalog-section .row.titles > div:first-child,
	.catalog-section .product-item-container > div:first-child {
	    position: sticky;
	    left: 0;
	    z-index: 99999;
	    background: inherit;
	    border-right: 1px solid #000;
	}*/
	.catalog-section .product-item-container .product-item-button-container .btn{
		background-image: url(cart.png);
    	background-repeat: no-repeat;
	    background-position: center center;
	    font-size: 0;
	    color: transparent;
	    width: 50px;
	    height: 50px;
	    background-size: 25px;
	}
}