/*
Theme Name: Wicky Child
Theme URI: http://www.wpbingosite.com/wicky
Author: wpbingo
Description: This is a child theme for Wicky
Version: 1.0
Author URI: http://wpbingosite.com
Template: wicky
Text Domain: wicky-child
*/
/*************** ADD YOUR CUSTOM CSS HERE  ***************/
/* Checkout Preloader gif */
.woocommerce-checkout.processing .blockUI.blockOverlay {
    background: rgba(255, 255, 255, 0.9); /* A semi-transparent white background */
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.woocommerce-checkout.processing .blockUI.blockOverlay:before {
    content: "Please wait... your payment is currently being processed. Do not refresh or close your browser";
    font-size: 22px; /* Increased text size */
    color: #333;
    margin-bottom: 0px; /* Reduced space between text and spinner */
    background: rgba(255, 255, 255, 0.8); /* Translucent background for text */
    padding: 5px 20px;
    border-radius: 5px;
    z-index: 10;
}

.woocommerce-checkout.processing .blockUI.blockOverlay:after {
    content: "";
    background-image: url('https://sydneyfishsauce.store/wp-content/uploads/2024/12/checkout-preloader.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 400px; /* Spinner size remains the same */
    height: 400px; /* Spinner size remains the same */
    display: block;
    z-index: 10;
}