@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#cookie-overlay.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

