/** Remove shadows and round corners and border **/
.product .wc-deposits-options-form input.input-radio:enabled ~ label {
    text-shadow: none;
    box-shadow: none;
}
.switch-candy.switch-woocommerce-deposits {
	border-radius: 0;
}
.switch-candy.switch-woocommerce-deposits a {
	border-radius: 0;
    box-shadow: none;
	border: none;
}

/** Make selected option background flat colour **/
.product .wc-deposits-options-form div a.wc-deposits-switcher {
	background-image: none;
	background-color: #a16c97;
}

/** Change disabled to light grey **/
.product .wc-deposits-options-form input.input-radio:disabled ~ label {
	background-color: #BBB;
}
/** Scale down font and make weight same **/
.switch-woocommerce-deposits.switch-toggle label {
	padding-top: 0.2em;
	font-size: 0.8em;
	font-weight: 700;
}

/** Make deposit amount black **/
.wc-deposits-options-form #deposit-amount .amount {
	color: #000;
}

/** Leave some space between the top text and the switcher **/
.switch-woocommerce-deposits {
	margin-top: 4px;
}