/* Button loader */
.single_add_to_cart_button.loading {
	position: relative;
}
.single_add_to_cart_button.loading:after {
    content: '';
    display: inline-block;
    width: 12px;
    position: absolute;
    height: 12px;
    right: 8px;
    margin-left: 8px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Notification container */
#custom-ajax-notices {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: max-content;
    top: 50px;
}
#custom-ajax-notices .woocommerce-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 14px 50px;
    background: #f8f8f8;
    border-left: 4px solid #00a0d2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}