#exit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index:10000001;
  text-align: center;
  white-space: nowrap;
}

  #exit-popup:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
  }

#exit-popup .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.8);
  cursor: pointer;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
  z-index: 9000001;
}

#exit-popup .modal {
  width: 60%;
  background:#FFF;
  box-shadow:0 70px 100px -80px rgba(0,0,0,1);
  z-index: 10000002;
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  position: relative;
}

#exit-popup h3 {
  color: #fff;
  font-size: 1em;
  margin: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

#exit-popup .modal-body {
  padding: 20px 35px;
  font-size: 0.9em;
}

#exit-popup p {
  color: #344a5f;
  line-height: 1.3em;
}

#exit-popup form {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

/*
#exit-popup form input[type=text], #exit-popup form input[type=email], #exit-popup form button {
  padding: 12px;
  font-size: 1.2em;
  width: 400px;
  height:60px;
  border-radius: 4px;
  border:none;
  -webkit-font-smoothing: antialiased;
  display: block;
  margin:0 auto