#vanilla-toast-container {
  bottom: 10px;
  right: 50%;
  transform: translateX(50%);
  position: fixed;
  z-index: 9999;
}

#vanilla-toast {
  display: none;
  cursor: pointer;
  padding: 15px;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.76);
  color: #ffffff;
  width: 240px;
}
#vanilla-toast-image {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 9999px;
}

#vanilla-toast-text,
#vanilla-toast-sub-text {
  display: block;
  text-align: left;
}
#vanilla-toast-text {
  font-size: 12px;
}
#vanilla-toast-sub-text {
  font-family: sans-serif !important;
  font-size: 10px;
  font-weight: normal;
}

#vanilla-toast-close-button {
  display: none;
  margin-left: 15px;
  font-size: 15px;
}

#vanilla-toast.success {
  background: rgba(92, 184, 92, 0.76);
}

#vanilla-toast.info {
  background: rgba(91, 192, 222, 0.76);
}

#vanilla-toast.warning {
  background: rgba(236, 151, 31, 0.76);
}

#vanilla-toast.error {
  background: rgba(201, 48, 44, 0.76);
}

@media (min-width: 768px) {
  #vanilla-toast-container {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    position: fixed;
    bottom: unset;
  }
}
