/**
 * @author Nir Goldman
 * @package NewsletterPopup
 */
.ontop {
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #aaaaaa;
  transition: all 3s ease-in-out 0s;
  display: none; }

.popupWrapper {
  border-radius: 4px;
  position: fixed;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px #666666;
  padding: 30px 15px;
  /* Width of popup can be changed */
  width: 80%;
  max-width: 600px;
  z-index: 5001;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  text-align: center; }

#popup {
  position: static;
  z-index: 5000;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0; }

#popup .content {
  margin-left: 0;
  margin-top: 40px;
  width: 100%; }

#popup .title {
  background: none;
  text-align: center;
  box-sizing: border-box;
  color: #000000;
  display: block;
  padding: 2px 10px; }

#popup .title > strong {
  font-weight: normal;
  font-size: 23px; }

#popup > .title > a {
  background-color: white;
  border-radius: 10px;
  color: black;
  line-height: 1;
  padding: 2px 5px;
  position: absolute;
  right: 10px;
  text-decoration: none; }

#popup .actions {
  clear: none;
  margin-top: 15px;
  position: static;
  text-align: right;
  width: 16%; }

#popup input {
  widht: 80%; }

/*# sourceMappingURL=newsletter_popup.css.map */
