/* Add content to the loader during checkout process */
form.checkout.woocommerce-checkout.processing::after {
  content: "The checkout can take until 15 seconds to process, please wait...";
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -150%);
  z-index: 1000;
  color: rgb(49, 109, 137);
  background: rgba(209, 236, 241, 0.8);
  padding: 10px;
  border-radius: 5px;
  border: 2px solid rgba(49, 109, 137, 0.8);
}
