.share-modal {
  /* display: block; */
}

.share-modal .modal-dialog {
  --bs-modal-padding: 20px 38px 32px;
  background-color: transparent;
}

.share-modal .modal-content {
  background: linear-gradient(145deg, #d3fdfd, #ffdfea 50%, #fff);
}

.share-modal h2 {
  flex: 1;
  font-size: 24px;
  color: #292929;
  text-align: center;
}

.share-modal .modal-header {
  border-bottom: none;
  box-sizing: border-box;
}

.share-modal .btn-close {
  position: absolute;
  right: 36px;
  font-size: 12px;
}

.share-content {
  border-radius: 9px;
  background: #FFF;
  box-shadow: 0 0 37.5px 0 rgba(226, 97, 89, 0.20);
  padding: 28px 34px;
  color: #292929;
  font-size: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.share-content p span {
  color: #3E7DFF;
}

.share-content a {
  color: #292929;
  text-decoration: none;
}

.share-content a:hover {
  text-decoration: underline;
}

.cpy-box {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cpy-text {
  font-size: 12px;
  color: #656565;
  line-height: 18px;
}

.cpy-btn {
  background-color: #3E7DFF;
  height: 38px;
  border-radius: 6px;
  font-size: 16px;
}

@media screen and (max-width: 824px) {
  .share-modal.modal .modal-dialog {
    --bs-modal-padding: 0 22px 22px;
    width: 80%;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .share-modal .btn-close {
    top: 10px;
    right: 10px;
  }

  .share-content {
    padding: 14px 22px 22px;
    font-size: 14px;
    gap: 5px;
  }

  .cpy-box {
    margin-top: 20px;
  }

  .cpy-btn {
    height: 34px;
    font-size: 12px;
  }
}
