a.cart-pdf-button.button:hover{
	background: #C20E1A ;
	color: #fff ;
}

/* Cross Sell Product Grid Styles */
.crosssell_grid {
    display: flex;
    flex-wrap: wrap;
}

.ci_price_cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crosssell_item > .sale_percent_sticker{
	top: 10px;
    left: 10px;
}

.crosssell_item {
    width: 30.33%;
    border: 1px solid rgba(0,0,0,0.1);
    box-sizing: border-box;
    padding: 21px 24px;
	position: relative ;
}

.crosssell_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4.5%;
}

.crosssell_item > img {
    width: 100%;
    object-fit: contain;
    height: 240px !important;
}

.ci_title {
    color: #000;
    font-size: 20px;
    font-family: 'DIN';
    text-transform: uppercase;
    font-weight: 700;
	transition: all 0.3s ease ;
}

.ci_title:hover{
	color: #C20E1A;
}

.ci_dimensions span {
    font-size: 20px;
    color: #000;
    font-family: 'DIN';
    font-weight: 700;
}

p.ci_sale_price,
p.ci_price {
    margin: 0;
    font-size: 36px;
    font-family: 'Din';
    font-weight: 700;
    color: #C20E1A;
}

sup.ci_regular_price {
    color: #888B8D;
    font-size: 16px;
    position: relative;
    top: -18px;
    margin-right: 6px;
    text-decoration: line-through;
}

/* Filter CSS */

.more-filter{
	cursor: pointer ;
}

.hidden-filter{
	display: none ;
}

.hidden-filter.show-filter{
	display: block ;
	animation: fadeIn 1s ease ;
}

@keyframes fadeIn{
	from{
		opacity: 0 ;
	}
	
	to{
		opacity: 1 ;
	}
}


@media(max-width: 767px){
.crosssell_item {
    width: calc(48% - 20px);
    margin: 25px 10px;
}
	
	.crosssell_grid {
    gap: 0 ;
	justify-content: space-between ;
}
}

@media(max-width:550px)
{	.crosssell_item {
    width: 100%;
		margin: 15px ;
}	
	
		.crosssell_grid {
    gap: 0 ;
	justify-content: space-between ;
}
}
