.ccr-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

click-countdown-reveal,
countdown-reveal,
hide-link {
  display: none;
}

.ccr-button {
  border: 0;
  border-radius: 6px;
  background: #1f6feb;
  color: #fff;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  padding: 9px 14px;
}

.ccr-button:hover,
.ccr-button:focus {
  background: #1557b0;
}

.ccr-button:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

.ccr-countdown {
  align-items: center;
  color: #374151;
  display: inline-flex;
  font: inherit;
  gap: 7px;
}

.ccr-countdown::before {
  animation: ccr-spin 0.8s linear infinite;
  border: 2px solid #cbd5e1;
  border-top-color: #1f6feb;
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 14px;
  width: 14px;
}

.ccr-time {
  animation: ccr-pulse 1s ease-in-out infinite;
  color: #111827;
  display: inline-block;
  min-width: 2ch;
  text-align: center;
}

@keyframes ccr-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ccr-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ccr-countdown::before,
  .ccr-time {
    animation: none;
  }
}
