#tp-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;

  background: #ffffff;
  padding: 14px 18px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  width: 460px;

  z-index: 2147483647 !important;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

#tp-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.tp-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eaeaea;
}

.tp-content {
  flex: 1;
}

.tp-title {
  font-weight: 650;
  font-size: 14.5px;
  color: #111;
  line-height: 1.2;
}

.tp-message {
  font-size: 13px;
  color: #444;
  margin-top: 2px;
  line-height: 1.25;
}

.tp-close {
  font-size: 22px;
  cursor: pointer;
  margin-left: 10px;
  color: #888;
  line-height: 20px;
}
.tp-close:hover {
  color: #222;
}

@media (max-width: 480px) {
  #tp-toast {
    width: calc(100% - 30px);
    left: 15px;
    bottom: 15px;
    padding: 12px 14px;
  }
}
