#counter {
  text-align: center;
  display: block;
  font-size: 18px;
  color: #075192;
}
@media (max-width: 500px) {
  #counter {
    font-size: 20px;
  }
}
#counter span, #counter i {
  display: inline-block;
  vertical-align: middle;
}
#counter span {
  text-align: center;
  min-width: 45px;
  text-rendering: optimizeLegibility;
  position: relative;
  background-color: #075192;
  margin: 0 2px;
  padding: 3px;
  color: white;
  border-radius: 5px;
  box-shadow: inset 0 1px 0.5px rgba(255, 255, 255, 0.4);
  border: 1px solid #075192;
  text-shadow: 0 0 2px #075192;
}
#counter span.days {
  margin-right: 5px;
}
#counter span.days:before {
  content: "DAYS";
}
#counter span.hours:before {
  content: "HOUR";
}
#counter span.minutes:before {
  content: "MIN";
}
#counter span.seconds:before {
  content: "SEC";
}
#counter span:before {
  top: -30px;
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  color: #075192;
  font-size: 13px;
  text-shadow: none;
  margin-bottom: 20px;
}
#counter span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  margin-top: 0.5px;
  background-color: #9c8c72;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}
#counter i {
  font-style: normal;
}
