<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* =Countdown
-------------------------------------------------------------- */
.countdown-box {
	border: 1px solid #E3E3E3;
	box-shadow: 0 7px 12px -6px #D1D1D1;
	list-style: none outside none;
	margin-bottom: 20px;
	position: relative;
	top: -20px;
}
.countdown {
	width: 100%;
	margin: 0 auto;
	padding: 12px 0 10px 0;
	text-align: center;
}
.countdown-nr {
	width: 17%;
	min-width: 23px;
	height: 6em;
	display: inline-block;
	vertical-align: top;
	margin-left: 1%;
	margin-right: auto;
	position: relative;
	color: #fff;
	text-align: center;
	white-space: nowrap;
}
.countdown-tdash {
	width: 18%;
	min-width: 40px;
	max-width: 90px;
	height: 48px;
	display: inline-block;
	vertical-align: top;
	margin-left: 1%;
	margin-right: auto;
	position: relative;
	color: #fff;
	text-align: center;
	white-space: nowrap;
}
.countdown-weeks-tdash	{
	clear: both;
	margin-left: 13%;
	display: block !important;
}
.countdown-digit {
	font-size: 2.5em;
	line-height: 1.5em;
	display: inline-block;
	vertical-align: top;
	width: 1em;
	height: 1.5em;
	position: relative;
	margin-top: 4px;
	margin-left: 0;
	margin-right: 2px;
	border-radius: 5px;
	background: #eae9e6;
	color: rgb(49, 49, 49);
	text-shadow: 0 1px 0 #fff;
	border-bottom: 1px solid #c6c6c6;
}

.countdown-dash {
	height: 5em;
}

.countdown-tdash .countdown-digit {
	margin-right: 0 !important;
}

.countdown-title {
	display: block;
	position: absolute;
	width: 100%;
	color: #999;
	text-align: center;
	font-size: 1em;
	height: 2em;
	margin: 0px;
	bottom: -0.7em;
	white-space: nowrap;
	overflow: hidden;
}

@media screen and (max-width: 650px) {
	.countdown-digit {
		font-size: 2em;
	}
}

@media screen and (max-width: 480px) {
	.countdown-digit {
		font-size: 1em;
	}
}
</pre></body></html>