/*
 Theme Name: Hello Elementor Child
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.

*/


/* =Eigen CSS hier beneden plaatsen
-------------------------------------------------------------- */




.minus{background-color:white!important;
color:black!important;
	width:36px!important;
	min-height:36!important;
		padding-right:25px!important;
	font-size:20px!important;


}

.plus{background-color:white!important;
color:black!important;
	width:36px!important;
	min-height:36!important;
	padding-right:30px!important;
margin-right:10px;
	font-size:20px!important;

}

 .quantity .qty{padding:12px!important;}

.quantity .minus, .quantity .plus {
   display: none!important;
}
.woocommerce .woocommerce-ordering select{display:none!important;}
.woocommerce .woocommerce-result-count{display:none!important;}

.numeric{display:none!Important;}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
 -webkit-appearance: none;
 appearance: none;
 margin: 0;
}
input[type=number] {
	-moz-appearance: textfield;
}
add_action( 'woocommerce_after_add_to_cart_quantity', 'ts_quantity_plus_sign' );
 
function ts_quantity_plus_sign() {
   echo '<button type="button" class="plus" >+</button>';
}
 
add_action( 'woocommerce_before_add_to_cart_quantity', 'ts_quantity_minus_sign' );
function ts_quantity_minus_sign() {
   echo '<button type="button" class="minus" >-</button>';
}
 
