  .modal {
    background: #fff;
  }

  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    opacity: 0;
    z-index: -99;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.2s ease;
  }
  .modal-overlay.visible {
    z-index: 999;
    opacity: 1;
    visibility: visible;
  }
  .modal-content {
    position: relative;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 20px);
    margin-top: 5px;
    margin-bottom: 5px;
    height: auto;
    max-width: 26rem;
    padding: 1.5rem;
    border: none;
    outline: none;
    border-radius: 0.25rem;
    background: #fff;
  }
  .modal-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
  .modal-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
  }
  .modal-icons i.fas {
    font-size: 2rem;
    line-height: 1.5;
  }

  .coupon-code-box {
    align-items: center;
    display: flex;
    font-size: 1.6rem;
    font-weight: 700;
    justify-content: space-between;
    min-height: 50px;
    width: 100%;
    word-break: break-word;
    background: #f9e5f5;
    color: #d80d41;
    border-width: 2px;
    border-style: dashed;
    border-color: #d80d41;
    border-image: initial;
    border-radius: 4px;
    margin: 15px auto 5px;
    padding: 0px 20px;
  }

  .coupon-code-box > div {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
}

.continue-btn {
  font-weight: 600;
  width: 245px;
  text-align: center;
  padding: 10px;
  color: var(--color-white);
  background: #5f2bae;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.cancel-btn {
  font-weight: 600;
  width: 75px;
  border-radius: 30px;
  margin-right: 10px;
  text-align: center;
  padding: 10px;
  text-decoration: underline;
  color: hsl(0deg 0% 0%);
  cursor: pointer;
}

.modal-offer-container {
  margin-bottom: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close {
  float: right;
  width: 36px;
  height: 36px;
  border-radius: 40px;
  cursor: pointer;
}

.modal-offer-extra {
  margin-bottom: 10px;
}

.share-mail {
  margin-left: 10px;
}

.social-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

.offer-instruction {
  padding: 10px;
  background: #f6f7ee;
  border-left: 5px solid #347867;
}

.offer-box{
  align-items: center;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  min-height: 50px;
  width: 100%;
  word-break: break-word;
  background: #fff2fc;
  color: #ca26cb;
  border-width: 2px;
  border-style: dashed;
  border-color: #ca26cb;
  border-image: initial;
  border-radius: 4px;
  margin: 15px auto 5px;
  padding: 0px 20px;
}