.countdown-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.countdown-box .countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.countdown-box .countdown-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 9px;
  width: 41px;
  height: 41px;
  background: #fff;
  font-weight: 700;
  color: #019bbf;
  letter-spacing: 1px;
}
.countdown-box .countdown-label {
  font-size: 13px;
  color: #00bcd4;
  margin-top: 2px;
}
.countdown-box .countdown-sep {
  height: fit-content;
  font-size: 28px;
  margin-bottom: 22px;
  color: #019bbf;
}

@media (max-width: 768px) {
  .countdown-box .countdown-num {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .countdown-box .countdown-label {
    font-size: 11px;
    line-height: 10px;
  }
}