
#nps-countdown-timer {
	display: flex;
	gap: 10px;
	padding: 4px 10px 4px 10px;
	background-color: #EC32231A;
	border: 1px solid #EC3223;
	border-radius: 50px;
	height: 34px;
	width: 102px;

	svg {
		align-self: center;
	}
	
	.countdown {
		display: flex;
		font-size: 16px;
		color: #EC3223;
		gap: 3px;
		justify-content: center;
		line-height : 16px;
		align-items: center;
	}
}

@media screen and (max-width: 768.9px) {
	#nps-countdown-timer {
		gap: 7px;
		padding: 3px 8px;
		height: 30px;
		width: 85px;

		svg {
			height: 15px;
			width: 15px;
		}
		
		.countdown {
			font-size: 14px;
			gap: 3px;
			line-height : 16px;
		}
	}
}