/* --- COOKIES --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f4f4f4;
  color: #333;
  text-align: center;
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.cookiestext {
  margin-right: 10px;
  padding: 8px 16px;
  line-height: 24px;
}

.cookiesbtn {
  padding: 8px 16px;
  margin: 0 10px;
  background-color: #0084ff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 4px;
}

.cookiesbtn:hover {
  background-color: #0056b3;
}

.cookiesbtn-grey {
  background-color: #949494;
}

.cookiesbtn-grey:hover {
  background-color: dimgrey;
}

@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
  }

  .cookiesbtn {
    margin: 5px 10px;
  }
}

/* --- COOKIES END --- */