﻿

/* ==================================================================
	9.0 Count down Counter
================================================================== */
#countdown{
	margin:o auto;
	display:block;	
}

#countdown ul{ margin:0 auto; text-align:center;}
#countdown ul li{
	margin:0 auto;
	display:inline-block;
	padding:0 6px; width:24%;
	text-align:center;
	border-left:rgba(255,255,255,0.1) 1px solid;	
	height:420px;
	border-radius: 0px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	}

#countdown ul li{
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzFlNTc5OSIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ5JSIgc3RvcC1jb2xvcj0iI2ZiZmNmZCIgc3RvcC1vcGFjaXR5PSIwLjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjN2RiOWU4IiBzdG9wLW9wYWNpdHk9IjAiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
background: -moz-linear-gradient(top,  rgba(30,87,153,0) 0%, rgba(251,252,253,0.1) 49%, rgba(255,255,255,0.1) 50%, rgba(125,185,232,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,0)), color-stop(49%,rgba(251,252,253,0.1)), color-stop(50%,rgba(255,255,255,0.1)), color-stop(100%,rgba(125,185,232,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(30,87,153,0) 0%,rgba(251,252,253,0.1) 49%,rgba(255,255,255,0.1) 50%,rgba(125,185,232,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(30,87,153,0) 0%,rgba(251,252,253,0.1) 49%,rgba(255,255,255,0.1) 50%,rgba(125,185,232,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(30,87,153,0) 0%,rgba(251,252,253,0.1) 49%,rgba(255,255,255,0.1) 50%,rgba(125,185,232,0) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(30,87,153,0) 0%,rgba(251,252,253,0.1) 49%,rgba(255,255,255,0.1) 50%,rgba(125,185,232,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001e5799', endColorstr='#007db9e8',GradientType=0 ); /* IE6-8 */
}

#countdown ul li:hover{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;

}
#countdown ul li.countdownsec,.countdowndays{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	
}
.countdownsec .seconds{
	color:#F60!important;
}
.countdowndays .days{
	color:#F60!important;
}
#countdown ul li:hover span{
	color:#F60;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#countdown ul li:last-child:hover{	
	border-right:rgba(255,255,255,0.1) 1px solid;
	}
#countdown ul li:last-child{	
	border-right:rgba(255,255,255,0.1) 1px solid;
	}
#countdown ul li .days, .hours, .minutes, .seconds{	
	text-transform:uppercase;
	font-family:"Open Sans", Arial, Helvetica, sans-serif;
	font-weight: 500;
	color:#fff;	font-size:42px;
	font-weight: lighter;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	}


#countdown ul li .countlabel{	
	text-transform:uppercase;
	color:rgba(255,255,255,0.5);
	font-size:12px;
	margin-top:12px;
	padding-bottom:0px;
	border-bottom:rgba(28,40,55,0.5) 0px dotted;
	text-align:center;
	}
#countdown ul li .leftlabel{	
	text-transform:uppercase;
	color:rgba(255,255,255,0.06);
	font-size:52px;
	margin-top:5px;
	text-align:center;
	}
#countdown ul li  {	
	padding-top:165px;	
	}
	
