.profile-toast {
  position: fixed;
  left: 50%;
  bottom: 104px;
  z-index: 1000;
  max-width: calc(100vw - 40px);
  padding: 12px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font: 700 13px/1.35 Manrope, Arial, sans-serif;
  text-align: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.profile-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
