.toast {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.toast-fullscreen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: static;
}

.toast.hidden {
  display: none;
}

.toast-container {
  margin-top: -44px;
}

.toast-box.icon {
  border-radius: 9px;
  background-color: rgba(0, 0, 0, 0.7);
  min-width: 106px;
  height: 94px;
  padding: 18px 18px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.toast-box.text {
  border-radius: 9px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px 21px;
  
}

.toast-content {
  max-width: 14em;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  word-break: break-all;
  white-space: normal;
}
.toast-box.text .toast-content {
  line-height: 21px;
}

.toast-icon {
  text-align: center;
  margin-bottom: 9px;
}