.coupon {
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 360px;
  padding: 60px 28px 40px;
  display: flex;
  position: relative;
  pointer-events: all;
}

.coupon-title {
  color: #000;
  text-align: center;
  letter-spacing: -1px;
  font-family: Objectsans, sans-serif;
  font-size: 42px;
  line-height: 42px;
}

.coupon-wrapper.active {
  pointer-events: none;
}

.coupon-desc {
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  font-family: Objectsans, sans-serif;
  font-size: 15px;
}

.coupon-btn {
  z-index: 1;
  border: 1px #000;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 14px;
  margin-bottom: 20px;
  padding: 18px 28px;
  display: flex;
  position: relative;
}

.coupon-btn-text {
  z-index: 1;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  font-family: Objectsans, sans-serif;
  font-size: 20px;
  position: relative;
}

.coupon-wrapper {
  z-index: 100;
  align-items: flex-end;
  width: 100vw;
  height: 100vh;
  padding-bottom: 50px;
  padding-left: 30px;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.coupon-wrapper.active {
  padding-bottom: 30px;
  display: flex;
}

.ic-coupon-close {
  cursor: pointer;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 15px;
  bottom: auto;
  left: auto;
  right: 15px;
}

.coupon-img {
  width: 64px;
  margin-top: -28px;
  margin-bottom: 14px;
}

.coupon-img.hide {
  display: none;
}

.coupon-coupon {
  z-index: 0;
  position: absolute;
  top: -2px;
}

.coupon-img-bottom {
  width: 100%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

@media screen and (min-width: 1440px) {
  .coupon-wrapper.active {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .coupon-wrapper.active {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

