/**
 * CSS for Direct Wallet Order
 * Minimal styles to ensure basic layout without overriding theme defaults.
 */

.dwow-button-wrapper {
    clear: both;
    display: block;
    margin: 10px 0;
}

#dwow-place-order-button.single_add_to_cart_button {
    /* Ensure it has a bit of margin if alongside other buttons */
    margin-right: 5px;
    margin-bottom: 5px;
}

.dwow-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: dwow-spin 1s linear infinite;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes dwow-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Let the theme style the WooCommerce notice classes */
#dwow-message.woocommerce-error,
#dwow-message.woocommerce-message,
#dwow-message.woocommerce-info {
    display: block !important;
    clear: both;
}