.toaster-wrapper {
  position: fixed;
  width: 330px;
  z-index: 90101;
}
.toaster-wrapper.bottom-left {
  bottom: 20px;
  left: 20px;
}
.toaster-wrapper.bottom-right {
  bottom: 20px;
  right: 20px;
}
/* .toaster-wrapper.top-right {
  top: 20px;
  right: 20px;
} */
.toaster-wrapper.top-right {
  top: 80px;
  right: 32px;
}
.toaster-wrapper.top-left {
  top: 20px;
  left: 20px;
}

.custom-toast {
  background-color: #28a745 !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
}
.custom-toast.toast-show {
  pointer-events: auto;
  opacity: 1 !important;
  transform: translateY(0px);
}
.custom-toast.toast-hide {
  transform: translateY(20px);
  opacity: 0;
}

.toast-content {
  color: white;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  /* height: 50px;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis !important;
  white-space: normal !important; */
}

/*# sourceMappingURL=toaster.css.map */
