* {
  -webkit-font-smoothing: antialiased;
}

/****fonts****/
@font-face {
  font-family: 'Gotham-Bold';
  src: url('Gotham-Bold.eot?#iefix') format('embedded-opentype'),  url('Gotham-Bold.otf')  format('opentype'),
       url('Gotham-Bold.woff') format('woff'), url('Gotham-Bold.ttf')  format('truetype'), url('Gotham-Bold.svg#Gotham-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'ds-digitalnormal';
    src: url('ds-digi-webfont.woff2') format('woff2'),
         url('ds-digi-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


html,body, p {
  margin: 0;
  text-transform: uppercase;
}

.main {
  width: 310px;
  height: 155px;
  background: url('bg.png');
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.fpo {
  position: absolute;
  left: 0px;
  top: 0px;
}

p.top {
  position: absolute;;
  top: 44px;
  left: 12px;
  color: white;
  font-family: 'Gotham-Bold';
  font-size: 10px;
  text-transform: uppercase;
  width: 157px;
}

p.bottom {
  position: absolute;;
  top: 138px;
  left: 12px;
  color: white;
  font-family: 'Gotham-Bold';
  font-size: 10px;
  text-transform: uppercase;
}

.countdown {
  color: #8e774d;
  font-family: 'ds-digitalnormal';
  position: absolute;
  top: 75px;
  left: 12px;
}

.days, .hours, .minutes, .seconds {
  display: inline-block;
  text-align: center;
  margin-right: 5px;
}

.days strong, .hours strong, .minutes strong, .seconds strong {
  display: block;
  text-align: center;
  font-size: 34px;
}

.days span, .hours span, .minutes span, .seconds span {
  font-size: 9px;
  font-family: 'Gotham-Bold';
}

.countdown.complete .days span, .countdown.complete .hours span, .countdown.complete .minutes span, .countdown.complete .seconds span {
  display: none;
}

.countdown.complete {
  top: 91px;
}

.days.complete strong {
  font-size: 19px;
}

.watch {
  position: absolute;;
  left: 188px;
  top: -41px;
}

.clock {
  position: absolute;
  width: 111px;
  height: 111px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0);
  left: 204px;
  top: 20px;
}

.minutes-container, .hours-container, .seconds-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hours-hands {
  background: transparent;
  height: 20%;
  left: 48.75%;
  position: absolute;
  top: 30%;
  transform-origin: 50% 100%;
  width: 2.5%;
}

.minutes-hands {
  background: transparent;
  height: 40%;
  left: 49%;
  position: absolute;
  top: 10%;
  transform-origin: 50% 100%;
  width: 2%;
}

.seconds-hands {
  background: transparent;
  height: 45%;
  left: 49.5%;
  position: absolute;
  top: 14%;
  transform-origin: 50% 80%;
  width: 1%;
  z-index: 8;
}

.hours-hands img {
  position: absolute;
  left: -3px;
  top: -9px;
}

.minutes-hands img {
  position: absolute;
  left: -2px;
  top: 0px;
}

.seconds-hands img {
  position: absolute;
  left: -4px;
  top: -8px;
}

.dates {
  position: absolute;
  left: 223px;
  top: 39px;
}

@keyframes rotate {
  100% {
    transform: rotateZ(360deg);
  }
}

.hours-container {
  animation: rotate 43200s infinite linear;
}

.minutes-container {
  transition: transform 0.1s linear;
}
.seconds-container {
  animation: rotate 60s infinite linear;
}
