/* Callout box - fixed position at the bottom of the page */
.cookies_callout {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 200px;
}

h2 {
    margin-top: 0px;
}
/* Close button */
.closebtn {
  position: absolute;
  top: 5px;
  right: 15px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
.cookies {
    height: 50%; 
    background-color: lightgrey; 
    border-top-left-radius: 25px; 
    border-top-right-radius: 25px; 
    padding: 25px;
}
/* Change color on mouse-over */
.closebtn:hover {
  color: grey;
}
.cookies_buttons{
    background-color: lightgrey;
    height: 25%; 
    align-items: center; 
    display: flex; 
    justify-content: space-evenly;
}
.cookies_button{
    width: 100px;
    height: 40px;
    border: 5px solid grey;
    background-color:grey;
    margin-right: 10px;
}
.cookies_button:hover{
    min-width: 100px;
    height: 40px;
    border: 5px solid grey;
    background-color: white;
}