#cookie {
	background: #222222;
	display: none;
	box-shadow: rgba(0, 0, 0, 0.7) 0 -2px 8px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #dddddd;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 20px;
	z-index: 9999;
}

  #cookie .container { display: flex; align-items: center; /* pionowe wyśrodkowanie */
  justify-content: space-between; }
  #cookie p {
    margin: 0 0 0px 0;
  }
  #cookie a {
    color: #4caf50;
  }
  #cookie button {
    background: #4caf50;
display: flex;  align-items: center; /* wyśrodkuj tekst w przycisku pionowo */
  justify-content: center;
    border: none;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
  }
  #cookie button:hover {
    background: #45a049;
  }