.mmodal {
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: none;
  width: 600px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;

    position: fixed;
    display: block;
    z-index: 9001;
    left: 30%;
    top: 15%;
    opacity: 1;
    margin-top: 0px;
    max-width: 30%;
}
.mmodal .modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.mmodal .modal-header .plainmodal-close {
  margin-top: -2px;
  float: right;
  font-size: 21px;
  font-weight: 700;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
}
.mmodal .modal-header .plainmodal-close:hover {
  opacity: 0.5;
}
.mmodal .modal-title {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  font-family: inherit;
  margin: 0;
}
.mmodal .modal-body {
  padding: 15px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
}
.mmodal .modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.mmodal .modal-footer button {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  border: 1px solid transparent;
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  font-family: inherit;
  min-width: 0;
}
.mmodal .modal-footer button:hover {
  background-color: #e6e6e6;
  border-color: #adadad;
}
.mmodal .modal-footer button.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.mmodal .modal-footer button.btn-primary:hover {
  background-color: #286090;
  border-color: #204d74;
}

@media (max-width: 1000px){
  .mmodal {
	left: 10%;
	max-width: 80%
  }
}
