.modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  margin: 0 auto;
}
.modal_overlay .modal_content {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  height: 500px;
  overflow-y: auto;
}
.modal_overlay .modal_content .close_modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.modal_overlay .modal_content .modal_header h3 {
  font-family: Poppins;
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #000;
}
.modal_overlay .modal_content .modal_header .modal_avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 12px;
}
.modal_overlay .modal_content .modal_header .copy_btn {
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  border: 0.5px solid rgba(66, 65, 65, 0.2588235294);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal_overlay .modal_content .modal_header .copy_btn.share {
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal_overlay .modal_content .modal_header .copy_btn:hover {
  background: #f3f3f3;
  border: none;
}
.modal_overlay .modal_content .modal_header .copy_btn .left {
  width: 100%;
  display: flex;
  align-items: center;
}
.modal_overlay .modal_content .modal_header .copy_btn .left img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 4px;
}
.modal_overlay .modal_content .modal_header .copy_btn .right img {
  width: 20px;
  height: 20px;
}
.modal_overlay .modal_content .modal_links {
  border-top: 1px solid rgba(0, 0, 0, 0.2588235294);
  padding-top: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2588235294);
}
.modal_overlay .modal_content .modal_links a {
  display: block;
  padding: 10px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #000;
  border-radius: 8px;
}
.modal_overlay .modal_content .modal_links .copy_btn {
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  border: 0.5px solid rgba(66, 65, 65, 0.2588235294);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal_overlay .modal_content .modal_links .copy_btn.share {
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal_overlay .modal_content .modal_links .copy_btn:hover {
  background: #f3f3f3;
  border: none;
}
.modal_overlay .modal_content .modal_links .copy_btn .left {
  width: 100%;
  display: flex;
  align-items: center;
}
.modal_overlay .modal_content .modal_links .copy_btn .left img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 4px;
}
.modal_overlay .modal_content .modal_links .copy_btn .right img {
  width: 20px;
  height: 20px;
}
.modal_overlay .modal_content .modal_footer_top {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}
.modal_overlay .modal_content .modal_footer_top img {
  width: 24px;
  height: 24px;
}
.modal_overlay .modal_content .modal_footer_top .text p {
  font-size: 12px;
  font-family: Poppins;
}
.modal_overlay .modal_content .modal_footer_top .text p:last-child {
  color: #757575;
}
.modal_overlay .modal_content .modal_footer_bottom {
  padding: 10px 0;
  display: flex;
  gap: 10px;
}
.modal_overlay .modal_content .modal_footer_bottom a {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #1c1c1c;
  padding: 14px 24px;
  width: 100%;
  text-align: center;
  border-radius: 10px;
}
.modal_overlay .modal_content .modal_footer_bottom a:last-child {
  background: #fff;
  color: #1c1c1c;
  border: 1px solid #d5d5d5;
}

.modal_link {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}

.toast {
  visibility: hidden;
  min-width: 200px;
  background-color: #28a745;
  color: white;
  text-align: center;
  border-radius: 8px;
  padding: 12px 24px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.toast.show {
  visibility: visible;
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    bottom: 20px;
  }
  10% {
    opacity: 1;
    bottom: 40px;
  }
  90% {
    opacity: 1;
    bottom: 40px;
  }
  100% {
    opacity: 0;
    bottom: 20px;
  }
}/*# sourceMappingURL=modal.css.map */