    .js-store-prod-all-charcs .t-typography__characteristics {
  display: none;
}

    .js-store-prod-all-charcs .t-typography__characteristics:nth-child(2),
    .js-store-prod-all-charcs .t-typography__characteristics:nth-child(3) {
  display: block;
}



document.addEventListener('DOMContentLoaded', function() {
  const container = document.querySelector('.js-store-prod-all-charcs');
  
  if (container) {
    const chars = container.querySelectorAll('.t-typography__characteristics');
    
    chars.forEach((char, index) => {
      char.style.display = 'none';
      
      if (index === 1 || index === 2) {
        char.style.display = 'block';
      }
    });
  }
});


.t-radio__wrapper-payment label.hide-payment{
position: absolute;
z-index: -1;
}







.t-btnflex.t-btnflex_type_button{
    width:100%;
}
