/* jQuery Countdown styles 2.0.0. */
/* modified */
.countdown-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}
.countdown-section {
	font-family:"Montserrat";
	text-align: center;
	border-radius: 50%;
	/* border: 2px solid #574a66; */
	height: 110px;
	width: 110px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.countdown-amount {
	font-weight: 300;
  font-size: 48px;
}
.countdown-period {
	margin-top: 5px;
	font-weight: bold;
	margin-bottom: 10px;
}

@media (max-width: 500px) {
	.countdown-row {
		gap: 8px;
	}
  .countdown-section {
		height: 80px;
		width: 80px;
	}
	.countdown-amount {
		font-weight: 300;
		font-size: 30px !important;
	}
	.countdown-period {
		margin-top: 0px !important;
	}
}