.catalog .row.product-item-list{
    display: flex;
}

.product-item-small-card{
    width: 20%;
    margin-bottom: 3rem;
}
.product-item-small-card .product{
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.product-item-small-card .product-title{
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--blue);
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
    min-height: 3rem;   
}
.product-item-small-card .product-img{
    text-align: center;
    aspect-ratio: 1/1;
}
.product-item-small-card img{
    max-width: 200px;
    max-height: 200px;    
}
.product-item-small-card:hover img{
	filter: drop-shadow(var(--PioneerShadow));
}

@media (max-width: 1399px) {

}
@media (max-width: 1199px) {
    .product-item-small-card{
        width: 25%;
    }
}

@media (max-width: 991px) {
    .product-item-small-card{
        width: 33.33%;
    }
}


@media (max-width: 767px) {  
	.product-item-small-card img { 
		max-width: 135px;
        max-height: 135px;           
	}
}

@media (max-width: 575px) {
    .product-item-small-card{
        width: 50%;
    }
}

.popup-window-content p{
    color: var(--black);
}