body {
  font-family: 'Arial';
  font-size: 11pt;
}

.toast-container {
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  right: 10px;
}

.toast {
  padding: 16px 12px;
  margin: 10px;
  font-family: 'Arial';
  font-size: 10pt;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  width: 280px;
  box-shadow: 0 2px 0 rgba(180, 180, 180, 0.7);
}

.toast .icon {
  width: 28px;
  display: inline-block;
  vertical-align: top;
  top: -50%;
  margin-top: 3px;
}

.toast .text {
  width: 210px;
  display: inline-block;
  position: relative;
  left: 4px;
}

.toast .fa {
  font-size: 14pt;
  margin-right: 8px;
}

.toast.info {
  background: #0d70ff;
}

.toast.info:not(.fading):hover {
  background: #237af7;
}

.toast.success {
  background: #1a3;
}

.toast.success:not(.fading):hover {
  background: #3a4;
}

.toast.warning {
  background: #ff910d;
}

.toast.warning:not(.fading):hover {
  background: #ff9920;
}

.toast.error {
  background: #b00;
}

.toast.error:not(.fading):hover {
  background: #b22;
}