/*
|--------------------------------------------------------------------------
| Disclaimer Pop Up
|--------------------------------------------------------------------------
|
| When the long and short form disclaimer link is clicked, add the class
| 'active' and apply the max height to the disclaimer content
|
*/
jQuery(document).on('click', '#form-disclaimer-trigger, #fl-disclaimer__close', function(e){
var disclaimerHeight = jQuery('#fl-disclaimer__inner').outerHeight(true);
e.preventDefault();
jQuery('#fl-disclaimer').toggleClass('active').css('max-height','0px');
jQuery('#fl-disclaimer.active').css('max-height',disclaimerHeight + 'px');
});