/**
      * Render a JS template for the content of the media control.
      *
      * @since 3.4.19
      * @package      Customizr
      *
      * @Override
      * @see WP_Customize_Control::content_template()
      */
     public function content_template()
     {
         ?>
 <# if ( data.title ) { #>
     <h3 class="czr-customizr-title">{{{ data.title }}}</h3>
   <# } #>
     <?php 
         parent::content_template();
         ?>
   <# if ( data.notice ) { #>
     <span class="czr-notice">{{{ data.notice }}}</span>
   <# } #>
 <?php 
     }