.cookie-none {
    display: none !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("/imgs/cookiebanner.png") no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  color: var(--white);
  font-family: "Inter", sans-serif;
}

.cookie-banner__content {
  display: flex;
  font-size: var(--size-2xl);
  align-items: center;
  gap: 1rem;
}

.cookie-banner__btn {
  background-color: var(--purple);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-banner__btn:hover {
  background-color: #393d5f;
}

@media (max-width: 768px) {
  .cookie-banner {
    height: auto;
    padding: 0.5rem 1rem;
    text-align: center;
  }

  .cookie-banner__content {
    flex-direction: column;
    font-size: var(--size-sms);
    max-width: 20ch;
    gap: 0.5rem;
  }
}
