/* Deived from
 * http://sanographix.github.io/css3-countdown/
 * */
body {
  font-size: 60px;	
}

.material-icons { font-size: 60px !important; vertical-align: middle; }

.CDT {
  color: #eee;
  margin: 0 auto 50px;
  font-weight: bold;
  display: inline-block;
}

.CDT .number-wrapper {
  -moz-box-shadow: 0 5px 8px #000000;
  -webkit-box-shadow: 0 5px 8px #000000;
  box-shadow: 0 5px 8px #000000;
  position: relative;
}

.CDT .number {
  display: inline;
  background-image: linear-gradient(bottom, #000000 2%, #3c3c3c 50%, #000000 100%);
  background-image: -o-linear-gradient(bottom, #000000 2%, #3c3c3c 50%, #000000 100%);
  background-image: -moz-linear-gradient(bottom, #000000 2%, #3c3c3c 50%, #000000 100%);
  background-image: -webkit-linear-gradient(bottom, #000000 2%, #3c3c3c 50%, #000000 100%);
  background-image: -ms-linear-gradient(bottom, #000000 2%, #3c3c3c 50%, #000000 100%);
  padding: 0 12px;
  width: 110px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border: 1px solid #555;
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 3px 3px #000000;
}
       
.CDT .line {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 52%;
  left: 0;
  background: #000;
}

.caption {
  font-variant: small-caps;
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
  position: absolute;
  bottom: -35px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #777;
}

#plusminus {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width: .5em;
	height: 2em;
	position: relative;
}

#plus,#minus {
	display: block;
	font-size:60%;
}

#plus {
	position: absolute;
	top: 20%;
	left: 0;
}

#minus {
	position: absolute;
	left: 0;
	bottom: 20%;
}

a { color: inherit; text-decoration: none; }

@keyframes blink {
    from { opacity:1; }
    to { opacity:0; }
};
