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

.share-modal .modal-dialog {
  --bs-modal-padding: 20px 38px 32px;
  background-color: transparent;
  transform: translateY(50%) !important;
}

.share-modal .modal-content {
  border-radius: 10px;
  border: 0.5px solid rgba(254, 189, 43, 0.80);
  background: #0C1016;
  /* background: linear-gradient(145deg, #d3fdfd, #ffdfea 50%, #fff); */
}

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

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

.share-modal .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 30px;
  --bs-btn-close-bg: url("../../static/images/close.png");
  /* background-color: #000; */
}

.share-content {
  border-radius: 9px;
  background: rgba(134, 179, 251, 0.08);
  /* box-shadow: 0 0 37.5px 0 rgba(226, 97, 89, 0.20); */
  padding: 28px 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

.shareModalUrl {
  margin-top: 37px;
  color: #FEBD2B;
  padding: 6px 16px;
  box-sizing: border-box;
  border-radius: 8px;
  background: rgba(254, 189, 43, 0.08);
  word-break: break-all;
}

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

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

.cpy-btn {
  color: #292929;
  background-color: #FEBD2B;
  height: 38px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 32px;
}
.popTitleBox {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.popTitleBox .modal-title {
  padding: 0 12px;
  box-sizing: border-box;
}
.popTitleLine {
  width: 110px;
  height: 1px;
  background: rgba(254, 189, 43, 0.50);
}
.modal-body {
  padding-top: 0;
}
.closeButton {
  display: none;
}

@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%);
  }
  .modal-title {
    font-size: 16.5px !important;
  }
  .popTitleLine {
    width: 76px;
  }
  .share-content p span {
    font-size: 13px;
  }
  .shareModalUrl {
    margin-top: 18px;
    padding: 3.75px 10px;
    word-break: break-all;
    font-size: 12px;
  }
  .cpy-box {
    margin-top: 12px;
  }
  .cpy-text {
    font-size: 10px;
  }

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

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

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

  .cpy-btn {
    height: 34px;
    font-size: 12px;
  }
  .closeButton {
    display: block;
    margin: 16px auto;
    background-image: url('../../static/images/mClose.png');
    background-size: 100% 100%;
    padding: 0;
    width: 36px;
    height: 36px;
  }
}