// source --> https://www.lto.nl/wp-content/plugins/snowball-lto-sendgrid-connector-v1.25//form.js?ver=20220202 
jQuery(document).ready(function ($) {
  process_show_hide(jQuery('input[name="news_selection"]:checked'));


    //Hamburger click handler
    jQuery('input[name="news_selection"]').click(function() {
      process_show_hide(this);
    });

    function process_show_hide(element){
        if(jQuery(element).val() == 'selected'){
          jQuery('.news_selection').addClass('show');
          jQuery(element).next('label').children('.more--info').addClass('show');
        }
        else{
          jQuery('.news_selection').removeClass('show');
          jQuery('.more--info.show').removeClass('show');
        }
    }

});