/*
  Theme Name: GO ARENA
  Theme URI: https://kg2d.eu
  Version: 1.0.0
  Template: Divi
  Author: DG
  Author URI: https://kg2d.eu
  Description: GO ARENA child theme
  Text Domain: go-arena
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

.db_cart_is_empty .et-cart-info {
	display: none;
}



.et-cart-info { display:none !important; }



.payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999; /* Ensures it stays on top of everything */
    
    /* The Blur Effect */
    background-color: rgba(255, 255, 255, 0.5); /* Transparent white */
    backdrop-filter: blur(12px); /* Modern blur effect */
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.payment-message {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 1050px;
	color: #d9534f; /* Alert red */
    font-family: sans-serif;
}

.payment-message h1, h3 {
    color: #d9534f; /* Alert red */
    margin-top: 0;
}

#left{
	text-align: left;

}

#right{
	text-align: right;

}


/* Define the blinking animation */
@keyframes smooth-blink {
    0% { opacity: 1; }
    50% { opacity: 0.1; }
    100% { opacity: 1; }
}

/* Apply it to the H1 */
.blink-text {
    animation: smooth-blink 3s infinite; /* 1.5s is the speed */
    color: #d9534f; /* Red alert color */
}

/* Optional: Stop blinking for users with motion sensitivity */
@media (prefers-reduced-motion: reduce) {
    .blink-text {
        animation: none;
    }
}