.toast-container {
  position: fixed;
  z-index: 999;
  top: "50%"; 
  right: "25px"
}
.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, .85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0.25rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .1);
  backdrop-filter: blur(10px);
  opacity: 0;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}
.toast.fade {
  transition: opacity .15s linear;
}
.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, .85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}
.toast-body {
  padding: 0.75rem;
}
.toast .close {
  float: right;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.toast .close:hover {
  color: #000;
  text-decoration: none;
}
.toast .close:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.toast .close:not(:disabled):not(.disabled):hover, .toast .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}
.toast button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  appearance: none;
}
.toast a.close.disabled {
  pointer-events: none;
}
.mr-auto, .mx-auto {
  margin-right: auto!important;
}
.mb-1, .my-1 {
  margin-bottom: .25rem!important;
}
.ml-2, .mx-2 {
  margin-left: .5rem!important;
}
.rounded {
  border-radius: .25rem!important;
}
.mr-2, .mx-2 {
  margin-right: .5rem!important;
}
.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.toast svg {
  overflow: hidden;
  vertical-align: middle;
}