.countdownHolder{
	width: 800px;
	font-family: 'PT Sans';
	font-size: 100px;
	text-align:left;
	letter-spacing:-18px;
	font-weight: 700;
	margin-top: 10px;
}

.position{
	padding: 3px;
	border-radius: 8px;
	display: inline-block;
	height: 106px;
	overflow: hidden;
	position: relative;
	width: 78px;

	background: #969696;
	background: -webkit-linear-gradient(90deg, #969696 0%, rgba(255, 255, 255, 0) 100%);
	background: -moz-linear-gradient(90deg, #969696 0%, rgba(255, 255, 255, 0) 100%);
	background: -ms-linear-gradient(90deg, #969696 0%, rgba(255, 255, 255, 0) 100%);
	background: -o-linear-gradient(90deg, #969696 0%, rgba(255, 255, 255, 0) 100%);
}

.digit{
	position:absolute;
	display:block;
	width:71px;
	background-color: rgba(0,0,0,1);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-align:center;
	color:#fff;
	letter-spacing:-1px;
	border: solid 3px rgba(0,0,0,.45);
	line-height: 1em;
}

.digit.static{	
	background-image: linear-gradient(bottom, rgba(0,0,0,1) 50%, rgba(255,255,255,0.3) 50%);
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,1) 50%, rgba(255,255,255,0.3) 50%);
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,1) 50%, rgba(255,255,255,0.3) 50%);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,1) 50%, rgba(255,255,255,0.3) 50%);
	background-image: -ms-linear-gradient(bottom, rgba(0,0,0,1) 50%, rgba(255,255,255,0.3) 50%);	
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.5, rgba(0,0,0,1)),
		color-stop(0.5, rgba(255,255,255,0.3))
	);
}

/**
 * Вы можете использовать данные классы для скрытия
 * частей счетчика, которые не нужны.
 */

.countDays{ /* display:none !important;*/ position: relative;}
.countDiv0{ /* display:none !important;*/ }
.countHours{position: relative;}
.countDiv1{}
.countMinutes{position: relative;}
.countDiv2{}
.countSeconds{position: relative;}


.countDiv{
	display:inline-block;
	width:30px;
	height:109px;
	position:relative;
}

.countDiv:before,
.countDiv:after{
	position:absolute;
	left: 8px;
	top: 0.3em;
	content:'';

	width: 14px;
	height: 14px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #000;
	background-image: -webkit-linear-gradient(top, #4a4a4a, #000);
	background-image: -moz-linear-gradient(top, #4a4a4a, #000);
	background-image: -o-linear-gradient(top, #4a4a4a, #000);
	background-image: linear-gradient(to bottom, #4a4a4a, #000);
}

.countDiv:after{
	top: 0.7em;
}

.days{
	display: block;
	position: absolute;
	width: 175px;
	color: #828282;
	font-size: 24px;
	bottom: -10px;
	text-align: center;
	letter-spacing: 0;
	right: 0;
}