/*--------------------------------------------------------------
# Banner de concentimiento
--------------------------------------------------------------*/

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 15px;
  text-align: center;
  display: none; 
  z-index: 99;
}
#cookie-banner button {
  margin: 0 10px;
  padding: 10px;
  background-color: green;
  color: white;
  border: none;
  cursor: pointer;
}
#cookie-banner button.reject {
  background-color: red;
}