#maincontent {
  padding: 0;
}

.modalBox {
  position: fixed;
  top:0;
  z-index: 99;
  padding-top:200px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modalBox-content {
  background-color: #fefefe;
  margin: auto;
  padding: 10px 20px;
  border: 1px solid #888;
  width: 30%;
  color: gray;
  color: black;
  border-radius: 15px;
  min-width: 400px;
  min-height: 100px;
  margin-top: 100px;
}

.modalBox-content p{
  line-height: 30px;
  margin-top: 10px;
}

.msg-content{
 text-align: left;
}

.modalBox-closebtn {
  color: #aaaaaa; float: right; font-size: 28px; font-weight: bold; text-align: right; 
  /*padding-top: 13px;*/
}

.modalBox-closebtn:hover, .modalBox-closebtn:focus {
  color: #000; text-decoration: none; cursor: pointer;
}

@media only screen and (max-width: 960px) {
  .modalBox-content { 
    margin-top: 200px !important; 
    width: 80% !important;
  }
}