$(document).ready(function() {
    $('.tooltip').each(function()   {
        $(this).qtip({
            content: { text: false },
            position: {
                corner: {
                    target: 'bottomMiddle',
                    tooltip: 'topLeft'
                }
            },
            style: {
              width: { max: 400, min: 100 },  
              border: {
                 width: 2,
                 radius: 6,
                 color: '#bd702d'
              },
              padding: 8,
              textAlign: 'Left',
              tip: true
            },
            show: { delay: 0, effect: { length: 200 } }
        });
    });
});
