/*
 * Simple Countdown
 * @version 1.0
 * © by CeLa
 */

/* Default style */
.countdown-outer.default-style {
	margin-top: 45px;
	padding-top: 30px;
	border: 1px solid #eee;
	background-color: #f7f7f7;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}
.default-style .header {
	text-align: center;
}
.default-style .description {
	text-align: center;
}
.default-style #countdown {
	display: flex;
	gap: 30px;
	justify-content: center;
	margin: 0 auto;
	padding: 30px;
	border-top: 1px solid #eee;
}
.default-style #countdown > div {
	flex: 1;
}
.default-style #countdown .wrapper span {
	display: block;
	text-align: center;
}
.default-style #countdown .wrapper span.time {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1;
}

/* Minimalistic style */
.countdown-outer.minimal-style {}

/* Modern style */
.countdown-outer.modern-style {}