.cookie-message {
  position:fixed;
  bottom:0px;left:0;right:0;
	padding: 1rem 1.25rem;
	background: rgba(46, 56, 66, 0.85);
	box-shadow: 0 0 3px #ccc;
  display: none;
	z-index: 10000;
	letter-spacing: 0;
	border-top: 2px solid rgb(33,178,166);
}

.cookie-message p {
  margin: 0;
	padding: 0 0 0.5rem;  
  font:normal 1rem/1.2rem "Raleway", Arial;
}

.cookie-message p, .cookie-message a {
  color: #fff;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

a.cookies-close {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
	-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;  
  display: inline-block;
  margin: 0;
  padding: 0.5rem 1.25rem;
  border: 0.09375rem solid #fff;
  border-radius: 0.1875rem;
  background-color: transparent;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.cookie-message a.cookies-close:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Główny przycisk - jedyne rozróżnienie: wypełnienie kolorem akcentu */
.cookie-message a.cookies-accept-all {
  background-color: rgb(33, 178, 166);
  border-color: rgb(33, 178, 166);
}

.cookie-message a.cookies-accept-all:hover {
  background-color: rgb(28, 155, 145);
  border-color: rgb(28, 155, 145);
}

@media screen and (max-width: 430px) {
  .cookie-message {
    align-items: center;
    text-align: center;
		padding: 0.5rem 0 0 6px;
  }
	.cookie-message p {
    text-align: center;
  }
  .cookie-message p,
  .cookie-message a.cookies-close {
    font-size: .9rem;
  }
  .cookie-buttons {
		padding: 0 .5rem;
		flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .cookie-message a.cookies-close {
    text-align: center;
  }
}