/* PinkPharma Sale Timer
   Colours sampled from the PinkPharma storefront (magenta CTA buttons). */

.pp-sale-timer {
	--pp-pink: #e6007e;
	--pp-pink-dark: #c00069;

	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 12px 0;
	padding: 10px 16px;
	border-radius: 999px;
	background: transparent;
	border: 2px solid var(--pp-pink);
	color: var(--pp-pink);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.2px;
}

.pp-sale-timer__icon {
	font-size: 16px;
	line-height: 1;
}

.pp-sale-timer__text {
	white-space: nowrap;
}

.pp-sale-timer__value {
	font-weight: 700;
	margin-left: 2px;
}

/* Hidden once the sale has ended. */
.pp-sale-timer.pp-sale-timer--ended {
	display: none;
}

@media (max-width: 480px) {
	.pp-sale-timer {
		font-size: 13.5px;
		padding: 8px 14px;
	}
}
