.coupons-widget-container-placeholder {
    display: flex;
	width: 100%;
	height: 200px;
    gap: 10px;
}

.coupons-widget-container-placeholder.wide-layout {
    flex-direction: column;
	height: 410px;
}

.coupons-widget-container-placeholder .single-coupon {
	width: 50%;
	height: 100%;
	border-radius: 12px;
}

.coupons-widget-container-placeholder.wide-layout .single-coupon {
	width: 100%;
}

.coupons-widget-container-placeholder .single-coupon > .content {
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: space-evenly;
	width: 100%;
	height: 100%;
	padding: 10px;
}

.coupons-widget-container-placeholder.wide-layout .single-coupon > .content {
	display: grid;
	grid-template-columns: 30% 1fr;
	padding: 0;
}

.coupons-widget-container-placeholder .single-coupon > .content .placeholder {
	background-color: #eee;
}

.coupons-widget-container-placeholder .single-coupon > .content > .seller-text {
	width: 70%;
	height: 15%;
}

.coupons-widget-container-placeholder .single-coupon > .content > .seller-logo {
	width: 90%;
	height: 25%;
}

.coupons-widget-container-placeholder .single-coupon > .content > .title {
	width: 90%;
	height: 25%;
}

.coupons-widget-container-placeholder .single-coupon > .content > .coupon {
	width: 80%;
	height: 20%;
}

.coupons-widget-container-placeholder .single-coupon > .content > .tag {
	display: flex;
	justify-content: center;
    align-items: center;
	height: 100%;
    background-color: #ddd;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.coupons-widget-container-placeholder .single-coupon > .content > .tag > .text-tag {
	width: 50%;
	height: 50%;
}

.coupons-widget-container-placeholder .single-coupon > .content > .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
    padding: 20px;
    gap: 20px;
	background-color: #eee;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.coupons-widget-container-placeholder .single-coupon > .content > .text > .title {
	width: 100%;
	height: 40%;
}

.coupons-widget-container-placeholder .single-coupon > .content > .text > .coupon {
	width: 30%;
	height: 30%;
}