/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 80px; /* 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-content {
    background-color: #fefefe;
    margin: auto;
   // padding: 20px;
   // border: 1px solid #888;
   //border: 1px solid red;
   border: 3px solid green;
  // min-height:700px;
   width: 70%;
  // height: 70%;
   
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    padding-right:20px;
    //font-size: 28px;
    font-size: 40px;
    font-weight: bold;
}

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

.button {
    background-color: #ffffff;
    border: none;
    //color: white;
    color: #006699;
   // padding: 15px 32px;
   // text-align: center;
   // text-decoration: none;
   text-decoration:underline;
   text-align:left;
    //display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}