<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Coupon Box */
.coup-left {
	width: 135px;
}
.promo_icon {
    background: var(--primary_col);
    width: 30px;
    height: 30px;
}
.promo_icon img {
    filter: brightness(0) invert(1);
    width: 60%;
}
.coupon-box .discount-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    height: 2.6em;
}
.coupon-box-wrap .coupon-verified-meta {
    z-index: 999;
}
.verified-coupon {
	color: #1EC132;
}
.category-coupons .saved-coupon button { 
	width: 30px;
	height: 30px;
	outline: 0;
	border: 0
}
button.view-details i {
	transform: rotate(0);
	transition: all 0.3s;
}
button.view-details.active i {
	transform: rotate(180deg);
}

@media (max-width: 768px) {
	.promo_icon {
	    width: 22px;
	    height: 22px;
	}
	.coupon-box-wrap .discount-description {
	    -webkit-line-clamp: 3;
	    height: 4.5em;
	}
}</pre></body></html>