.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  padding-right: 5px;
  white-space: normal !important;
  word-break: break-word;
  max-width: 100%;
}

.toast-content span.icon {
  font-size: 20px;
  margin-top: 2px;
}

.toastify {
  padding: 14px 18px !important;
  color: #fff;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
  background: -webkit-linear-gradient(315deg,#73a5ff,#5477f5);
  background: linear-gradient(135deg,#73a5ff,#5477f5);
  position: fixed;
  transform: translateY(-20px);
  opacity: 0;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  border-radius: 14px !important;
  cursor: pointer;
  text-decoration: none;
  max-width: 70% !important;
  right: 25px !important;
  width: auto !important;
  white-space: normal !important;
  word-break: break-word !important;
  z-index: 2147483647;
}

.toastify:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.25) !important;
  transform: translateY(-2px);
}

.toastify.on {
  transform: translateY(0);
  opacity: 1;
}

.toast-close {
  background: 0 0;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  opacity: .4;
  padding: 0 5px;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}

.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

.pause-toast {
  animation-play-state: paused !important;
}

@media only screen and(max-width:360px) {
  .toastify-left, .toastify-right {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
  }
}