/*------------------------------------*\
    #Countdown Timer
\*------------------------------------*/
.c-countdown-timer {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  color: currentColor;
  font-weight: 400;
  font-size: 34px;
}
@media (min-width: 641px) {
  .c-countdown-timer {
    font-size: 48px;
  }
}
.c-countdown-timer__divider::after {
  content: '/';
  position: relative;
  display: block;
  margin: 0 0.5em 0.5em;
  color: currentColor;
  line-height: 1;
}
.c-countdown-timer__item:empty + .c-countdown-timer__divider {
  display: none;
}
.c-countdown-timer__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  font-size: 1em;
  line-height: 1;
}
.c-countdown-timer__item > span {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: currentColor;
}
.c-countdown-timer__item:empty {
  display: none;
}
.c-countdown-timer__item::after {
  content: attr(data-name);
  display: block;
  margin: 0.5em 0 0;
  color: currentColor;
  font-size: 0.3em;
  line-height: 1;
}
.c-countdown-timer__text {
  width: 100%;
  text-align: center;
}
.c-countdown-timer__text:first-child {
  margin-bottom: 0.55em;
}
.c-countdown-timer__text:last-child {
  margin-top: 0.55em;
}
