<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#count-down {
  font-size: 20px;
}
#count-down ul {
  display: block;
  list-style: none outside none;
  margin: 0 auto;
  padding: 0;
}
#count-down ul:after {
  clear: both;
  content: "";
  display: table;
}
#count-down li {
  float: left;
  padding: 0;
  position: relative;
  text-align: center;
  width: 25%;
}
#count-down div {
    font-size: 1em;
    line-height: 1em;
    padding: 1em;
    position: relative;
}
#count-down div:after {
  content: " " attr(data-interval-text);
  display: inline-block;
  position: relative;
}

/* demo code only. */
.wrapper {
  margin: 0 auto;
  width: 960px;
}

#count-down {
  font-size: 90px;
}
#count-down div {
    color: #333;
    font-weight: bold;
    overflow: hidden;
    margin: 0;
    padding: 0 0 30px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
    color: #093957;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
#count-down div:after {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #999999;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}</pre></body></html>