#custom_header_banner {
  margin: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  text-align: center !important;
 
}
:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif !important;
}

.countdown-header {
  --countdown-bg: #AD1F23;
  --countdown-accent: #ffffff;
  --countdown-text: #ffffff;
  display: flex;
  position: sticky;
  top: 0;
  z-index: 20;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-height: 48px;
  padding: 6px 24px;
  background: var(--countdown-bg);
  color: var(--countdown-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: inherit;
}

.countdown-header__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 280px;
}

.countdown-header__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  min-width: 0;
}

.countdown-header__title {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 500;
  white-space: nowrap;
}

.countdown-header__icon {
  display: inline-block;
  margin-right: 8px;
  color: var(--countdown-accent);
  font-size: 14px;
  line-height: 1;
  width: 1em;
  text-align: center;
}

.countdown-header__highlight {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 500;
  opacity: 1;
}

.countdown-header__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 1 auto;
}

.countdown-box {
  min-width: 35px;
  min-height: 35px;
  padding: 4px 7px 3px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--countdown-accent);
  text-align: center;
}

.countdown-box__value {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
}

.countdown-box__label {
  display: block;
  margin-top: 1px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 1;
}

.countdown-header__action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 220px;
}

.countdown-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.98);
  color: #AD1F23;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  border-radius: 999px;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  outline: none;
}

.countdown-header__button:hover,
.countdown-header__button:focus-visible {
  transform: translateY(-1px);
  background: #fffdfb;
  outline: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 880px) {
  .countdown-header {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 12px;
    min-height: 44px;
    height: auto;
    max-height: none;
    padding: 8px 16px;
  }

  .countdown-header__left,
  .countdown-header__timer,
  .countdown-header__action {
    width: auto;
  }

  .countdown-header__left {
    order: 1;
    flex: 1 1 220px;
    justify-content: center;
  }

  .countdown-header__timer {
    order: 2;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .countdown-header__action {
    order: 3;
    flex: 0 0 auto;
    justify-content: center;
  }

  .countdown-header__copy {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .countdown-header__title,
  .countdown-header__highlight {
    white-space: normal;
  }

  .countdown-header[lang='es'] .countdown-header__title {
    font-size: 12px;
  }

  .countdown-header[lang='es'] .countdown-header__button {
    font-size: 11px;
    padding: 0 12px;
    max-width: 180px;
  }

  .countdown-box {
    min-width: 38px;
  }

  .countdown-box__value {
    font-size: 15px;
  }

  .countdown-header__button {
    width: 100%;
    max-width: 180px;
    height: auto;
    min-height: 28px;
  }
}

