/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 22 2025 | 06:59:04 */
/*
  TITLE:
            KMP Customem Woo Loader
  VERSION:  
            0.1.0
  CREATED:   
            Saturday, 22nd November 2025, 6:48:19 am
  AUTHOR:  
            Kingsley Chimezie
            Founder and Lead Developer @ Kingsley Media Productions
  URL:    
            https://kingsley.ie
  REQUIRES:
            - WooCommerce Plugin
            - Custom CSS & JS support in your theme or plugin

  Copyright © 2025 - Present, Kingsley Chimezie - Kingsley Media Productions (KMP). All Rights Reserved.
*/ 


/* 2025.11.22 - Kingsley
 * Fix WooCommerce checkout loader (make it a circle spinner) */
.woocommerce .blockUI.blockOverlay:before,
.woocommerce .blockUI.blockMsg:before {
    content: "";
    border: 3px solid rgba(0,0,0,0.2);
    border-top-color: var(--e-global-color-primary); /* match elementor primary color */
    border-radius: 50%;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -16px;
    margin-top: -16px;
    animation: wc-spinner 0.6s linear infinite;
    background: none !important;
    box-shadow: none !important;
}
@keyframes wc-spinner {
    to { transform: rotate(360deg); }
}
/* Remove the ugly square */
.woocommerce .blockUI.blockOverlay,
.woocommerce .blockUI.blockMsg {
    background: rgba(255,255,255,0.6) !important;
}