/* The Modal (background) */

.message{
    bottom: 0px;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    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/Box */
  .modal-content {
    background-color: #fefefe;
    margin: auto; /* 15% from the top and centered */
    padding: 10px;
    border: 1px solid #888;
    overflow: hidden;
    max-width: 550px; /* Could be more or less, depending on screen size */
    max-height: 800px; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close_it {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close_it:hover,
  .close_it:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  @media (max-width: 768px) {
      /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: auto; /* 15% from the top and centered */
    padding: 10px;
    border: 1px solid #888;
    max-width: 90%; /* Could be more or less, depending on screen size */
    max-height: 90%; /* Could be more or less, depending on screen size */
  }
}