.countdownHolder{
	width:100%;
	margin:0 auto;
	font: 15px/1.5 'Open Sans Condensed',sans-serif;
	font-weight: bold;
	text-align:center;
	letter-spacing:-3px;
}

.position{
	display: inline-block;
	height: 35px;
	overflow: hidden;
	position: relative;
	width: 27px;
}

.digit{
	position:absolute;
	display:block;
	width:25px;
	height:35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color:var(--color);
	border-radius:0.2em;
	text-align:center;
	color:#fff;
	letter-spacing:-1px;
}

.digit.static{
	background: var(--color);
	border-radius: 0.4vw;
	box-shadow: 1vw 1vw 0.8vw NaNpx rgba(231,45,57,0.36); 
	/*box-shadow:1px 1px 1px rgba(4, 4, 4, 0.35);
	
	background-image: linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
	background-image: -o-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
	background-image: -moz-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
	background-image: -webkit-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
	background-image: -ms-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
	
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.5, #3A3A3A),
		color-stop(0.5, #444444)
	);*/
}

.countDays{ /* display:none !important;*/ }
.countDiv0{ /* display:none !important;*/ }
.countHours{}
.countDiv1{}
.countMinutes{}
.countDiv2{}
.countSeconds{}

.countDiv:before{
	display: none!important;
}

.countDiv{
	display:inline-block;
	width:5px;
	height:1.6em;
	position:relative;
}

.countDiv:before,
.countDiv:after{
	position:absolute;
	margin-left:-5px;
	font-size: 12px;
	font-size: 50%;
	content:'';
}
.countDays,.countHours,.countMinutes,.countSeconds{
	position: relative;
}
.countDays:after{
	content: '天';
    position: absolute;
    top: 20px;
    width: 100%;
    left: 0;
    border-top: 1px solid var(--color);
}
.countHours:after{
	content: '时';
	position: absolute;
	position: absolute;
    top: 20px;
    width: 100%;
    left: 0;
    border-top: 1px solid var(--color);
}
.countMinutes:after{
	content: '分';
	position: absolute;
	position: absolute;
    top: 20px;
    width: 100%;
    left: 0;
    border-top: 1px solid var(--color);
}
.countSeconds:after{
	content: '秒';
	position: absolute;
	position: absolute;
    top: 20px;
    width: 100%;
    left: 0;
    border-top: 1px solid var(--color);
}

/*.countDiv0:after{
	content: '天';
}
.countDiv1:after{
	content: '时';
}
.countDiv2:after{
	content: '分';
}*/

.countDiv:after{
	top:0.9em;
}