#toast__wrap {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* padding: 8px 14px; */
}
.toast {
  width: 100%;
  background-color: rgba(0 0 0 / 0.6);
  box-sizing: border-box;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 0;
  opacity: 1;
}
.toast-move {
  margin-top: -25px;
  opacity: 0;
  transition: margin-top 0.2s linear, opacity 0.2s linear;
}
