/*************************************************************/
/* Le message (modal) */
.modal_message {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 98; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal_message-content {
  background-color: #FFF6C4;
  margin: auto;
  padding: 10px;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 6px 6px 4px 1px #555;
  border-radius: 5px;
}

/* The Close Button */
#close_message {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

#close_message:hover,
#close_message:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}