
.custom-inventory-list.product-list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(5, 1fr);
}
.custom-inventory-list.product-list .inventory-item .item-details .item-title a {
    text-decoration: none;
    width: 100%;
    display: flex;
    padding-right: 10px;
    height: 100%;
    align-items: end;
    justify-content: end;
    padding-bottom: 8px;
	font-weight:500;
}
.custom-inventory-list.product-list .item-details h3 {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    width: 100%;
    text-align: right;
    padding-right: 0;
    height: 50%;
}
.custom-inventory-list.product-list .item-details h3 a {
    text-align: right;
    font-size: 15.3px;
    color: #ffffff;
	line-height: 1;
    margin-bottom: 3px;
	    font-size: 15.3px;
}
.custom-inventory-list.product-list .inventory-item:before {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background-repeat: repeat-x;
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
}
.custom-inventory-list.product-list .inventory-item {
    padding: 0px; position: relative; gap: 0px; border:0px;
}





@media only screen and (max-width: 1024px) {
.custom-inventory-list.product-list {
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}
}


@media only screen and (max-width: 768px) {
.custom-inventory-list.product-list {
    grid-template-columns: repeat(3, 1fr);
}
}

@media only screen and (max-width: 575px) {
.custom-inventory-list.product-list {
    grid-template-columns: repeat(2, 1fr);
}
}
















