<style> .t-radio__wrapper-payment label:nth-child(2){
position: absolute;
z-index: -1;
opacity: 0;
}
.t-radio__wrapper-payment label.hide-payment{
position: relative;
z-index: 1 !important;
opacity: 1 !important;
}
</style> <script>
$( document ).ready(function() {
function checkDelivery(){
let typeDeliv = $('input[name="tildadelivery-type"]:checked').val();
if (typeDeliv == "Пункт самовывоза"){
$('.t-radio__wrapper-payment label:eq(1)').addClass('hide-payment');
}else{
$('.t-radio__wrapper-payment label:eq(1)').removeClass('hide-payment');
$('.t-radio__wrapper-payment label:eq(0) input').prop('checked', true);
$('.t-radio__wrapper-payment label:eq(0) input').change();
};
};
$('.t706').on('click','input[name="tildadelivery-type"]',function(e){checkDelivery()});
$('.t706').on('focusout','.searchbox-input',function(e){checkDelivery()});
});
</script>