.cookie-consent-bar{position:fixed;bottom:0;left:0;width:100%;z-index:9999;box-shadow:0 -2px 10px rgba(0,0,0,.2);font-size:.9rem}
.cookie-consent-bar a{color:#fff}

/* Cookie Consent Bar */
.cc-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 12px 0;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  transform: translateY(110%);
  transition: transform 200ms ease-in-out;
}

.cc-bar.cc-show {
  transform: translateY(0);
}

.cc-bar a { color: #fff; }


/* Highlight effect when jumping to free-hosting FAQ */
.toggle.is-highlighted {
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(0, 136, 255, 0.25);
  animation: itbPulse 1.4s ease-in-out 0s 2;
}

@keyframes itbPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.35); }
  100% { box-shadow: 0 0 0 14px rgba(0, 136, 255, 0); }
}
