.banner-countdown {
  position: absolute;
  left: min(2vw, 24px);
  bottom: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  gap: .75rem;
  z-index: 2;
}


.cd-card {
  --cd-bg: rgba(74, 0, 110, 50%);
  --cd-border: rgba(213 180 255 / 20%);
  background: var(--cd-bg);
  border: 1px solid var(--cd-border);
  border-radius: 1rem;
  padding: .9rem 1.1rem;
  min-width: 140px;
  text-align: center;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 0 20px 5px rgba(93 17 141 / 100%);
}

.cd-value {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.25rem, .9rem + 1.5vw, 2rem);
  line-height: 1.1;
}

.cd-label {
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.1;
}


@media (max-width: 991.98px) {


  .cd-card {
    min-width: auto;
    padding: .6rem .8rem;
  }

  .cd-label {
    font-size: .8rem;
  }
}



/*--------------countdown body content------------*/
.countdown-bar {
  background: linear-gradient(180deg, #8031A7, #440099);
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 .3rem .9rem rgba(0, 0, 0, .06) inset;
  max-width: 785px;
  margin: 0 auto;
  margin-bottom: -150px;
  position: relative;
}


.countdown-bar .banner-countdown {
  position: static;
  transform: none;
  flex-direction: row;
  gap: .5rem;
}


.cd-card--solid {
  --cd-bg: #fff;
  --cd-border: rgba(0, 0, 0, .08);
  background: var(--cd-bg);
  border: 1px solid var(--cd-border);
  border-radius: .75rem;
  padding: .8rem 1rem;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .06);
}

.count-down-26 .cd-value {
  color: #111;
}

.count-down-26 .cd-label {
  color: #333;
}

.cd-value {
  font-weight: 800;
  font-size: clamp(1.25rem, .9rem + 1.4vw, 2rem);
  line-height: 1.1;
}


.cd-label {

  font-weight: 600;
  font-size: .9rem;
  line-height: 1.1;
  opacity: .9;
}


.chip {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: rgba(0, 0, 0, .08);
  color: #ffffff;
  padding: .6rem .9rem;
  border-radius: .6rem;
  font-weight: 700;
}


@media (max-width: 575.98px) {
  .cd-card--solid {
    min-width: 48%;
    flex: 1 1 48%;
  }
}

@media (max-width: 972px) {
  .countdown-bar {
    margin-bottom: -75px;
  }
}