.custom-countdown-wrapper {
  text-align: center;
  color: #3757a1;
  font-family: gotham;
  margin-left: 20px;
  margin-bottom: 20px;
}
.countdown-title-top {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-title-bottom {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 2px solid #3757a1;
  display: inline-block;
  padding-bottom: 10px;
}

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.time-box {
  background: #3757a1;
  color: white;
  padding: 5px 5px;
  border-radius: 0px;
  min-width: 15%;
}
.time-box .num {
  font-size: 20px;
  display: block;
  font-weight: bold;
}
.time-box .label {
  font-size: 10px;
  margin-top: 5px;
  text-transform: uppercase;
  display: none;
}
.separator {
  font-size: 2rem;
  font-weight: bold;
  color: #3757a1;
}
@media (max-width: 1023px) {
.countdown-title-bottom {
  font-size: 20px;
}
  .time-box .num {
  font-size: 15px;
}
  .time-box {
  padding: 2px 2px;
}
  .separator {
  font-size: 1.2rem;
}
  .countdown-container {
  gap: 5px;
}
}