.cookies-banner {
  position: fixed;
  bottom: 40px;
  left: 10%;
  right: 10%;
  width: 80%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
  background-color: #ccc;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.accept {  
  background-color: #008c39;
  border-color: #444;
  padding-top: 25px;
  padding-bottom: 25px;  
  color: white;  
  border-width: 2px;
}

.accept:hover {  
  background-color: #444;
  border-color: #008c39;
  color: white;
  padding-top: 25px;
  padding-bottom: 25px;  
  border-width: 2px;
}


