    @keyframes fade-in {
        from {opacity: 0; transform: scale(.7,.7)}
        to {opacity: 1;}
    }

.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1010;
  transform: translateY(60%) scale(0);
}

.exit-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: rgba(33, 33, 33, 0.8);
}

.exit-popup.show {
  transform: translateY(0) scale(1);
}

.coupon {
  background: #fff;
  border-radius: 6px;
  box-shadow: 4px 4px 26px #000;
  font-size: 38px;
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 200px;
  max-width: 450px;
  text-align: center;
  transform: translate(-50%, -50%);
  padding: 30px 30px 30px 30px;
  width: 90%;
  z-index: 2;
}

.coupon a {
  position: relative;
  padding-bottom: 5px;
  color: rgb(9, 119, 233);
  line-height: 100%;
  display: inline-block;
}

.coupon a:before, .coupon a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 200ms cubic-bezier(0.51, 0.18, 0, 0.88);
  transform-origin: right;
  background-color: rgb(9, 119, 233);
  height: 2px;
  width: 100%;
  display: inline-block;
}

.coupon small a {
  padding: 0;
  text-decoration: underline;
}

.coupon small a:before, .coupon small a:after {
  display: none;
}

.coupon a.gray:before, .coupon a.gray:after {
  background-color: #969696;
}

.coupon a:before {
  transition-delay: 200ms;
}

.coupon a:after {
  transform-origin: left;
  transform: scaleX(0);
}

.coupon a:hover:before {
  transform: scaleX(0);
  transition-delay: unset;
}

.coupon a:hover:after {
  transition-delay: 200ms;
  transform: scaleX(1);
}

.coupon .close {
  color: #999;
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  right: 10px;
  top: 12px;
}

.coupon .close.gray {
  position: relative;
  right: auto;
  top: auto;
}

.coupon h2 {
  font-size: 42px;
}

.coupon h2, .coupon h3, .coupon p {
  font-weight: 600;
}

.coupon h3 {
  font-size: 40px;
}

.coupon iframe {
  border: none;
}

.coupon img {
  margin: 0 auto 18px auto;
  max-width: 100px;
}

.coupon p small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  margin: 0 -20px 0 -20px;
  white-space: normal;
}

.coupon .submit-response {
  color: #33475b;
  display: none;
  font-size: 16px;
  padding: 20px 0 20px 0;
}

.coupon .submit-response.show {
  display: block;
}

.coupon .submit-response p {
  font-weight: 400;
}

.popup-form-fields {
  padding: 0 0 20px 0;
}

.popup-hubspot-form {
  padding: 0;
  text-align: left;
}

.popup-hubspot-form input {
  background-color: #f5f8fa;
  border: 1px solid #cbd6e2;
  box-sizing: border-box;
  border-radius: 3px;   
  color: #33475b; 
  display: inline-block;
  max-width: 500px;
  height: 40px;
  padding: 9px 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  width: 100%;
}

.popup-hubspot-form input.error {
  border-color: #cc0000;
}

.popup-hubspot-form input#email-confirm {
  display: none;
}

.popup-hubspot-form label {
  display: block;
  font-size: 14px;
  padding: 15px 0 0 0;
}

.popup-hubspot-form label em {
  color: #cc0000;
  font-style: normal;
}

.popup-hubspot-form .submit {
  text-align: center;
}

.popup-hubspot-form .submit button {
  background: #0977e9;
  border: 1px solid #0977e9;
  color: #ffffff;
  margin: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  line-height: 12px;
  position: relative;
  text-align: center;
  transition: all .15s linear;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  padding: 12px 24px;  
}


@media screen and (max-height: 700px) {
  .coupon .close {
    font-size: 20px;
  }

  .coupon h2 {
    font-size: 30px;
  }

  .popup-hubspot-form {
    padding: 20px 0 0 0;
  }

}