.kititem-heading {
    text-transform: none;
}

table.product-details-kititem-table td,
table.product-details-kititem-table th{
	padding: 5px;
}
table.product-details-kititem-table{
	width: 100%;
}

.kititem-container{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	box-sizing: border-box;
	
	margin: -10px;
}

.product-details-kititem-table .child-product-qty,
.kititem-container .child-product-qty{
	font-weight: 600;
	white-space: nowrap;
}

.kititem-container .product-item {
	box-sizing: border-box;
	
	padding: 10px;
}

.kititem-container .product-item .product-image img{
	max-width: 100%;
}

.kititem-container .product-item .product-name{
	height: auto;
    overflow: visible;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.25;
    font-family: Inter;
}

@media (max-width:767px) {
	.kititem-container .product-item{
		flex: 0 0 50%;
		max-width: 50%;
	}
}
@media (min-width:768px) and (max-width:991px){
	.kititem-container .product-item{
		flex: 0 0 33.33%;
		max-width: 33.33%;
	}
}
@media (min-width:992px) and (max-width:1199px){
	.kititem-container .product-item{
		flex: 0 0 25%;
		max-width: 25%;
	}
}
@media (min-width:1200px){
	.kititem-container .product-item{
		flex: 0 0 20%;
		max-width: 20%;
	}
}

/* kit item quick shop popup */
.kititem-qs h3{
    border-bottom: 2px solid #000;
    font-weight: 600;
	font-size: 16px;
    padding-bottom: 5px;
}

.kititem-qs .product-shop-wrap .detail-row {
    margin-bottom: 25px;
}

.kititem-qs .product-shop-wrap .detail-row .product-details-table td, 
.kititem-qs .product-shop-wrap .detail-row .full-description,
.kititem-qs .product-shop-wrap .detail-row {
    font-size: 14px;
    line-height: 1.25;
}


/* kit set item label */
.products-grid .product-item-info .kitset-label-container {
	position: absolute;
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
	bottom: 0;
	left: 0;
}

