/* 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);
}

/* Afficher la case à cocher pour offrir une commande */
.gift-option-wrapper {
	margin-bottom: 20px;
	padding: 10px;
	background: #f8f8f8;
	border-radius: 4px;
}

/* Forcer la création de compte lors d'une commande pour les utilisateurs non connectés */
.create-account.woocommerce-validated {
	display: none !important;
}
.create-account {
	display: block !important;
}