// Resizer for discounts list at item and root pages
$(document).ready(function(){
        var WindWidth = $(window).width();
        if (WindWidth <= 1024) {BlckWidth = 48;}
        if (WindWidth >= 1280) {BlckWidth = 60;}
        if (1024 < WindWidth && 1280 > WindWidth) {
          BlckWidth = Math.floor(((WindWidth - 1024)*100/256*12/100)+48);
        } 
        $('.discounts').css({ 
             width: BlckWidth+"%"
        });
        var newBlckWidth = Math.ceil(WindWidth/100*50/100*BlckWidth);
        var LiWidth = 100/(Math.ceil(newBlckWidth/150)) - 1;
        $('#discounts > li').css({ 
             width: LiWidth+"%"
        });
    });
      $(window).resize(function(){
        var WindWidth = $(window).width();
        if (WindWidth <= 1024) {BlckWidth = 48;}
        if (WindWidth >= 1280) {BlckWidth = 60;}
        if (1024 < WindWidth && 1280 > WindWidth) {
          BlckWidth = Math.floor(((WindWidth - 1024)*100/256*12/100)+48);
        } 
        $('.discounts').css({ 
             width: BlckWidth+"%"
        });
        var newBlckWidth = Math.ceil(WindWidth/100*50/100*BlckWidth);
        var LiWidth = 100/(Math.ceil(newBlckWidth/150)) - 1;
        $('#discounts > li').css({ 
             width: LiWidth+"%"
        });
      });
