@import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:700&text=0123456789);
.counter-group {
  margin: 0px auto;
  display: inline-block;
  width: 130px;
}
.counter-group:before,
.counter-group:after {
  content: " ";
  display: table;
}
.counter-group:after {
  clear: both;
}
.counter-block {
  float: left;
  margin: 0 6px;
}
.counter-block .counter {
  position: relative;
  width: 117px;
  height: 80px;
  overflow: hidden;
  font-weight: 700;
  font-family: 'Open Sans Condensed', 'Arial Narrow', 'Nimbus Sans L', sans-serif;
  text-align: center;
}
.counter-block .counter .number {
  padding: 1%;
  width: 49%;
  height: 100%;
  background-color: transparent; 
  color: #fff;
  position: absolute;
  font-size: 74px;
  line-height: 85px;
  top: -10000px;
}
.counter-block .counter .number.tens {
  left: 0;
}
.counter-block .counter .number.units {
  left: 50%;
}
.counter-block .counter .number.hundreds {
  display: none!important;
}
.counter-block .counter .number.show {
  top: 0;
  z-index: 2;
}
.counter-block .counter .number.hidden-down {
  top: 100%;
}
.counter-block .counter .number.hidden-up {
  top: -100%;
  z-index: 100;
}
.counter-block .counter.with-hundreds {
  /* width: 119px; */
}
.counter-block .counter.with-hundreds .number {
  width: 31.66%;
}
.counter-block .counter.with-hundreds .number.tens {
  left: 33.33%;
  display: none;
}
.counter-block .counter.with-hundreds .number.units {
  left: 66.66%;
  display: none;
}
.counter-block .counter.with-hundreds .number.hundreds {
  display: block;
  left: 0;
}
.counter-block .counter-caption {
  font-size: 149%;
  text-align: center;
  margin-top: 1%;
  /* background-color: #ed6f31; */
  color: #000;
  display: none;
  /* padding: 10px; */
}

.counter-block .hours,.counter-block .minutes,.counter-block .seconds{
   display: none;			
}

@media (max-width: 1200px) {
  .counter-group {
    margin: 10px auto;
  }
  .counter-block {
    margin-right: 10px;
  }
  .counter-block .counter {
    width: 117px;
    height: 65px;
    overflow: hidden;
    font-weight: 700;
  }
  .counter-block .counter .number {
    font-size: 70px;
    line-height: 70px;
  }
  .counter-block .counter.with-hundreds {
    width: 100px;
  }
  .counter-block .counter-caption {
    font-size: 100%;
	
  }
}

@media (max-width: 992px) {
  .counter-group {
    margin: 10px auto;
  }
  .counter-block {
    margin-right: 10px;
  }
  .counter-block .counter {
    width: 117px;
    height: 65px;
    overflow: hidden;
    font-weight: 700;
  }
  .counter-block .counter .number {
    font-size: 60px;
    line-height: 60px;
  }
  .counter-block .counter.with-hundreds {
    width: 80px;
  }
  .counter-block .counter-caption {
    font-size: 100%;
	
  }
}
@media (max-width: 768px) {
  .counter-group {
    margin: 0 auto;
  }
  .counter-block {
    margin-right: 8px;
  }
  .counter-block .counter {
    width: 96px;
    height: 80px;
  }
  .counter-block .counter .number {
    font-size: 86px;
    line-height: 72px;
  }
  .counter-block .counter.with-hundreds {
    width: 144px;
  }
  .counter-block .counter-caption {
    font-size: 85%;
  }
}
@media (max-width: 480px) {
  .counter-block .counter {
    width: 61px;
    height: 52px;
  }
  .counter-block .counter .number {
    font-size: 55px;
    line-height: 50px;
  }
  .counter-block .counter.with-hundreds {
    width: 100px;
  }
  .counter-block .counter-caption {
    font-size: 70%;
  }
}

