.mk-toast {
  position: fixed;
  bottom: -120px;
  right: 20px;
  left: auto;
  top: auto;
  max-width: 400px;
  min-width: 280px;
  background: rgba(20,25,45,.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(79,168,255,.3);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.4),0 0 20px rgba(79,168,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 999999;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) translateZ(0);
  transition: bottom .4s cubic-bezier(.34, 1.56, .64, 1),opacity .3s ease,visibility .3s ease,transform .4s cubic-bezier(.34, 1.56, .64, 1)
}
.mk-toast.mk-toast-show {
  bottom: 24px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateZ(0)
}
.mk-toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0
}
.mk-toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform .3s ease
}
.mk-toast-show .mk-toast-icon {
  animation: toastIconPop .4s ease .1s
}
.mk-toast-message {
  flex: 1;
  font-family: Inter,-apple-system,BlinkMacSystemFont,sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,.95);
  word-wrap: break-word;
  overflow-wrap: break-word
}
.mk-toast-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-size: 12px;
  transition: all .2s ease
}
.mk-toast-close:hover {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  transform: scale(1.05)
}
.mk-toast-close:active {
  transform: scale(.95)
}
.mk-toast-success {
  border-color: rgba(46,204,113,.5);
  box-shadow: 0 10px 40px rgba(0,0,0,.4),0 0 20px rgba(46,204,113,.15)
}
.mk-toast-success .mk-toast-icon {
  color: #2ecc71
}
.mk-toast-success::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg,#2ecc71,#27ae60);
  border-radius: 14px 0 0 14px
}
.mk-toast-error {
  border-color: rgba(255,71,87,.5);
  box-shadow: 0 10px 40px rgba(0,0,0,.4),0 0 20px rgba(255,71,87,.15)
}
.mk-toast-error .mk-toast-icon {
  color: #ff4757
}
.mk-toast-error::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg,#ff4757,#f34);
  border-radius: 14px 0 0 14px
}
.mk-toast-warning {
  border-color: rgba(255,204,51,.5);
  box-shadow: 0 10px 40px rgba(0,0,0,.4),0 0 20px rgba(255,204,51,.15)
}
.mk-toast-warning .mk-toast-icon {
  color: #fc3
}
.mk-toast-warning::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg,#fc3,#f0b400);
  border-radius: 14px 0 0 14px
}
.mk-toast-info {
  border-color: rgba(79,168,255,.5);
  box-shadow: 0 10px 40px rgba(0,0,0,.4),0 0 20px rgba(79,168,255,.15)
}
.mk-toast-info .mk-toast-icon {
  color: #4fa8ff
}
.mk-toast-info::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg,#4fa8ff,#2196f3);
  border-radius: 14px 0 0 14px
}
@keyframes toastIconPop {
  0% {
    transform: scale(.5);
    opacity: 0
  }
  50% {
    transform: scale(1.2)
  }
  100% {
    transform: scale(1);
    opacity: 1
  }
}
@media (max-width:480px) {
  .mk-toast {
    left: 12px;
    right: 12px;
    max-width: none;
    min-width: auto
  }
  .mk-toast.mk-toast-show {
    bottom: 16px
  }
  .mk-toast-message {
    font-size: 13px
  }
}
@media (prefers-reduced-motion:reduce) {
  .mk-toast {
    transition: opacity .2s ease,visibility .2s ease
  }
  .mk-toast-show .mk-toast-icon {
    animation: none
  }
}