/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.mecom-paypal-credit-form-container-v2 {
    display: none !important;
}

#mecom-paypal-credit-form-container{
	max-height: 600px !important;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

add_action( 'woocommerce_after_checkout_validation', 'bbloomer_disallow_pobox_shipping' );
function bbloomer_disallow_pobox_shipping( $posted ) {
$states = array("FL", "IL");
$cus_state = ( isset( $posted['billing_state'] ) ) ? $posted['billing_state'] : $posted['shipping_state'];
if(in_array(trim(strtolower($cus_state)), $states)) {
wc_add_notice('Sorry, Your sellected products are not available to purchase due to our <a href="/terms-of-service">policy</a> violation', 'error' );
}
}