.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #bda27c;
  color: #333;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-family: sans-serif;
  text-align: left;
  border-radius: 0 30px 0 0;
  width: 400px;
}

.cookie-banner button {
  margin-right: 10px;
  padding: 8px 16px;
  border: none;
  background-color: #000000;
  color: white;
  cursor: pointer;
  border-radius: 50px;
}

.cookie-banner button:hover {
  background-color: #414141;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
	#cookie-consent-banner {
    font-size: 12px;
    padding: 10px;
	width:20em !important;
  }

  #cookie-consent-banner p {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 10px;
  }

  #cookie-consent-banner button {
    font-size: 12px;
    padding: 3px 8px;
    margin: 0px;
  }
	
}