@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.toast_box {
  width: 100%;
  position: absolute;
  z-index: 99;
  top: 30px;
  justify-content: center;
  display: none;
}

.toast_box p {
  box-sizing: border-box;
  padding: 8px 16px;
  max-width: 72%;
  width: max-content;
  background: #fff;
  color: #000;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0.8;
}

.toast_box .iconfont {
  vertical-align: middle;
  margin-right: 5px;
}

.toast_box .icon-success {
  color: rgb(82, 196, 26);
}

.toast_box .icon-error {
  color: rgb(245, 34, 45);
}

.toast_box .icon-info {
  color: rgb(250, 173, 20);
}
