.vis-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99999999;
  padding: 9px 12px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  line-height: 1.5714285714285714;
  color: #232833;
  display: flex;
  align-items: center;
  transform: translate3d(-50%, -20px, 0);
  visibility: hidden;
  opacity: 0;
}

.vis-toast svg {
  margin-right: 8px;
}
.vis-toast .vis-toast-warn {
  color: #faad14;
}
.vis-toast .vis-toast-success {
  color: #52c41a;
}

.vis-toast.show {
  transform: translate3d(-50%, 0, 0);
  visibility: visible;
  opacity: 1;
  transition: all 0.2s;
}
