.custom-toaster {
  position: fixed;
  top: 10%;
  left: 50%;
  background: rgb(25, 44, 80);
  color: #fff;
  padding: 0px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(25, 44, 80);
  opacity: 0;
  transform: translate(-50%, -50%) translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 9999;
}

.custom-toaster p {
  margin: 0px;
}

.custom-toaster.show {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .custom-toaster {
    width: 90%;
    left: 50%;
  }

  .custom-toaster p {
    text-align: center;
  }
}

.woocommerce-message {
  display: none;
}
