.main-example {
  position: relative;
  margin: 0 auto;
  width: 42%;
  font-family: "Roboto Condensed";
  font-weight: 100;
}
.main-example .countdown-mark,
.main-example .countdown-label {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  color: #FFF;
  width: 100%;
  height: 10vw;
}
.main-example .countdown-mark p,
.main-example .countdown-label p {
  width: 26%;
  text-align: center;
}
.main-example .countdown-mark {
  font-weight: normal;
  font-size: 4vw;
}
.main-example .countdown-label {
  justify-content: space-between;
  top: 105%;
  font-size: 1.5vw;
  height: auto;
}
.main-example .countdown-label p {
  width: 22%;
}
.main-example .countdown-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 10vw;
}
.main-example .time {
  position: relative;
  border: 0.25vw solid #000;
  text-align: center;
  height: 100%;
  width: 22%;
  text-rendering: auto;
  perspective: 479px;
  backface-visibility: hidden;
  transform: translateZ(0);
  transform: translate3d(0, 0, 0);
  border-radius: 0.65vw;
  -webkit-border-radius: 0.65vw;
}
.main-example .time::before, .main-example .time::after {
  z-index: 9;
  position: absolute;
  display: block;
  content: "";
  width: 7%;
  padding-top: 100%;
  top: 50%;
  left: -1px;
  background: url("../img/countdown-deco.png") no-repeat left center;
  background-size: contain;
}
.main-example .time::before {
  transform: translateY(-50%);
}
.main-example .time::after {
  left: auto;
  right: -1px;
  transform: translateY(-50%) scale(-1, 1);
}
.main-example .count {
  background: #2a2a2c;
  color: #FFF;
  display: block;
  font-size: 7vw;
  line-height: 9.7vw;
  overflow: hidden;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  transform: translateZ(0);
  transform-style: flat;
}
.main-example .count.top {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid #000;
  border-radius: 0.5vw 0.5vw 0 0;
  height: 50%;
  transform-origin: 50% 100%;
}
.main-example .count.top.curr {
  transform: rotateX(0deg);
  z-index: 3;
}
.main-example .count.bottom {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 0.5vw 0.5vw;
  line-height: 0;
  height: 50%;
  top: 50%;
  transform-origin: 50% 0;
}
.main-example .count.bottom.next {
  transform: rotateX(90deg);
  z-index: 2;
}
.main-example .flip .label {
  display: none;
}
.main-example .flip .count.curr.top {
  transition: all 250ms ease-in-out;
  transform: rotateX(-90deg);
}
.main-example .flip .count.next.bottom {
  transition: all 250ms ease-in-out 250ms;
  transform: rotateX(0deg);
}

@media only screen and (max-width: 1024px) {
  .main-example {
    width: 75%;
  }
  .main-example .countdown-mark {
    height: 18vw;
    font-size: 8vw;
  }
  .main-example .countdown-label {
    top: 110%;
    font-size: 3.5vw;
  }
  .main-example .countdown-container {
    height: 18vw;
  }
  .main-example .time {
    border-width: 0.5vw;
  }
  .main-example .count {
    font-size: 12vw;
    line-height: 17vw;
  }
}/*# sourceMappingURL=clock.css.map */