
        #detailWindow {
            display: none; 
            position: absolute; 
            top: 25%; 
            left: 20%; 
            width: 50%; 
            height: auto; 
            padding: 20px; 
            border: 3px solid #ccc; 
            background-color: white;
            z-index:2; 
        }
        #backGround {
            display: none; 
            position: absolute; 
            top: 0%; 
            left: 0%; 
            width: 100%; 
            height: 1500px; 
            background-color: black; 
            z-index:1; 
            -moz-opacity: 0.8; 
            opacity:.80; 
            filter: alpha(opacity=88);
        }
        #xclose:hover {cursor: pointer;color: rgb(55,198,192);}


input[type=text] {
  width: 10%;
  padding: 8px 10px;
  margin: 8px 0;
  border: 2px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  maxlength:2;
}

input[type=text]:focus {
  border: 3px solid #555;
}
        
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 80%; /* 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 {
  position: absolute;
  background-color: #fefefe;
  
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin:0;
  padding: 0;
  border: 1px solid #888;
  height: auto;
  width: auto;
  overflow:auto;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  /*-webkit-animation-name: animatetop;
  -webkit-animation-duration: 1s;
  animation-name: animatetop;
  animation-duration: 1s*/
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
    
  text-align: center;
  padding: 2px 16px;
  background-color: #cc0000 ;
  color: white;
}
.multioption{
        display: flex;
      flex-wrap: wrap;
      justify-content:flex-end; 
  
}
.modal-body {text-align:center;padding: 10px 16px;font-size:28px;}

.modal-footer {
    
  text-align: center;
  padding: 2px 16px;
  color: white;
}

.button {
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 2px 2px;
  background-color: #cc0000;
  cursor: pointer;
}