html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.countdown-timer-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 270px;
}

.countdown-timer-widget {
  background: linear-gradient(180deg, #f4f9ff 0%, #eaf4ff 100%);
  color: #17406b;
  border: 1px solid #b7d6f8;
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.12);
  text-align: center;
}

.countdown-timer-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d6efd;
}

.countdown-timer-desc {
  font-size: 0.8rem;
  color: #45637f;
}

.countdown-timer-value {
  margin-top: 0.25rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0a58ca;
  line-height: 1;
}

.countdown-placement-right {
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
}

@media (max-width: 768px) {
  .countdown-timer-stack {
    min-width: 100%;
  }

  .countdown-timer-value {
    font-size: 1.6rem;
  }

  .countdown-placement-right {
    width: 100%;
  }
}
