.coupon-pop-wrap {
  background-color: var(--background-overlay);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2001;
}

.coupon-pop {
  width: 620px;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 var(--shadow-1);
  background-color: var(--background-1);
  padding: 70px 72px 40px 72px;
  position: relative;
}

.coupon-pop .event-btn {
  height: 64px;
  border-radius: 10px;
  background-color: #00bfc9;
  color: var(--text-color-TextWhite);
  font-size: 18px;
  cursor: pointer;
}

.coupon-pop .code {
  font-size: 14px;
  white-space: nowrap;
  min-height: 60px;
  border-radius: 8px;
  border: dashed 2px var(--bg-color-Negative2);
  color: var(--text-color-Negative);
  margin-right: 12px;
  padding: 12px;
}

#coupon-pop-code {
  min-height: 36px;
  background-color: var(--background-3);
  color: var(--foreground-1);
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  padding: 6px 12px;
  word-break: break-all;
}

#coupon-pop-title {
  color: var(--foreground-1);
  font-weight: bold;
  font-size: 18px;
}

#coupon-pop-subtitle {
  color: var(--foreground-3);
  font-size: 14px;
}

.coupon-close {
  position: absolute;
  top: 13px;
  right: 13px;
  height: 36px;
  cursor: pointer;
  z-index: 1;
}

@media (max-width: 768px) {
  .coupon-pop-wrap {
    padding: 0 8px 0 8px;
  }

  .coupon-pop .event-btn {
    height: 64px;
    border-radius: 10px;
    background-color: #00bfc9;
    color: var(--text-color-TextWhite);
    font-size: 16px;
    cursor: pointer;
  }

  .coupon-pop {
    padding: 60px 12px 40px 12px;
  }

  .coupon-desc {
    width: 100%;
  }
}