@import url('https://fonts.googleapis.com/css?family=Arbutus+Slab');

.countdownHolder{
	width:100%;
	margin:0 auto;
	font: 40px/1.5 'Arbutus Slab',sans-serif;
	text-align:center;
	letter-spacing:-3px;
}

.position{
	float: left;
	height: 3.2em;
	overflow: hidden;
	position: relative;
	width: 65px;
}

.digit{
	position:absolute;
	display:block;
	width: .6em;
	text-align: center;
	color: #ddd0ab;
	font-size: 100px;
}

.digit.static{

}

/**
 * You can use these classes to hide parts
 * of the countdown that you don't need.
 */

.countDays{ /* display:none !important;*/
	margin-right: 65px;
}
.countDiv0{ /* display:none !important;*/ }
.countHours{
	margin-right: 65px;
}
.countDiv1{}
.countMinutes{
	margin-right: 65px;
}
.countDiv2{}
.countSeconds{}


.countDiv{
	display:inline-block;
	width:16px;
	height:1.2em;
	position:relative;
}

.countDiv:before,
.countDiv:after{
	position:absolute;
	width:5px;
	height:5px;
	background-color:#444;
	border-radius:50%;
	left:50%;
	margin-left:-3px;
	top:0.5em;
	box-shadow:1px 1px 1px rgba(4, 4, 4, 0.5);
	content:'';
}

.countDiv:after{
	top:0.9em;
}

.txt_day,
.txt_hour,
.txt_minutes,
.txt_seconds{
	display: table-row;
	line-height: 1;
	font-size: 30px;
	letter-spacing: 1px;
	color: #a87677;
}

@media screen and (max-width: 750px) {
	.position {
		height: 1.4em;
		width: 28px;
	}
	.digit {
    width: 0.6em;
    font-size: 2.6rem;
	}
	.countDays{
		margin-right: 5%;
	}
	.countHours{
		margin-right: 5%;
	}
	.countMinutes{
		margin-right: 5%;
	}
	.txt_day, .txt_hour, .txt_minutes, .txt_seconds {
    font-size: 12px;
	}
}
