.modal-open
{
   overflow-y: scroll;
}

.modal {
  /*display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 5000; /* 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: 8% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  
  background-size: 100% 100%;
}

/* The Close Button */
.close {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top:0;
  right:5px;
}

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

.modal-container
{
   border: solid 1px white;
   width:100%;
   height: 100%;
   padding-top: 50px;
   padding-bottom:50px;
}

.modal-content-left
{
   float:left;
   width: 48%;
   text-align: center;
}

.modal-content-right
{
   float:right;
   width: 48%;
   text-align: center;
}

.modal-content-center
{
   float:left;
   width: 96%;
   text-align: center;
}

div[class^="modal-content-"]>h1
{
   font-size: 30pt;
   font-weight: bold;
   padding:15px;
}

div[class^="modal-content-"]>p
{
   font-size: 14pt;
   padding: 15px;
}

div[class^="modal-content-"]>a>input
{
   padding:5px 15px 5px 15px;
   background-color: rgb(181, 111, 46);
   color: white;
   font-weight: bold;
   font-size:16pt;
   letter-spacing: 1px;
   border: rgb(181, 111, 46);
}