.enjuToaster {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 343px;
  overflow: hidden;
  z-index: 99999999;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2), 0px 6px 30px 0px rgba(0, 0, 0, 0.12), 0px 16px 24px 0px rgba(0, 0, 0, 0.14);
  animation: slideIn 0.5s;
  animation-iteration-count: once;
}
.enjuToaster .wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 12px 16px 16px 16px;
}
.enjuToaster .wrapper .bottomLine {
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0px;
  height: 3px;
  background-color: #f04349;
}
.enjuToaster .wrapper .bgToasterAlert {
  background-color: #f04349;
}
.enjuToaster .wrapper .bgToasterSuccess {
  background-color: #01e17b;
}
.enjuToaster .wrapper .bgToasterAsk {
  background-color: #0c79e8;
}
.enjuToaster .wrapper .bgToasterWarning {
  background-color: #ffd21f;
}
.enjuToaster .wrapper .left {
  padding: 4px;
  background-color: #f2f4f7;
  border-radius: 50px;
}
.enjuToaster .wrapper .right .title {
  margin-bottom: 0px;
  color: #000;
  font-family: "Regular";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.enjuToaster .wrapper .right .subtitle {
  color: #2b2525;
  margin-bottom: 0px;
  font-family: "Regular";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@keyframes slideIn {
  0% {
    transform: translate(200px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

/*# sourceMappingURL=enju-toaster.css.map */
