.countdown-timer {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.countdown-timer {
  color: var(--color-foreground-foreground-on-active);
}

.countdown-timer.inverted,
.countdown-timer.text_color_black {
  color: var(--color-foreground-foreground-default);
}

.countdown-item .countdown-value {
  margin-right: var(--space-sm);
  font-size: var(--typography-font-size-display-lg);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--typography-line-height-display-lg);
  vertical-align: middle;
}

.countdown-item .label{
  gap: 8px;
  font-size: var(--typography-font-size-body1-strong-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--typography-line-height-body1-strong-lg);
  vertical-align: middle;
}

@media only screen and (max-width: 960px) {
  .banner-countdown img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
  }

  .banner-img {
    min-height: 203px;
  }

  .countdown-wrapper.position-bottom {
    bottom: 24px;
  }

  .countdown-timer {
    gap: 16px;
  }

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

  .countdown-item .countdown-value{
    font-size: var(--typography-font-size-display-sm);
    line-height: var(--typography-line-height-display-sm);
  }
  
  .countdown-item  .label{
    font-size: var(--typography-font-size-body1-strong-sm);
  }
}