    @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 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: 44px;
}

.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 -25px 0 -25px;
  white-space: normal;
}
