<style>
.t706__product-title {
font-weight: 300;
font-size: 14px;
}
</style>
<script>
let st = $('input[name="st"]');
st.closest('.t-input-group').hide();
let priceCard = {
"100" : "2",
"500" : "1.6",
"1000" : "1.2"
};
function gerCardPrice(){
let quant = +$('input[name="quant"]').val();
let fnPrice=0;
$.each(priceCard, function( key, value ) {
let line = +key;
if(quant>=line) fnPrice = +value;
});
st.val(fnPrice); st.trigger('keydown');
};
$(document).ready(function(){
$(".t700").on('DOMSubtreeModified', ".t-range__value-txt", function() {gerCardPrice()});
});
</script>