.coupon {
    background-color: #000;
    border: 1px solid #494949;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    width: 350px;
    padding: 60px 20px 40px;
    display: flex;
    position: relative;
    pointer-events: auto;
  }
  
  .coupon-title {
    color: #fff;
    text-align: center;
    letter-spacing: -2px;
    text-transform: none;
    font-family: Objectsans, Arial, sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 44px;
  }
  
  .coupon-desc {
    color: #fff;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Objectsans, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
  }
  
  .coupon-btn {
    z-index: 1;
    cursor: pointer;
    background-color: #000;
    border: 1px solid #a4a4a4;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 48px;
    margin-top: 14px;
    margin-bottom: 30px;
    display: flex;
    position: relative;
  }
  
  .coupon-btn:hover {
    background-color: #000;
  }
  
  .coupon-btn-text {
    z-index: 1;
    color: #fff;
    text-align: center;
    text-transform: none;
    margin-top: 2px;
    font-family: Objectsans, Arial, sans-serif;
    font-size: 18px;
    line-height: 18px;
    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;
    inset: 0%;
    pointer-events: none;
  }
  
  .coupon-wrapper.active {
    padding-bottom: 30px;
    display: flex;
  }
  
  .ic-coupon-close {
    cursor: pointer;
    width: 16px;
    height: 16px;
    position: absolute;
    inset: 15px 15px auto auto;
  }
  
  .coupon-img {
    width: 76px;
    margin-top: -16px;
    margin-bottom: 14px;
  }
  
  .coupon-img.hide {
    display: none;
  }
  
  .coupon-coupon {
    z-index: 0;
    display: none;
    position: absolute;
    top: -4px;
  }
  
  .coupon-img-bottom {
    width: 100%;
    display: none;
    position: absolute;
    inset: auto 0% 0%;
  }


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

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

@font-face {
    font-family: 'Objectsans';
    src: url('https://d2pas86kykpvmq.cloudfront.net/fonts/ObjectSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }