#ouibounce-modal {
  font-family: 'Open Sans', sans-serif;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#ouibounce-modal .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  cursor: pointer;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}
#ouibounce-modal .modal {
  width: 600px;
  height: 550px;
  background-color: #dff7fe;
  z-index: 1;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  box-sizing: border-box;
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
}
#ouibounce-modal .modal-title {
  text-align: center;
  font-size: 30px;
  color: #333;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 42px;
}
#ouibounce-modal .modal-title h3 {
  font-size: 50px;
  color: #333;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 55px;
  padding-top: 30px;
}
#ouibounce-modal .modal-body {
  padding: 20px 35px;
  font-size: 0.9em;
}
#ouibounce-modal p {
  color: #344a5f;
  line-height: 1.3em;
}
#ouibounce-modal ul {
  margin: 0 20px;
  padding-left: 10px;
}
#ouibounce-modal ul li {
  list-style-type: disc;
  padding-left: 0px;
}
#ouibounce-modal form {
  text-align: center;
}
#ouibounce-modal form input[type=text] {
  padding: 12px;
  font-size: 1.2em;
  width: 300px;
  border-radius: 4px;
  border: 1px solid #ccc;
  -webkit-font-smoothing: antialiased;
  color: #000;
}
#ouibounce-modal form input[type=submit] {
  font-weight: bold;
  padding: 12px;
  font-size: 1.1em;
  border-radius: 4px;
  color: #fff;
  background-color: #4ab471;
  border: none;
  cursor: pointer;

  background: #ec65a5;
background: -webkit-linear-gradient(#ec65a5,#d0194b);
background: -moz-linear-gradient(#ec65a5,#d0194b);
background: -ms-linear-gradient(#ec65a5,#d0194b);
padding: 5px 10px;
text-decoration: none;
font-weight: bold;
font-size: 18px;
line-height: 24px;
letter-spacing: 0px;
border-radius: 7px;
color: #fff;
text-shadow: 0px 2px rgba(174,32,77,0.6);
text-align: center;
border: 1px solid #d36989;
margin: 10px auto 0;
display: block;
width: auto;
cursor: pointer;
}
#ouibounce-modal form p {
  text-align: left;
  margin-left: 35px;
  opacity: 0.8;
  margin-top: 1px;
  padding-top: 1px;
  font-size: 0.9em;
}
#ouibounce-modal .modal-footer {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
}
#ouibounce-modal .modal-footer p {
  text-transform: capitalize;
  cursor: pointer;
  display: inline;
  font-size: 12px;
  text-decoration: underline;
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes popin {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-ms-keyframes popin {
  0% {
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popin {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@media only screen and (max-device-width: 480px) {
  #ouibounce-modal .modal {
    width: auto;
    height: auto;
    border: 20px solid rgba(0,0,0,0.4);
    overflow: scroll;
    border-radius: 0;
  }
  #ouibounce-modal .modal-title h3 {
    font-size: 28px;
    padding-top: 20px;
    line-height: 32px;
    font-weight: bold;
  }
  #ouibounce-modal form input[type=text] {
    width: 100%;
    box-sizing: border-box;
  }
  #ouibounce-modal .modal-body {
    padding: 5px 20px 15px;
    font-size: 12px;
  }
}

