.bgcountdown {
	background: url(/countdown/banner-thi.jpg);
	background-size: 100%;
	min-height: 580px;
	background-repeat: no-repeat;
	margin: 0 auto;
}
#link{
	text-align: center;
	position: absolute;
	top: 456px;
	bottom: 0;
	left: 0;
	right: 0;
}
.countdown {
	width: 465px;
	height: 142px;
	text-align: center;
	background-image: -webkit-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	background-image: -moz-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	background-image: -ms-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	background-image: -o-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	border: 1px solid #e60202;
	border-radius: 15px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
	margin: auto;
	padding: 25px 0;
	position: absolute;
	top: 26px;
	bottom: 0;
	left: 0;
	right: 0;
}
.countdown:before{
	content: "";
	width: 8px;
	height: 65px;
	background: #ba0000;
	background-image: -webkit-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	background-image: -moz-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	background-image: -ms-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	background-image: -o-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	border: 1px solid #e60202;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	display: block;
	position: absolute;
	top: 36px;
	left: -10px;
}
.countdown:after{
	content:"";
	width: 8px;
	height: 65px;
	background: #ba0000;
	background-image: -webkit-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	background-image: -moz-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	background-image: -ms-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	background-image: -o-linear-gradient(top, #d63731, #e42e27, #f7261e, #d63731);
	border: 1px solid #a40000;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	display: block;
	position: absolute;
	top: 36px;
	right: -10px;
}
.countdown__item {
	width: 92px;
	max-width: 100px;
	font: bold 50px 'Droid Sans', Arial, sans-serif;
	text-align: center;
	color: #d20202;
	background:rgba(0, 0, 0, 0) linear-gradient(#ffffff 50%, rgb(234, 234, 234) 48%, #ffffff) repeat local 0 0px;
	border-radius: 10px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
	margin: 0 8px;
	padding: 10px 0;
	display: inline-block;
	position: relative;
}

.countdown__item--large {
  flex: auto;
  width: 100%;
  font-size: 50px;
}
.countdown__item:before{
	content:"";
	width: 100%;
	height: 13px;
	background: #111;
	display: block;
	padding: 0 3px;
	position: absolute;
	top: 41%; left: -3px;
	z-index: -1;
}

.countdown__item:after{
	content:"";
	width: 100%;
	height: 1px;
	background: #eee;
	border-top: 1px solid #eaeaea;
	display: block;
	position: absolute;
	top: 48%; left: 0;
}

.countdown__label {
	font-size: 15px;
	padding-top: 0px;
	text-transform: uppercase;
	color: #ff0000;
	line-height: 10px;
}
.countdown__item--large .countdown__label:before, .countdown__item--large .countdown__label:after {
  content: '';
  display: block;
  height: 1px;
  background-image: linear-gradient(left, transparent, rgba(0, 0, 0, 0.4), transparent);
}
.buttons {
	display: inline-block;
	background-color: #ff0000;
	border: none;
	color: #FFFFFF;
	text-align: center;
	font: bold 25px 'Droid Sans', Arial, sans-serif;
	padding: 15px;
	width: 380px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
	box-shadow: 0 9px #999;
	border-radius: 15px;
	text-transform: uppercase;
}

.buttons span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.buttons span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.buttons:hover span {
  padding-right: 25px;
}

.buttons:hover span:after {
  opacity: 1;
  right: 0;
}
.buttons span a, .buttons span a:hover, .buttons span a:focus {
	color: #fff;
}