/* Cookie banner */
#cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;

  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 -6px 24px rgba(0,0,0,.08);

  font: 14px/1.35 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
}

#cookie-banner .cookie-text{
  max-width: 980px;
}

#cookie-banner .cookie-text a{
  color: #0a66c2;
  text-decoration: underline;
}

#cookie-banner .cookie-btn{
  border: 0;
  padding: 10px 16px;
  border-radius: 8px;
  background: #e53935;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

#cookie-banner .cookie-btn:focus{
  outline: 3px solid rgba(229,57,53,.35);
  outline-offset: 2px;
}

@media (max-width: 640px){
  #cookie-banner{
    flex-direction: column;
    align-items: flex-start;
  }
  #cookie-banner .cookie-btn{
    width: 100%;
  }
  #cookie-banner .cookie-text{
    max-width: 100%;
  }
}

