.dates {
}
.dates .date {
	display: flex; gap: 1rem; align-items: center;
	margin-top: 1rem; padding: 1rem;
	border: 1px solid #ddd;
}
.dates .date .info {
	flex: 1 1 auto;
}
.dates .date .type {
}
.dates .date .value {
	margin-top: 0.5rem;
	font-size: 1.125rem;
}
.dates .date .value .extend {
	color: #c00;
}
.dates .date .countdown {
	flex: 0 0 fit-content;
}
@media (min-width: 768px) {
}


.countdown {
	display: flex; gap: 0.25rem;
}
.countdown .unit {
	flex: 0 0 48px;
	padding: 2px;
	background: #ddd; border-radius: 24px;
}
.countdown .wrap {
	position: relative;
	width: 44px; height: 44px;
	background: #fff; border-radius: 22px;
}
.countdown .val {
	display: block; position: absolute;
	left: 0; right: 0; bottom: 19px;
	color: #000; font-size: 1.25rem; font-weight: 500; line-height: 1; text-align: center;
}
.countdown.expired .val {
	color: #ddd;
}
.countdown .label {
	display: block; position: absolute;
	left: 0; right: 0; top: 26px;
	color: #777; font-size: 0.625rem; line-height: 1; text-align: center; text-transform: uppercase;
}
