#ouibounce-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11000;
}
#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;
  z-index: 10000;
}
#ouibounce-modal .modal {
  z-index: 11500;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
  background-clip: border-box !important;
  overflow: hidden;
}
#ouibounce-modal .modal #modal_int {
	position: absolute;	
	display: block;
	z-index: 12000;
	box-sizing: border-box !important;
}

#ouibounce-modal .modal .ps_bkg {
  z-index: -1;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background-clip: border-box !important;
}
#ouibounce-modal .popup-title {
  top: 0;
  width: 100%;
  font-size: 18px;
  background-color: #B22222;
  color: #fff;
  padding: 5px;
  text-align: center;
  box-sizing: border-box !important;
}
.popup-title p,
.popup-title h1,
.popup-title h2
.popup-title h3 {
	margin: 0;
}
#ouibounce-modal .closex {
	position: absolute; 
	left: 100%; 
	margin: -1px 0 0 -20px;
	padding-top: 3px; 
	width: 20px; 
	height: 15px; 
	color: #fff; 
	font-size: 12px; 
	font-weight: bold; 
	text-align: center; 
	border-radius: 50%; 
	background-color: #5c5c5c; 
	cursor: pointer;
	z-index: 13000;
}

#ouibounce-modal form {
  text-align: center;
  margin-top: 35px;
}
#ouibounce-modal form input[type=text] {
  padding: 10px;
  font-size: 1.2em;
  width: 300px;
  border-radius: 4px;
  border: 1px solid #ccc;
  -webkit-font-smoothing: antialiased;
}
#ouibounce-modal form input[type=submit] {
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px;
  font-size: 1.1em;
  border-radius: 4px;
  color: #fff;
  background-color: #4ab471;
  border: none;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}
#ouibounce-modal .popup_button {
  font-weight: bold;
  margin: 10px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.1em;
  border-radius: 4px;
  color: #fff;
  background-color: #4ab471;
  border: none;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
}
#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 .popup-footer {
  position: absolute;
  bottom: 0px;
  padding: 16px;
  text-align: center;
  width: 100%;
  box-sizing: border-box !important;
}
#ouibounce-modal .popup-footer p {
  cursor: pointer;
  display: inline;
}
#ouibounce-modal a,
#ouibounce-modal a:hover {
  cursor: pointer;
  display: inline;
  text-decoration: none;
  color: inherit;
}

@-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;
  }
}
