.dtb-timer-bar {
  --dtb-background: #fee100;
  --dtb-text: #111111;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  width: 100%;
  padding: 12px 20px;
  background: var(--dtb-background);
  color: var(--dtb-text);
  font-family: inherit;
  text-decoration: none !important;
  line-height: 1.15;
  cursor: pointer;
}

.dtb-timer-bar:hover,
.dtb-timer-bar:focus {
  color: var(--dtb-text);
  text-decoration: none !important;
  filter: brightness(0.97);
}

.dtb-timer-bar:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: -4px;
}

.dtb-is-sticky {
  position: sticky;
  top: 0;
  z-index: 99999;
}

body.admin-bar .dtb-is-sticky {
  top: 32px;
}

.dtb-headline {
  max-width: 720px;
  color: inherit;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
}

.dtb-headline small {
  display: block;
  margin-top: 4px;
  color: inherit;
  font-size: 0.65em;
  font-weight: 500;
  line-height: 1.2;
}

.dtb-countdown {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-variant-numeric: tabular-nums;
}

.dtb-time-unit {
  display: flex;
  min-width: 38px;
  flex-direction: column;
  align-items: center;
}

.dtb-time-unit strong {
  color: inherit;
  font-size: clamp(18px, 2.3vw, 25px);
  font-weight: 900;
  line-height: 1;
}

.dtb-time-unit small {
  margin-top: 3px;
  color: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (max-width: 782px) {
  body.admin-bar .dtb-is-sticky {
    top: 46px;
  }
}

@media screen and (max-width: 640px) {
  .dtb-timer-bar {
    gap: 12px;
    justify-content: space-between;
    padding: 10px 12px;
  }

  .dtb-headline {
    font-size: 14px;
    line-height: 1.2;
  }

  .dtb-countdown {
    gap: 4px;
  }

  .dtb-time-unit {
    min-width: 31px;
  }

  .dtb-time-unit strong {
    font-size: 17px;
  }

  .dtb-time-unit small {
    font-size: 7px;
  }
}
