@import url("../base.css");
.color_white {
  color: white;
}

.footer_text {
  font-family: "SpartanLight";
}

/* Default toast style */
.toastContain {
  position: fixed;
  left: calc(30% - 0%);
  bottom: 50px;
  width: 50%;
  z-index: 9999;
}

.toast {
  opacity: 0;
  min-height: 30px;
  padding: 5px;
  border: 1px solid #003b75;
  margin-top: -42px;
  background-color: #003b75;
  box-shadow: 0 3px 4px #0004;
  text-align: center;
  line-height: 30px;
  transform: scale(0.95) translateY(50px);
  transition: margin-top 0.7s, transform 0.7s, opacity 0.7s;
}

.toast.open {
  margin-top: 10px;
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Custom Toast Style */
.toast.critical {
  background-color: pink;
  border-color: red;
}
