/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 150; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0);  
  background-color: rgba(0,0,0,0.75);
}
/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 10px auto 10px auto; 
  padding: 10px 15px 0px 15px;
  border: 0px solid #888;
  border-radius:30px;
  width: 85%;
  max-width: 800px; 
}

.modal-cookies {
  background-color: #fefefe;
  margin: auto auto 0px auto; 
  padding: 10px 15px 0px 15px;
  border: 0px solid #888;
  border-radius:30px;
  width: 100%;
  /* max-height:30%; */
  /* max-width: 800px;  */
}

/* The Close Button */
.close {
  color: #000;
  float: right;
  font-size: 38px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}