@font-face {
  font-family: "TINY5x3";
  src: url("/wp-content/themes/themebase/inc/assets/fonts/TINY5x3GX.ttf")
    format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

#countdown {
  width: 100%;
}

.countdown-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.countdown-item span#days,
.countdown-item span#hours,
.countdown-item span#minutes,
.countdown-item span#seconds {
  font-family: "TINY5x3", monospace;
  font-size: 100px;
  font-weight: 140;
  line-height: 0.8;
  color: var(--lightlightgrey);
}

.countdown-item .label {
  font-family: "TINY5x3", monospace;
  font-size: 36px;
  font-weight: 140;
  line-height: 0.8;
  color: #000000;
  letter-spacing: 2px;
}

.separator {
  display: none;
}

/* MOBILE */
@media only screen and (max-width: 768px) {
  .countdown-container {
    flex-direction: column;
    gap: 24px;
  }

  .countdown-item span#days,
  .countdown-item span#hours,
  .countdown-item span#minutes,
  .countdown-item span#seconds {
    font-size: 66px;
  }

  .countdown-item .label {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
