.siiimpleToast {
  position: absolute;
  padding: 14px 18px;
  min-width: 250px;
  z-index: 999999;
  border-radius: 2px;
  color: #fff;
  font-weight: 300;
  white-space: nowrap;
  user-select: none;
  opacity: 0;
  box-sizing: border-box;
  transform: scale(0.5);
  transition: all 0.4s ease-out;
  border: 1px solid #172b4e;
  border-bottom-color: #142647;
  border-radius: 5px;
  webkit-box-shadow: inset 0 1px rgb(255 255 255 / 30%), inset 0 0 1px 1px rgb(255 255 255 / 10%), 0 2px 10px rgb(0 0 0 / 50%);
  box-shadow: inset 0 1px rgb(255 255 255 / 30%), inset 0 0 1px 1px rgb(255 255 255 / 10%), 0 2px 10px rgb(0 0 0 / 50%);
  text-align: center;
}
.siiimpleToast[data-state="default"] {
  background-color: #323232;
}
.siiimpleToast[data-state="answer"] {
  background-color: #5e8b29b9;
}
.siiimpleToast[data-state="error"] {
  background-color: #d93737;
}
.siiimpleToast[data-state="info"] {
  background-color: #2a13aace;
}