.countdownHolder {
    font-family: Arail, sans-serif;
    font-size: 14px;
    background: #1b426c;
    border-radius: 0 4px 4px 0;
    margin-right: 4px;
    line-height: 100%;
    font-weight: bold;
    width: 140px;
    height: 30px;
    text-align: center;
    box-sizing: border-box;
}

.position {
    display: inline-block;
    overflow: hidden;
    position: relative;
    color: white;
    background: transparent;
    font-family: 'Century Gothic', 'sans-serif';
    width: 9px !important;
    height: 18px !important;
    margin-right: -2px;
    margin-left: -2px;
}

.digit {
    line-height: 25px;
    margin: 0px;
    padding: 0px;
    position: absolute;
    left: 0 !important;
}

.digit.static{
	/*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 {
    border-right: 1px solid #426095;
    width: 35px !important;
    display: inline-block;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    max-width: 34px !important;
}
.countDiv0{ /* display:none !important;*/ }
.countHours {
    display: inline-block;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    max-width: 34px !important;
    padding: 0 0 0 4px;
}
.countDiv1{}
.countMinutes {
    display: inline-block;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    max-width: 34px !important;
}
.countDiv2{}
.countSeconds {
    display: inline-block;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    max-width: 34px !important;
}
.countText {
    display: block;
    padding: 0 !important;
    text-align: center;
    font-size: 12px;
    font-family: 'Arial', 'sans-serif';
    line-height: 80%;
    font-weight: normal;
    color: #fff;
    transform: scale(0.6);
}

.countDiv {
    display: inline-block;
    width: 6px;
    height: 1.9em;
    position: relative
}

    .countDiv:before,
    .countDiv:after {
        position: absolute;
        width: 2px;
        height: 2px;
        line-height: 28px;
        background-color: #fff;
        border-radius: 50%;
        left: 50%;
        top: 0.5em;
        box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
        content: '';
        animation: transform 1s infinite;
        -moz-animation: transform 1s infinite;
        -webkit-animation: transform 1s infinite;
        -o-animation: transform 1s infinite;
    }

.countDiv:after{
	top:0.9em;
}

@keyframes transform {
    0% {
        transform: scale(0);
    } 

    80% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}