.modal {
  display: none;
  min-width: 600px;
  background: #fff;
  -webkit-box-shadow: 0 0 50px rgba(0,0,0,0.5);
  -moz-box-shadow: 0 0 50px rgba(0,0,0,0.5);
  -o-box-shadow: 0 0 50px rgba(0,0,0,0.5);
  -ms-box-shadow: 0 0 50px rgba(0,0,0,0.5);
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  right: auto;
  bottom: auto;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background: url(close.png) no-repeat 0 0;
}

.modal-spinner {
  display: none;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -32px;
  margin-top: -32px;
  background: url(spinner.gif) #111 no-repeat center center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.modal-form {

}

.modal-form header {
  background: #ebedef;
  padding: 22px 25px 20px;
  height: 60px;
  position: relative;
  box-shadow: 0 0 7px rgba(0,0,0,0.4);
  z-index: 20;
}

.modal-form header h1 {
  font-family: 'ProximaNova-SBold';
  color: #73787d;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  display: inline-block;
  margin: 0;
}

.modal-form .section-body {
  position: relative;
  background: #fff;
}

.modal-form .section-body .form-submit {
  position: relative;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}


.form-overflow {
  max-height: 600px;
  overflow-y: auto;
}


