#bgcountdown {
background: url(/countdown/banner-thi.jpg);
    background-size: 100%;
    height: 200px;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0 auto;
}
#link {
	text-align: center;
	position: absolute;
	top: 150px;
	height: 27px;
	bottom: 0;
	left: 0;
	right: 0;
}
.countdown {
    width: 42%;
    height: 55px;
    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: 5px;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 60%);
    margin: 0 auto;
    padding: 8px 0;
    position: absolute;
    top: 88px;
    bottom: 0;
    left: 0;
    right: 0;
}
.countdown:before{
content: "";
    width: 9px;
    height: 40px;
    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-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: block;
    position: absolute;
    top: 6px;
    left: -8px;
}
.countdown:after{
content: "";
    width: 9px;
    height: 40px;
    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-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    display: block;
    position: absolute;
    top: 6px;
    right: -8px;
}
.countdown__item {
    width: 25px;
    max-width: 25px;
    font: bold 12px '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-top: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 70%);
    margin: 0px 5px;
    padding: 5px 0;
    display: inline-block;
    position: relative;
}

.countdown__item--large {
  flex: auto;
  width: 100%;
  font-size: 12px;
}
.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: 9px;
    padding-top: 0px;
    text-transform: none;
    color: #ff0000;
    line-height: 11px;
}
.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 11px 'Droid Sans', Arial, sans-serif;
    padding: 5px;
    width: 110px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0px;
    box-shadow: 0 4px #999;
    border-radius: 6px;
    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;
}