.terms-container > * {
  margin: 1rem 0;
}

.background-animate {
  background-size: 400%;

  -webkit-animation: AnimationName 5s ease infinite;
  -moz-animation: AnimationName 5s ease infinite;
  animation: AnimationName 5s ease infinite;
}

@keyframes AnimationName {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}



/* Style for the cookie consent container */
#cookieConsent {
  position: fixed;
  bottom: 20px; /* Bottom-right corner positioning */
  right: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Style for the card inside the consent container */
#cookieConsentCard {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text for contrast */
  padding: 20px; /* Card padding */
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow for a card effect */
  max-width: 350px; /* Max width of the card */
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* Text inside the card */
#cookieConsentCard p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Link to privacy policy */
#cookieConsentCard a {
  color: #007bff; /* Bootstrap primary color for link */
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-top: 8px;
}

#cookieConsentCard a:hover {
  text-decoration: underline;
}
/* Button style */
#acceptCookies {
  background: linear-gradient(135deg, #ff7e00, #ff3d00); /* Orange gradient */
  color: white; /* White text for button */
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 15px;
}

#acceptCookies:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Make it responsive */
@media (max-width: 768px) {
  #cookieConsent {
    bottom: 10px;
    right: 10px;
  }
  #cookieConsentCard {
    max-width: 90%;
    padding: 15px;
  }
  #acceptCookies {
    font-size: 12px;
  }
}


