Your IP : 216.73.216.5


Current Path : /home/theafprt/conviviality360.com/wp-content/themes/salient/css/
Upload File :
Current File : /home/theafprt/conviviality360.com/wp-content/themes/salient/css/fonts.php

<?php 

/**
 * Outputs the theme option typography font styles.
 *
 * The styles generated from here will either be contained in salient/css/salient-dynamic-styles.css 
 * or output directly in the head, depending on if the server writing permission is set for the css directory.
 * 
 *
 * @version 10.5
 */
 
$nectar_options   = get_nectar_theme_options();
$legacy_options   = get_option('salient');
$current_options  = get_option('salient_redux');

// Load custom fonts.
if( !empty($current_options) ) {
	
	$font_fields = array(
		'logo_font_family',
		'navigation_font_family',
		'navigation_dropdown_font_family',
		'portfolio_filters_font_family',
		'portfolio_caption_font_family',
		'page_heading_font_family',
		'page_heading_subtitle_font_family',
		'off_canvas_nav_font_family',
		'off_canvas_nav_subtext_font_family',
		'body_font_family',
		'h1_font_family',
		'h2_font_family',
		'h3_font_family',
		'h4_font_family',
		'h5_font_family',
		'h6_font_family',
		'i_font_family',
		'label_font_family',
		'nectar_slider_heading_font_family',
		'home_slider_caption_font_family',
		'testimonial_font_family',
		'sidebar_footer_h_font_family',
		'team_member_h_font_family',
		'nectar_dropcap_font_family',
		'nectar_sidebar_footer_headers_font_family',
		'nectar_woo_shop_product_title_font_family',
		'nectar_woo_shop_product_secondary_font_family');
		
	// Legacy formatting.
	foreach($font_fields as $k => $v) { 
		$nectar_options[str_replace('_family', '', $v)] = (empty($nectar_options[$v]['font-family'])) ? '-' : $nectar_options[$v]['font-family'];
		$nectar_options[str_replace('_family', '', $v) . '_size'] = (empty($nectar_options[$v]['font-size'])) ? '-' : $nectar_options[$v]['font-size'];
		$nectar_options[str_replace('_family', '', $v) . '_line_height'] = (empty($nectar_options[$v]['line-height'])) ? '-' : $nectar_options[$v]['line-height'];
		$nectar_options[str_replace('_family', '', $v) . '_spacing'] = (empty($nectar_options[$v]['letter-spacing'])) ? '-' : $nectar_options[$v]['letter-spacing'];
		$nectar_options[str_replace('_family', '', $v) . '_weight'] = (empty($nectar_options[$v]['font-weight'])) ? '-' : $nectar_options[$v]['font-weight'];
		$nectar_options[str_replace('_family', '', $v) . '_transform'] = (empty($nectar_options[$v]['text-transform'])) ? '-' : $nectar_options[$v]['text-transform'];
		$nectar_options[str_replace('_family', '', $v) . '_style'] = (empty($nectar_options[$v]['font-weight'])) ? '-' : $nectar_options[$v]['font-weight'];
		
		$nectar_options[$v]['attrs_in_use'] = false;
		if(!empty( $nectar_options[str_replace('_family', '', $v)] ) && $nectar_options[str_replace('_family', '', $v)] != '-' ||
			 !empty( $nectar_options[str_replace('_family', '', $v) . '_size'] ) && $nectar_options[str_replace('_family', '', $v) . '_size'] != '-' ||
		 	 !empty( $nectar_options[str_replace('_family', '', $v) . '_line_height'] ) && $nectar_options[str_replace('_family', '', $v) . '_line_height'] != '-' || 
		   !empty( $nectar_options[str_replace('_family', '', $v) . '_spacing'] ) && $nectar_options[str_replace('_family', '', $v) . '_spacing'] != '-' ||
		   !empty( $nectar_options[str_replace('_family', '', $v) . '_weight'] ) && $nectar_options[str_replace('_family', '', $v) . '_weight'] != '-' ||
		   !empty( $nectar_options[str_replace('_family', '', $v) . '_transform'] ) && $nectar_options[str_replace('_family', '', $v) . '_transform'] != '-' ||
		   !empty( $nectar_options[str_replace('_family', '', $v) . '_style'] ) && $nectar_options[str_replace('_family', '', $v) . '_style'] != '-') {
			 $nectar_options[$v]['attrs_in_use'] = true;
		}
		
		if(!empty($nectar_options[$v]['font-weight']) && !empty($nectar_options[$v]['font-style'])) {
			$nectar_options[str_replace('_family', '', $v) . '_style'] = $nectar_options[$v]['font-weight'] . $nectar_options[$v]['font-style'];
		}
	}

}



// Responsive heading values.
$using_custom_responsive_sizing = ( !empty($nectar_options['use-responsive-heading-typography']) && $nectar_options['use-responsive-heading-typography'] == '1') ? true : false;

$nectar_h1_small_desktop = ( !empty($nectar_options['h1-small-desktop-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h1-small-desktop-font-size'])/100 : 0.75;
$nectar_h1_tablet        = ( !empty($nectar_options['h1-tablet-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h1-tablet-font-size'])/100 : 0.7;
$nectar_h1_phone         = ( !empty($nectar_options['h1-phone-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h1-phone-font-size'])/100 : 0.65;
$nectar_h1_default_size  = 54;

$nectar_h2_small_desktop = ( !empty($nectar_options['h2-small-desktop-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h2-small-desktop-font-size'])/100 : 0.85;
$nectar_h2_tablet        = ( !empty($nectar_options['h2-tablet-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h2-tablet-font-size'])/100 : 0.8;
$nectar_h2_phone         = ( !empty($nectar_options['h2-phone-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h2-phone-font-size'])/100 : 0.75;
$nectar_h2_default_size  = 34;

$nectar_h3_small_desktop = ( !empty($nectar_options['h3-small-desktop-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h3-small-desktop-font-size'])/100 : 0.85;
$nectar_h3_tablet        = ( !empty($nectar_options['h3-tablet-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h3-tablet-font-size'])/100 : 0.8;
$nectar_h3_phone         = ( !empty($nectar_options['h3-phone-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h3-phone-font-size'])/100 : 0.8;
$nectar_h3_default_size  = 22;

$nectar_h4_small_desktop = ( !empty($nectar_options['h4-small-desktop-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h4-small-desktop-font-size'])/100 : 1;
$nectar_h4_tablet        = ( !empty($nectar_options['h4-tablet-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h4-tablet-font-size'])/100 : 1;
$nectar_h4_phone         = ( !empty($nectar_options['h4-phone-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h4-phone-font-size'])/100 : 0.9;
$nectar_h4_default_size  = 18;

$nectar_h5_small_desktop = ( !empty($nectar_options['h5-small-desktop-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h5-small-desktop-font-size'])/100 : 1;
$nectar_h5_tablet        = ( !empty($nectar_options['h5-tablet-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h5-tablet-font-size'])/100 : 1;
$nectar_h5_phone         = ( !empty($nectar_options['h5-phone-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h5-phone-font-size'])/100 : 1;
$nectar_h5_default_size  = 16;

$nectar_h6_small_desktop = ( !empty($nectar_options['h6-small-desktop-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h6-small-desktop-font-size'])/100 : 1;
$nectar_h6_tablet        = ( !empty($nectar_options['h6-tablet-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h6-tablet-font-size'])/100 : 1;
$nectar_h6_phone         = ( !empty($nectar_options['h6-phone-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['h6-phone-font-size'])/100 : 1;
$nectar_h6_default_size  = 14;

$nectar_body_small_desktop = ( !empty($nectar_options['body-small-desktop-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['body-small-desktop-font-size'])/100 : 1;
$nectar_body_tablet        = ( !empty($nectar_options['body-tablet-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['body-tablet-font-size'])/100 : 1;
$nectar_body_phone         = ( !empty($nectar_options['body-phone-font-size']) && $using_custom_responsive_sizing) ? intval($nectar_options['body-phone-font-size'])/100 : 1;
$nectar_body_default_size  = 14;


	/*-------------------------------------------------------------------------*/
	/*	Body Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['body_font_style']);

	( intval( substr($nectar_options['body_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['body_font_size'],0,-2)) * 1.8 .'px' : $line_height = null ;  ?>
	
	<?php 
	
	if( $nectar_options['body_font_family']['attrs_in_use'] ) {
		
		echo 'body, .toggle h3 a, body .ui-widget, table, .bar_graph li span strong, #slide-out-widget-area .tagcloud a, 
		body .container .woocommerce-message a.button, #search-results .result .title span, .woocommerce ul.products li.product h3, 
		.woocommerce-page ul.products li.product h3, .row .col.section-title .nectar-love span, body .nectar-love span, 
		body .nectar-social .nectar-love .nectar-love-count, body .carousel-heading h2, .sharing-default-minimal .nectar-social .social-text, 
		body .sharing-default-minimal .nectar-love, .widget ul.nectar_widget[class*="nectar_blog_posts_"] > li .post-date, 
		.single [data-post-hs="default_minimal"] #single-below-header span, .single .heading-title[data-header-style="default_minimal"] #single-below-header span {'; 
			
			// Output font properties.
			nectar_output_font_props('body_font', $line_height, $nectar_options);
			
  	echo '}'; 
		
		// Store calculated line height.
		$the_line_height = nectar_font_line_height('body_font', $line_height, $nectar_options);
		
	  if( $nectar_options['body_font'] != '-' ) {
       $font_family = (1 === preg_match('~[0-9]~', $nectar_options['body_font'])) ? '"'. $nectar_options['body_font'] .'"' : $nectar_options['body_font'];
		   echo '.bold, strong, b { font-family: ' . esc_attr($font_family) .'; font-weight: 600; } ';
		   echo '.single #single-below-header span { font-family: ' . esc_attr($font_family) .';  }';
		 }
		
		 echo '.nectar-fancy-ul ul li .icon-default-style[class^="icon-"] {'; 
			 if(!empty($the_line_height)) { 
				 echo 'line-height:' . $the_line_height .';'; 
			 }
		 echo '}'; 
		 
			 $defined_font_size   = (!empty($nectar_options['body_font_size']) && $nectar_options['body_font_size'] != '-') ? intval($nectar_options['body_font_size']) : $nectar_body_default_size;
			 $defined_line_height = (!empty($the_line_height)) ? intval($the_line_height) : intval($nectar_body_default_size) * 1.8;
		 
     if( $defined_font_size < 14 ) {
       echo '#footer-widgets[data-cols="5"] .container .row .widget {
         font-size: 14px;
         line-height: 24px
       }';
     }
     ?>
     
		 @media only screen and (max-width: 1300px) and (min-width: 1000px) {
			 body {
				 font-size: <?php echo esc_html( ceil($defined_font_size*$nectar_body_small_desktop) ) . 'px'; ?>;
				 line-height: <?php echo esc_html( ceil($defined_line_height*$nectar_body_small_desktop) ) . 'px'; ?>;
			 }
		 }
		 @media only screen and (max-width: 999px) and (min-width: 690px) {
			 body {
				 font-size: <?php echo esc_html( ceil($defined_font_size*$nectar_body_tablet) ) . 'px'; ?>;
				 line-height: <?php echo esc_html( ceil($defined_line_height*$nectar_body_tablet) ) . 'px'; ?>;
			 }
			 
		 }
		 @media only screen and (max-width: 690px) {
			 body {
				 font-size: <?php echo esc_html( ceil($defined_font_size*$nectar_body_phone) ) . 'px'; ?>;
				 line-height: <?php echo esc_html( ceil($defined_line_height*$nectar_body_phone) ) . 'px'; ?>;
			 }

		 }
		 
	 
 <?php } //attrs in use 
	
	
	

 /*-------------------------------------------------------------------------*/
 /* Logo
 /*-------------------------------------------------------------------------*/
 $styles = explode('-', $nectar_options['logo_font_style']);
 
 ( intval( substr($nectar_options['logo_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['logo_font_size'],0,-2)) .'px' : $line_height = null ;  
 
 if( $nectar_options['logo_font_family']['attrs_in_use'] ) {
	 
	 echo '#header-outer #logo.no-image, #header-outer[data-format="centered-logo-between-menu"] .logo-spacing[data-using-image="false"] {'; 
		 
		 // Output font properties.
		 nectar_output_font_props('logo_font', $line_height, $nectar_options);
		 
	 echo ' }'; 
   
   // Shrink logo font size for mobile if user defined size is large.
   if( $nectar_options['logo_font_size'] !== '-' && intval( substr($nectar_options['logo_font_size'],0,-2) ) > 24 ) {
     echo ' @media only screen and (max-width: 1000px) {
       #header-outer #logo.no-image {
         font-size: 24px;
         line-height: 24px;
       }
     }';
   }

	}//attrs in use


	/*-------------------------------------------------------------------------*/
	/*	Navigation Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['navigation_font_style']);
	
	( intval( substr($nectar_options['navigation_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['navigation_font_size'],0,-2)) *1.4 .'px' : $line_height = null;  

	if( $nectar_options['navigation_font_family']['attrs_in_use'] ) {
		
		echo '#top nav > ul > li > a, .span_3 .pull-left-wrap > ul > li > a, body.material #search-outer #search input[type="text"], #top nav ul .slide-out-widget-area-toggle a i.label,
    #top .span_9 > .slide-out-widget-area-toggle a.using-label .label, #header-secondary-outer .nectar-center-text, #slide-out-widget-area .secondary-header-text, 
    #header-outer #mobile-menu ul li a, #header-outer #mobile-menu .secondary-header-text {'; 	
			
			// Output font properties.
			nectar_output_font_props('navigation_font', $line_height, $nectar_options);
			
		echo ' }'; 

		  if( $nectar_options['navigation_font_size'] != '-' ) {
					
		    	echo '#top nav > ul > li[class*="button_solid_color"] > a:before, #header-outer.transparent #top nav > ul > li[class*="button_solid_color"] > a:before { 
		    		height: ' . floor((intval(substr($nectar_options['navigation_font_size'],0,-2)) *1.4)+ 5)  .'px; 
		    	}';

		    	echo '#top nav > ul > li[class*="button_bordered"] > a:before, #header-outer.transparent #top nav > ul > li[class*="button_bordered"] > a:before { 
		    		height: ' . floor((intval(substr($nectar_options['navigation_font_size'],0,-2)) *1.4)+ 15)  .'px; 
		    	}';
					
          // Increase dropdown arrow size for larger fonts.
					if( intval(substr($nectar_options['navigation_font_size'],0,-2)) >= 16 ) {
						echo '.material .sf-menu > li > a > .sf-sub-indicator [class^="icon-"] { font-size: 18px; }';
					}

			}
      
      // Minimum line height for header nav.
      if( !empty($nectar_options['navigation_font_line_height']) && $nectar_options['navigation_font_line_height'] !== '-' ) { 
        $nav_line_height = intval(substr($nectar_options['navigation_font_line_height'],0,-2));
        if( $nav_line_height < 10) {
          echo '#top nav > ul > li > a { line-height: 10px; }';
        }
      } 
			
		}//attrs in use

	
	/*-------------------------------------------------------------------------*/
	/*	Navigation Dropdown Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['navigation_dropdown_font_style']);
	( intval( substr($nectar_options['navigation_dropdown_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['navigation_dropdown_font_size'],0,-2)) + 10 .'px' : $line_height = null;  
	
	if( $nectar_options['navigation_dropdown_font_family']['attrs_in_use'] ) {
		
		echo '#top .sf-menu li ul li a, #header-secondary-outer nav > ul > li > a, 
		#header-secondary-outer ul ul li a, #header-outer .widget_shopping_cart .cart_list a {';
			
			// Output font properties.
			nectar_output_font_props('navigation_dropdown_font', $line_height, $nectar_options);
			
		echo ' }'; ?>
		
		
		<?php echo '@media only screen 
		and (min-width : 1px) and (max-width : 999px) 
		{
		  #top .sf-menu a {
		  	font-family: '. $nectar_options['navigation_dropdown_font'] .'!important;
		  	font-size: 14px!important;
		  }
		}'; 
		
	} // attrs in use 
	
	
	/*-------------------------------------------------------------------------*/
	/*	Page Heading Font - h1
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['h1_font_style']);
	
	( intval( substr($nectar_options['h1_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['h1_font_size'],0,-2)) +6 .'px' : $line_height = null;  
	
	if( $nectar_options['h1_font_family']['attrs_in_use'] ) {
					
			echo '#page-header-bg h1, body h1, body .row .col.section-title h1, 
			.full-width-content .nectar-recent-posts-slider .recent-post-container .inner-wrap h2, body #error-404 h1 {'; 	
				
			// Output font properties.
			nectar_output_font_props('h1_font', $line_height, $nectar_options);
			
			echo ' }'; 
			
			// Store calculated line height.
			$the_line_height = nectar_font_line_height('h1_font', $line_height, $nectar_options);
	
			$defined_font_size = (!empty($nectar_options['h1_font_size']) && $nectar_options['h1_font_size'] != '-') ? intval($nectar_options['h1_font_size']) : $nectar_h1_default_size;
			$defined_line_height = (!empty($the_line_height)) ? intval($the_line_height) : $nectar_h1_default_size + 6;
			
			?>

			@media only screen and (max-width: 1300px) and (min-width: 1000px) {
				body .row .col.section-title h1, body h1, .full-width-content .recent-post-container .inner-wrap h2 {
					font-size: <?php echo esc_html( $defined_font_size*$nectar_h1_small_desktop ) . 'px'; ?>;
					line-height: <?php echo esc_html( $defined_line_height*$nectar_h1_small_desktop ) . 'px'; ?>;
				}
			}
			@media only screen and (max-width: 999px) and (min-width: 690px) {
				body .row .col.section-title h1, body h1, html body .row .col.section-title.span_12 h1, .full-width-content .nectar-recent-posts-slider .recent-post-container .inner-wrap h2 {
					font-size: <?php echo esc_html( $defined_font_size*$nectar_h1_tablet ) . 'px'; ?>;
					line-height: <?php echo esc_html( $defined_line_height*$nectar_h1_tablet ) . 'px'; ?>;
				}
				.full-width-content .recent-post-container .inner-wrap h2 {
					font-size: <?php echo esc_html( $defined_font_size*$nectar_h1_tablet ) . 'px'; ?>;
					line-height: <?php echo esc_html( $defined_line_height*$nectar_h1_tablet ) . 'px'; ?>;
				}
				
				.wpb_wrapper h1.vc_custom_heading {
					font-size: <?php echo esc_html( $defined_font_size*$nectar_h1_tablet ) . 'px!important'; ?>;
					line-height: <?php echo esc_html( $defined_line_height*$nectar_h1_tablet ) . 'px!important'; ?>;
				}
				
			}
			@media only screen and (max-width: 690px) {
				body .row .col.section-title h1, body h1, html body .row .col.section-title.span_12 h1, .full-width-content .nectar-recent-posts-slider .recent-post-container .inner-wrap h2 {
					font-size: <?php echo esc_html( $defined_font_size*$nectar_h1_phone ) . 'px'; ?>;
					line-height: <?php echo esc_html( $defined_line_height*$nectar_h1_phone ) . 'px'; ?>;
				}
				
				.wpb_wrapper h1.vc_custom_heading {
					font-size: <?php echo esc_html( $defined_font_size*$nectar_h1_phone ) . 'px!important'; ?>;
					line-height: <?php echo esc_html( $defined_line_height*$nectar_h1_phone ) . 'px!important'; ?>;
				}

			}

<?php } // attrs in use ?>
	
	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Page Heading Font - h2
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['h2_font_style']);
	
	( intval( substr($nectar_options['h2_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['h2_font_size'],0,-2)) + intval(substr($nectar_options['h2_font_size'],0,-2))*0.65 .'px' : $line_height = null;  
	
	
	if( $nectar_options['h2_font_family']['attrs_in_use'] ) {
		
		echo '#page-header-bg h2, body h2, article.post .post-header h2, article.post.quote .post-content h2, 
		article.post.link .post-content h2, #call-to-action span, .woocommerce .full-width-tabs #reviews h3, 
		.row .col.section-title h2, .nectar_single_testimonial[data-style="bold"] p,
		.woocommerce-account .woocommerce > #customer_login .nectar-form-controls .control,
		body #error-404 h2, .woocommerce-page .woocommerce p.cart-empty { '; 
			
			// Output font properties.
			nectar_output_font_props('h2_font', $line_height, $nectar_options);
			
		echo ' }';


		// Store calculated line height.
		$the_line_height = nectar_font_line_height('h2_font', $line_height, $nectar_options);
		
		$defined_font_size = (!empty($nectar_options['h2_font_size']) && $nectar_options['h2_font_size'] != '-') ? intval($nectar_options['h2_font_size']) : $nectar_h2_default_size;
		$defined_line_height = (!empty($the_line_height)) ? intval($the_line_height) : $nectar_h2_default_size + 8;
		
		?>
		
		.single-product div.product h1.product_title {
			font-size: <?php echo intval($defined_font_size) . 'px'; ?>;
			line-height: <?php echo intval($defined_line_height) . 'px'; ?>;
		}
		
		@media only screen and (max-width: 1300px) and (min-width: 1000px) {
		 	body h2, .single-product div.product h1.product_title {
		 		font-size: <?php echo esc_html( $defined_font_size*$nectar_h2_small_desktop ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h2_small_desktop ) . 'px'; ?>;
			}
			.row .span_2 h2, .row .span_3 h2, .row .span_4 h2, .row .vc_col-sm-2 h2, .row .vc_col-sm-3 h2, .row .vc_col-sm-4 h2 { 
				font-size: <?php echo esc_html( $defined_font_size*0.7 ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*0.7 ) . 'px'; ?>;
			}
			
		}

		@media only screen and (max-width: 999px) and (min-width: 690px) {
		.col h2, h2, .single-product div.product h1.product_title, .woocommerce-account .woocommerce > #customer_login .nectar-form-controls .control {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h2_tablet ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h2_tablet ) . 'px'; ?>;
			}
			.wpb_wrapper h2.vc_custom_heading {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h2_tablet ) . 'px!important'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h2_tablet ) . 'px!important'; ?>;
			}
			
		}

		@media only screen and (max-width: 690px) {
		.col h2, h2, .single-product div.product h1.product_title, .woocommerce-account .woocommerce > #customer_login .nectar-form-controls .control {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h2_phone ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h2_phone ) . 'px'; ?>;
			}
			.wpb_wrapper h2.vc_custom_heading {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h2_phone ) . 'px!important'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h2_phone ) . 'px!important'; ?>;
			}
		}
		
	<?php } // attrs in use ?>
	
	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Page Heading Font - h3
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['h3_font_style']);
	
	( intval( substr($nectar_options['h3_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['h3_font_size'],0,-2)) +8 .'px' : $line_height = null;  
	
	if( $nectar_options['h3_font_family']['attrs_in_use'] ) {
		
	echo 'body h3, .row .col h3, .toggle h3 a, .ascend #respond h3, .ascend h3#comments, 
	.woocommerce ul.products li.product.text_on_hover h3, .masonry.classic_enhanced .masonry-blog-item h3.title, 
	.woocommerce ul.products li.product.material h3, .woocommerce-page ul.products li.product.material h3, .portfolio-items[data-ps="8"] .col h3,
	.nectar-hor-list-item[data-font-family="h3"], .woocommerce ul.products li.product h2, .nectar-quick-view-box h1 { '; 
		
		// Output font properties.
		nectar_output_font_props('h3_font', $line_height, $nectar_options);
		
	echo ' }'; 
	
	// Store calculated line height.
	$the_line_height = nectar_font_line_height('h3_font', $line_height, $nectar_options);
	
	?>
	
	@media only screen and (min-width: 1000px) {
		.ascend .comments-section .comment-wrap.full-width-section > h3#comments, .blog_next_prev_buttons[data-post-header-style="default_minimal"] .col h3 {
			font-size: <?php if(!empty($nectar_options['h3_font_size']) && $nectar_options['h3_font_size'] != '-') echo intval($nectar_options['h3_font_size'])*1.7 . 'px' ?>;
			line-height: <?php if(!empty($nectar_options['h3_font_size']) && $nectar_options['h3_font_size'] != '-') echo (intval($nectar_options['h3_font_size'])*1.7) +8 . 'px' ?>;
		}

		#ajax-content-wrap .masonry.classic_enhanced .masonry-blog-item.large_featured h3.title {
			font-size: <?php if(!empty($nectar_options['h3_font_size']) && $nectar_options['h3_font_size'] != '-') echo intval($nectar_options['h3_font_size'])*1.5 . 'px' ?>;
			line-height: <?php if(!empty($nectar_options['h3_font_size']) && $nectar_options['h3_font_size'] != '-') echo intval($the_line_height)*1.5 . 'px' ?>;
		}
	}

	@media only screen and (min-width: 1300px) and (max-width: 1500px){
		body .portfolio-items.constrain-max-cols.masonry-items .col.elastic-portfolio-item h3 {
			font-size: <?php if(!empty($nectar_options['h3_font_size']) && $nectar_options['h3_font_size'] != '-') echo intval($nectar_options['h3_font_size'])*0.85 . 'px' ?>;
			line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.85) . 'px' ?>;
		}
	}

	<?php 
		$defined_font_size = (!empty($nectar_options['h3_font_size']) && $nectar_options['h3_font_size'] != '-') ? intval($nectar_options['h3_font_size']) : $nectar_h3_default_size;
		$defined_line_height = (!empty($the_line_height)) ? intval($the_line_height) : $nectar_h3_default_size + 10;
	?>

	@media only screen and (max-width: 1300px) and (min-width: 1000px) {
		.row .span_2 h3, .row .span_3 h3, .row .span_4 h3, .row .vc_col-sm-2 h3, .row .vc_col-sm-3 h3, .row .vc_col-sm-4 h3, .row .col h3, body h3 {
			font-size: <?php echo esc_html( $defined_font_size*$nectar_h3_small_desktop ) . 'px'; ?>;
			line-height: <?php echo esc_html( $defined_line_height*$nectar_h3_small_desktop ) . 'px'; ?>;
		}
	}

	@media only screen and (max-width: 999px) and (min-width: 690px) {
		.row .span_2 h3, .row .span_3 h3, .row .span_4 h3, .row .vc_col-sm-2 h3, .row .vc_col-sm-3 h3, .row .vc_col-sm-4 h3, .row .col h3, body h3 {
			font-size: <?php echo esc_html( $defined_font_size*$nectar_h3_tablet ) . 'px'; ?>;
			line-height: <?php echo esc_html( $defined_line_height*$nectar_h3_tablet ) . 'px'; ?>;
		}
		.wpb_wrapper h3.vc_custom_heading {
			font-size: <?php echo esc_html( $defined_font_size*$nectar_h3_tablet ) . 'px!important'; ?>;
			line-height: <?php echo esc_html( $defined_line_height*$nectar_h3_tablet ) . 'px!important'; ?>;
		}
	}

	@media only screen and (max-width: 690px) {
		.row .span_2 h3, .row .span_3 h3, .row .span_4 h3, .row .vc_col-sm-2 h3, .row .vc_col-sm-3 h3, .row .vc_col-sm-4 h3, .row .col h3, body h3 {
			font-size: <?php echo esc_html( $defined_font_size*$nectar_h3_phone ) . 'px'; ?>;
			line-height: <?php echo esc_html( $defined_line_height*$nectar_h3_phone ) . 'px'; ?>;
		}
		.wpb_wrapper h3.vc_custom_heading {
			font-size: <?php echo esc_html( $defined_font_size*$nectar_h3_phone ) . 'px!important'; ?>;
			line-height: <?php echo esc_html( $defined_line_height*$nectar_h3_phone ) . 'px!important'; ?>;
		}
	}
  
  
  @media only screen and (min-width: 1300px) {
    .nectar-post-grid[data-columns="2"][data-masonry="yes"] > div:nth-of-type(3n + 1) h3 {
      font-size: <?php echo esc_html( $defined_font_size*1.4 ) . 'px'; ?>;
    }
  }
  @media only screen and (max-width: 1300px) and (min-width: 1000px) {
    .nectar-post-grid[data-columns="2"][data-masonry="yes"] > div:nth-of-type(3n + 1) h3 {
      font-size: <?php echo esc_html( $defined_font_size*$nectar_h3_small_desktop*1.4 ) . 'px'; ?>;
    }
  }
  @media only screen and (max-width: 999px) and (min-width: 690px) {
    .nectar-post-grid[data-columns="2"][data-masonry="yes"] > div:nth-of-type(3n + 1) h3 {
      font-size: <?php echo esc_html( $defined_font_size*$nectar_h3_tablet*1.4 ) . 'px'; ?>;
    }
  } 

<?php } // attrs in use ?>

	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Page Heading Font - h4
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['h4_font_style']);
	
	( intval( substr($nectar_options['h4_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['h4_font_size'],0,-2)) +10 .'px' : $line_height = null;
	

	if( $nectar_options['h4_font_family']['attrs_in_use'] ) {
			
		echo 'body h4, .row .col h4, .portfolio-items .work-meta h4, .list-icon-holder[data-icon_type="numerical"] span, 
		.portfolio-items .col.span_3 .work-meta h4, #respond h3, .blog-recent.related-posts h3.title, h3#comments, 
		.portfolio-items[data-ps="6"] .work-meta h4, .nectar-hor-list-item[data-font-family="h4"], .toggles[data-style="minimal_small"] .toggle > h3 a, 
		.woocommerce #reviews #reply-title, p.woocommerce.add_to_cart_inline > span.woocommerce-Price-amount, 
		p.woocommerce.add_to_cart_inline ins > span.woocommerce-Price-amount, #header-outer .total, #header-outer .total strong { ';
		
			// Output font properties.
			nectar_output_font_props('h4_font', $line_height, $nectar_options);
			
		echo ' }'; 
		
		// Store calculated line height.
		$the_line_height = nectar_font_line_height('h4_font', $line_height, $nectar_options);
		
    $font_family = (1 === preg_match('~[0-9]~', $nectar_options['h4_font'])) ? '"'. $nectar_options['h4_font'] .'"' : $nectar_options['h4_font'];
    
		?>
		
		@media only screen and (min-width: 690px) {
			.portfolio-items[data-ps="6"] .wide_tall .work-meta h4 {
				font-size: <?php if(!empty($nectar_options['h4_font_size']) && $nectar_options['h4_font_size'] != '-') echo intval($nectar_options['h4_font_size'])*1.7 . 'px!important' ?>;
				line-height: <?php if(!empty($nectar_options['h4_font_size']) && $nectar_options['h4_font_size'] != '-') echo (intval($nectar_options['h4_font_size'])*1.7) +8 . 'px!important' ?>;
			}

			.nectar-slide-in-cart .widget_shopping_cart .cart_list .mini_cart_item > a:not(.remove) {
				<?php if($nectar_options['h4_font'] != '-') echo 'font-family: ' . $font_family .'!important;'; 
				if(!empty($styles[0]) && $styles[0] == 'regular') $styles[0] = '400';
			  if(!empty($styles[0]) && strpos($styles[0],'italic') === false) { echo 'font-weight:' .  $styles[0] .'!important;'; } ?>
			}

		}

		<?php 
			$defined_font_size   = (!empty($nectar_options['h4_font_size']) && $nectar_options['h4_font_size'] != '-') ? intval($nectar_options['h4_font_size']) : $nectar_h4_default_size;
			$defined_line_height = (!empty($the_line_height)) ? intval($the_line_height) : $nectar_h4_default_size + 10;
		?>

		@media only screen and (max-width: 1300px) and (min-width: 1000px) {
			.row .col h4, body h4 {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h4_small_desktop ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h4_small_desktop ) . 'px'; ?>;
			}
		}

		@media only screen and (max-width: 999px) and (min-width: 690px) {
			.row .col h4, body h4 {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h4_tablet ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h4_tablet ) . 'px'; ?>;
			}
		}

		@media only screen and (max-width: 690px) {
			.row .col h4, body h4 {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h4_phone ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h4_phone ) . 'px'; ?>;
			}
		}
		
	<?php } // attrs in use ?>
	
	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Page Heading Font - h5
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['h5_font_style']);
	
	( intval( substr($nectar_options['h5_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['h5_font_size'],0,-2)) +10 .'px' : $line_height = null;  
	
	if( $nectar_options['h5_font_family']['attrs_in_use'] ) {
		
		echo 'body h5, .row .col h5, .portfolio-items .work-item.style-3-alt p, .nectar-hor-list-item[data-font-family="h5"] { '; 
		
			// Output font properties.
			nectar_output_font_props('h5_font', $line_height, $nectar_options);
			
		echo ' }'; 
		
		// Store calculated line height.
		$the_line_height = nectar_font_line_height('h5_font', $line_height, $nectar_options);
		
		?>

		body .wpb_column > .wpb_wrapper > .morphing-outline .inner > h5 {
			font-size: <?php if(!empty($nectar_options['h5_font_size']) && $nectar_options['h5_font_size'] != '-') echo ceil(intval($nectar_options['h5_font_size'])*1.35) . 'px' ?>;
		}
		
		<?php 
			$defined_font_size = (!empty($nectar_options['h5_font_size']) && $nectar_options['h5_font_size'] != '-') ? intval($nectar_options['h5_font_size']) : $nectar_h5_default_size;
			$defined_line_height = (!empty($the_line_height)) ? intval($the_line_height) : $nectar_h5_default_size + 10;
		?>

		@media only screen and (max-width: 1300px) and (min-width: 1000px) {
			.row .col h5, body h5 {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h5_small_desktop ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h5_small_desktop ) . 'px'; ?>;
			}
		}

		@media only screen and (max-width: 999px) and (min-width: 690px) {
			.row .col h5, body h5 {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h5_tablet ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h5_tablet ) . 'px'; ?>;
			}
		}

		@media only screen and (max-width: 690px) {
			.row .col h5, body h5 {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h5_phone ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h5_phone ) . 'px'; ?>;
			}
		}
	
	<?php } // attrs in use ?>
	
	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Page Heading Font - h6
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['h6_font_style']);
	
	( intval( substr($nectar_options['h6_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['h6_font_size'],0,-2)) +10 .'px' : $line_height = null;  
	
	if( $nectar_options['h6_font_family']['attrs_in_use'] ) {
				
		echo 'body h6, .row .col h6, .nectar-hor-list-item[data-font-family="h6"] { '; 
			
			// Output font properties.
			nectar_output_font_props('h6_font', $line_height, $nectar_options);
			
		echo ' }'; 
		
		// Store calculated line height.
		$the_line_height = nectar_font_line_height('h6_font', $line_height, $nectar_options);
		
		$defined_font_size   = (!empty($nectar_options['h6_font_size']) && $nectar_options['h6_font_size'] != '-') ? intval($nectar_options['h6_font_size']) : $nectar_h6_default_size;
		$defined_line_height = (!empty($the_line_height)) ? intval($the_line_height) : $nectar_h6_default_size + 10;
		
		?>

		@media only screen and (max-width: 1300px) and (min-width: 1000px) {
			.row .col h6, body h6 {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h6_small_desktop ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h6_small_desktop ) . 'px'; ?>;
			}
		}

		@media only screen and (max-width: 999px) and (min-width: 690px) {
			.row .col h6, body h6 {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h6_tablet ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h6_tablet ) . 'px'; ?>;
			}
		}

		@media only screen and (max-width: 690px) {
			.row .col h6, body h6 {
				font-size: <?php echo esc_html( $defined_font_size*$nectar_h6_phone ) . 'px'; ?>;
				line-height: <?php echo esc_html( $defined_line_height*$nectar_h6_phone ) . 'px'; ?>;
			}
		}
	
	<?php } // attrs in use ?>	


	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Italic Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['i_font_style']);
	
	( intval( substr($nectar_options['i_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['i_font_size'],0,-2)) +10 .'px' : $line_height = null;  
	
	if( $nectar_options['i_font_family']['attrs_in_use'] ) {
		
		echo 'body i, body em, .masonry.meta_overlaid article.post .post-header .meta-author > span, .post-area.masonry.meta_overlaid article.post .post-meta .date,
		.post-area.masonry.meta_overlaid article.post.quote .quote-inner .author, .post-area.masonry.meta_overlaid  article.post.link .post-content .destination,
		body .testimonial_slider[data-style="minimal"] blockquote span.title { '; 
			
			// Output font properties.
			nectar_output_font_props('i_font', $line_height, $nectar_options);
			
		echo ' }'; ?>
		
		<?php } // attrs in use ?>		
		
	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Form Label Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['label_font_style']);
	
	( intval( substr($nectar_options['label_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['label_font_size'],0,-2)) +10 .'px' : $line_height = null; 

	if( $nectar_options['label_font_family']['attrs_in_use'] ) {
			
		echo 'form label, 
		.woocommerce-checkout-review-order-table .product-info .amount, 
		.woocommerce-checkout-review-order-table .product-info .product-quantity,
		.nectar-progress-bar p, 
		.nectar-progress-bar span strong i, 
		.nectar-progress-bar span strong, 
		body.material .nectar_single_testimonial[data-style="basic"] span.wrap,
		body.material .nectar_single_testimonial[data-style="basic_left_image"] span.wrap, 
		.testimonial_slider:not([data-style="minimal"]) blockquote span,  
		.woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__rendered, 
		.woocommerce-ordering .select2-container .select2-choice>.select2-chosen,
		.tabbed[data-style="minimal_alt"] > ul li a, 
		.material .widget .nectar_widget[class*="nectar_blog_posts_"] > li .post-title, 
		body.material .tagcloud a, .material .widget li a, 
		.nectar-recent-posts-slider_multiple_visible 
		.recent-post-container.container .strong a, 
		.material .recentcomments .comment-author-link, 
		.single .post-area .content-inner > .post-tags a, 
		.masonry.material .masonry-blog-item .grav-wrap a, 
		.nectar-recent-posts-single_featured .grav-wrap a, 
		.masonry.material .masonry-blog-item .meta-category a, 
		.post-area.featured_img_left article .meta-category a, 
		.post-area.featured_img_left article .grav-wrap .text a, 
		.related-posts[data-style="material"] .meta-category a, 
		.masonry.auto_meta_overlaid_spaced article.post.quote .author, 
		.masonry.material article.post.quote .author, 
		body.search-results #search-results[data-layout="list-no-sidebar"] .result .inner-wrap h2 span,
		.material .tabbed >ul li a, 
		.post-area.featured_img_left article.post.quote .author, 
		.single .post.format-quote .author, 
		.related-posts[data-style="material"] .grav-wrap .text a, 
		.auto_meta_overlaid_spaced .masonry-blog-item .meta-category a, 
		[data-style="list_featured_first_row"] .meta-category a, 
		.nectar-recent-posts-single_featured .strong a, 
		.nectar-recent-posts-single_featured.multiple_featured .controls li .title,
		body .woocommerce .nectar-woo-flickity[data-controls="arrows-and-text"] .woo-flickity-count, 
		body.woocommerce ul.products li.minimal.product span.onsale, 
		.nectar-woo-flickity ul.products li.minimal.product span.onsale, 
		.nectar-quick-view-box span.onsale, 
		.nectar-quick-view-box .nectar-full-product-link a, 
		body .nectar-quick-view-box .single_add_to_cart_button, 
		.nectar-quick-view-box .single_add_to_cart_button, 
		.woocommerce .cart .quantity input.qty, 
		.woocommerce .cart .quantity input.plus, 
		.woocommerce .cart .quantity input.minus, 
		.pum-theme-salient-page-builder-optimized .pum-container .pum-content+.pum-close,
		.nectar-quick-view-box .cart .quantity input.qty, 
		.nectar-quick-view-box .cart .quantity input.plus, 
		.nectar-quick-view-box .cart .quantity input.minus, 
		.woocommerce-account .woocommerce-form-login .lost_password, 
		.woocommerce div.product .woocommerce-tabs .full-width-content[data-tab-style="fullwidth"] ul.tabs li a, 
		.woocommerce div.product_meta,
		.woocommerce table.cart td.product-name, 
		.woocommerce table.shop_table th, 
		#header-outer .widget_shopping_cart .cart_list a, 
		.woocommerce .yith-wcan-reset-navigation.button, 
		.single-product .entry-summary p.stock.out-of-stock
		{ '; 
			
			// Output font properties.
			nectar_output_font_props('label_font', $line_height, $nectar_options);
			
		echo ' }'; ?>

	<?php } // attrs in use ?>	

	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Portfolio Filter Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['portfolio_filters_font_style']);
	
	( intval( substr($nectar_options['portfolio_filters_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['portfolio_filters_font_size'],0,-2)) +10 .'px' : $line_height = null;  

	if( $nectar_options['portfolio_filters_font_family']['attrs_in_use'] ) {
			
		echo '.portfolio-filters-inline .container > ul a, .portfolio-filters > ul a, .portfolio-filters > a span, .nectar-post-grid-filters a, .nectar-post-grid-filters h4 { '; 	
			
			// Output font properties.
			nectar_output_font_props('portfolio_filters_font', $line_height, $nectar_options);
			
		echo ' }'; 
		
		// Store calculated line height.
		$the_line_height = nectar_font_line_height('portfolio_filters_font', $line_height, $nectar_options);
		
		if( $the_line_height !== null ) { echo '.portfolio-filters-inline #current-category { line-height: '.esc_attr($the_line_height).'; }'; } ?>

	<?php } // attrs in use ?>	
	
	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Portfolio Captions/Excerpts Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['portfolio_caption_font_style']);
	
	( intval( substr($nectar_options['portfolio_caption_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['portfolio_caption_font_size'],0,-2)) +10 .'px' : $line_height = null;  

	if( $nectar_options['portfolio_caption_font_family']['attrs_in_use'] ) {
			
		echo '.portfolio-items .col p, .container-wrap[data-nav-pos="after_project_2"] .bottom_controls li span:not(.text) { ';
			
			// Output font properties.
			nectar_output_font_props('portfolio_caption_font', $line_height, $nectar_options);
			
		echo ' }'; ?>

   <?php } // attrs in use ?>	

	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Dropcap Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['nectar_dropcap_font_style']);
	
	( intval( substr($nectar_options['nectar_dropcap_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['nectar_dropcap_font_size'],0,-2)) +10 .'px' : $line_height = null;  
	
	if( $nectar_options['nectar_dropcap_font_family']['attrs_in_use'] ) {
		
		echo '.nectar-dropcap { '; 
			
			// Output font properties.
			nectar_output_font_props('nectar_dropcap_font', $line_height, $nectar_options);
			
		echo ' }'; ?>

  <?php } // attrs in use ?>	

	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Sidebar/Footer Header Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['nectar_sidebar_footer_headers_font_style']);
	
	( intval( substr($nectar_options['nectar_sidebar_footer_headers_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['nectar_sidebar_footer_headers_font_size'],0,-2)) +10 .'px' : $line_height = null;  

	if( $nectar_options['nectar_sidebar_footer_headers_font_family']['attrs_in_use'] ) {
		
		echo 'body #sidebar h4, body .widget h4, body #footer-outer .widget h4
		{ '; 	
			
			// Output font properties.
			nectar_output_font_props('nectar_sidebar_footer_headers_font', $line_height, $nectar_options);
			
		echo ' }'; ?>

	<?php } // attrs in use ?>	
	
	<?php 

	/*-------------------------------------------------------------------------*/
	/*	Page Header Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['page_heading_font_style']);
	
	( intval( substr($nectar_options['page_heading_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['page_heading_font_size'],0,-2)) +10 .'px' : $line_height = null;  
	
	if( $nectar_options['page_heading_font_family']['attrs_in_use'] ) {
				
			echo 'body #page-header-bg h1, html body .row .col.section-title h1, .nectar-box-roll .overlaid-content h1 { '; 
			
				// Output font properties.
				nectar_output_font_props('page_heading_font', $line_height, $nectar_options);
				
			echo ' }'; 
			
			// Store calculated line height.
			$the_line_height = nectar_font_line_height('page_heading_font', $line_height, $nectar_options);
			
			?>

			@media only screen and (min-width: 690px) and (max-width: 999px) {
				#page-header-bg .span_6 h1, .overlaid-content h1 {
					font-size: <?php if(!empty($nectar_options['page_heading_font_size']) && $nectar_options['page_heading_font_size'] != '-') echo intval($nectar_options['page_heading_font_size'])*0.7 . 'px!important' ?>;
					line-height: <?php if(!empty($nectar_options['page_heading_font_size']) && $nectar_options['page_heading_font_size'] != '-') echo (intval($nectar_options['page_heading_font_size'])*0.7) +4 . 'px!important' ?>;
				}
			}

			@media only screen and (min-width: 1000px) and (max-width: 1300px) {
				#page-header-bg .span_6 h1, .nectar-box-roll .overlaid-content h1 {
					font-size: <?php if(!empty($nectar_options['page_heading_font_size']) && $nectar_options['page_heading_font_size'] != '-') echo intval($nectar_options['page_heading_font_size'])*0.85 . 'px' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.85) . 'px' ?>;
				}
			}

			@media only screen and (min-width: 1300px) and (max-width: 1500px) {
				#page-header-bg .span_6 h1, .nectar-box-roll .overlaid-content h1 {
					font-size: <?php if(!empty($nectar_options['page_heading_font_size']) && $nectar_options['page_heading_font_size'] != '-') echo intval($nectar_options['page_heading_font_size'])*0.9 . 'px' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.9) . 'px' ?>;
				}
			}

			@media only screen and (max-width: 690px) {
				#page-header-bg.fullscreen-header .span_6 h1, .overlaid-content h1 {
					font-size: <?php if(!empty($nectar_options['page_heading_font_size']) && $nectar_options['page_heading_font_size'] != '-') echo intval($nectar_options['page_heading_font_size'])*0.45 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.45) . 'px!important' ?>;
				}
			}
		
	<?php } // attrs in use ?>		
	
	<?php
	/*-------------------------------------------------------------------------*/
	/*	Page Header Subtitle Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['page_heading_subtitle_font_style']);
	
	( intval( substr($nectar_options['page_heading_subtitle_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['page_heading_subtitle_font_size'],0,-2)) +10 .'px' : $line_height = null; 
	
	if( $nectar_options['page_heading_subtitle_font_family']['attrs_in_use'] ) {
		
			echo 'body #page-header-bg .span_6 span.subheader, #page-header-bg span.result-num, 
			body .row .col.section-title > span, .nectar-box-roll .overlaid-content .subheader { ';
			
				// Output font properties.
				nectar_output_font_props('page_heading_subtitle_font', $line_height, $nectar_options);
				
			echo ' }'; 
			
			// Store calculated line height.
			$the_line_height = nectar_font_line_height('page_heading_subtitle_font', $line_height, $nectar_options);
			
			?>
			
			@media only screen and (min-width: 1000px) and (max-width: 1300px) {
				body #page-header-bg:not(.fullscreen-header) .span_6 span.subheader, body .row .col.section-title > span {
					font-size: <?php if(!empty($nectar_options['page_heading_subtitle_font_size']) && $nectar_options['page_heading_subtitle_font_size'] != '-') echo intval($nectar_options['page_heading_subtitle_font_size'])*0.8 . 'px' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.8) . 'px' ?>;
				}
			}

			@media only screen and (min-width: 690px) and (max-width: 999px) {
				body #page-header-bg.fullscreen-header .span_6 span.subheader, .overlaid-content .subheader {
					font-size: <?php if(!empty($nectar_options['page_heading_subtitle_font_size']) && $nectar_options['page_heading_subtitle_font_size'] != '-') echo intval($nectar_options['page_heading_subtitle_font_size'])*0.9 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.9) . 'px!important' ?>;
				}

				<?php if(!empty($nectar_options['page_heading_subtitle_font_size']) && $nectar_options['page_heading_subtitle_font_size'] != '-' && $nectar_options['page_heading_subtitle_font_size'] > 22) { ?>
					#page-header-bg .span_6 span.subheader {
				  		font-size: 22px!important;
				  } 
			  	<?php } else if( empty($nectar_options['page_heading_subtitle_font_size']) || !empty($nectar_options['page_heading_subtitle_font_size']) && $nectar_options['page_heading_subtitle_font_size'] == '-' ) { ?>
				  	#page-header-bg .span_6 span.subheader {
				  		font-size: 22px!important;
				  	} 
				 <?php } ?>
			}

			@media only screen and (max-width: 690px) {
				body #page-header-bg.fullscreen-header .span_6 span.subheader, .overlaid-content .subheader {
					font-size: <?php if(!empty($nectar_options['page_heading_subtitle_font_size']) && $nectar_options['page_heading_subtitle_font_size'] != '-') echo intval($nectar_options['page_heading_subtitle_font_size'])*0.7 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.7) . 'px!important' ?>;
				}

				<?php if(!empty($nectar_options['page_heading_subtitle_font_size']) && $nectar_options['page_heading_subtitle_font_size'] != '-' && $nectar_options['page_heading_subtitle_font_size'] > 15) { ?>
					#page-header-bg .span_6 span.subheader {
				  		font-size: 15px!important;
				  }
			  	<?php } else if( empty($nectar_options['page_heading_subtitle_font_size']) || !empty($nectar_options['page_heading_subtitle_font_size']) && $nectar_options['page_heading_subtitle_font_size'] == '-' ) { ?>
			  		#page-header-bg .span_6 span.subheader {
				  		font-size: 15px!important;
				  	} 
				 <?php } ?>
			}

  <?php } // attrs in use ?>	

	<?php
	/*-------------------------------------------------------------------------*/
	/*	Off Canvas Navigation Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['off_canvas_nav_font_style']);
	
	( intval( substr($nectar_options['off_canvas_nav_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['off_canvas_nav_font_size'],0,-2)) +10 .'px' : $line_height = null;  
	
	if( $nectar_options['off_canvas_nav_font_family']['attrs_in_use'] ) {
				
			echo 'body #slide-out-widget-area .inner .off-canvas-menu-container li a, 
			body #slide-out-widget-area.fullscreen .inner .off-canvas-menu-container li a,
			body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container li a, 
			body #slide-out-widget-area.slide-out-from-right-hover .inner .off-canvas-menu-container li a,
			body #nectar-ocm-ht-line-check { '; 
			
				// Output font properties.
				nectar_output_font_props('off_canvas_nav_font', $line_height, $nectar_options);
			
			echo ' }'; 
			
			// Store calculated line height.
			$the_line_height = nectar_font_line_height('off_canvas_nav_font', $line_height, $nectar_options);
			
			?>

			@media only screen and (min-width: 690px) and (max-width: 999px) {
				body #slide-out-widget-area.fullscreen .inner .off-canvas-menu-container li a,
				body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container li a  {
					font-size: <?php if(!empty($nectar_options['off_canvas_nav_font_size']) && $nectar_options['off_canvas_nav_font_size'] != '-') echo intval($nectar_options['off_canvas_nav_font_size'])*0.9 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.9) . 'px!important' ?>;
				}
			}

			@media only screen and (max-width: 690px) {
				body #slide-out-widget-area.fullscreen .inner .off-canvas-menu-container li a,
				body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container li a {
					font-size: <?php if(!empty($nectar_options['off_canvas_nav_font_size']) && $nectar_options['off_canvas_nav_font_size'] != '-') echo intval($nectar_options['off_canvas_nav_font_size'])*0.7 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.7) . 'px!important' ?>;
				}
			}

			<?php 
				if(!empty($nectar_options['off_canvas_nav_font_size']) && $nectar_options['off_canvas_nav_font_size'] != '-' && intval($nectar_options['off_canvas_nav_font_size']) < 25) {
					echo 'body.material #slide-out-widget-area.slide-out-from-right  .off-canvas-menu-container li li a,
					#slide-out-widget-area[data-dropdown-func="separate-dropdown-parent-link"]  .off-canvas-menu-container li li a { font-size: '. intval($nectar_options['off_canvas_nav_font_size'])*0.7 .'px; line-height: '. intval($nectar_options['off_canvas_nav_font_size'])*0.7 .'px; }';
				}
			?>

  <?php } // attrs in use ?>	
			
	<?php
	/*-------------------------------------------------------------------------*/
	/*	Off Canvas Navigation Font Subtext
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['off_canvas_nav_subtext_font_style']);
	
	( intval( substr($nectar_options['off_canvas_nav_subtext_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['off_canvas_nav_subtext_font_size'],0,-2)) +10 .'px' : $line_height = null;
	
	if( $nectar_options['off_canvas_nav_subtext_font_family']['attrs_in_use'] ) {
		
			echo '#slide-out-widget-area .menuwrapper li small { '; 	
			
				// Output font properties.
				nectar_output_font_props('off_canvas_nav_subtext_font', $line_height, $nectar_options);
			
			echo ' }'; 
			
			// Store calculated line height.
			$the_line_height = nectar_font_line_height('off_canvas_nav_subtext_font', $line_height, $nectar_options);
			
			?>

			@media only screen and (min-width: 690px) and (max-width: 999px) {
				#slide-out-widget-area .menuwrapper li small {
					font-size: <?php if(!empty($nectar_options['off_canvas_nav_subtext_font_size']) && $nectar_options['off_canvas_nav_subtext_font_size'] != '-') echo intval($nectar_options['off_canvas_nav_subtext_font_size'])*0.9 . 'px' ?>;
					line-height: <?php if($the_line_height) echo intval($the_line_height)*0.9 . 'px' ?>;
				}
			}

			@media only screen and (max-width: 690px) {
				#slide-out-widget-area .menuwrapper li small {
					font-size: <?php if(!empty($nectar_options['off_canvas_nav_subtext_font_size']) && $nectar_options['off_canvas_nav_subtext_font_size'] != '-') echo intval($nectar_options['off_canvas_nav_subtext_font_size'])*0.7 . 'px' ?>;
					line-height: <?php if($the_line_height) echo intval($the_line_height)*0.7 . 'px' ?>;
				}
			}
			
	<?php } // attrs in use ?>	
	
	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Nectar Slider Heading Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['nectar_slider_heading_font_style']);
	( intval( substr($nectar_options['nectar_slider_heading_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['nectar_slider_heading_font_size'],0,-2)) + 19 .'px!important' : $line_height = null;  
	
	if( $nectar_options['nectar_slider_heading_font_family']['attrs_in_use'] ) {
	
			echo '.swiper-slide .content h2 { '; 
				
				// Output font properties.
				nectar_output_font_props('nectar_slider_heading_font', $line_height, $nectar_options);
				
			echo ' }'; 
			
			// Store calculated line height.
			$the_line_height = nectar_font_line_height('nectar_slider_heading_font', $line_height, $nectar_options);
			
			?>

			@media only screen and (min-width: 1000px) and (max-width: 1300px) {
				body .nectar-slider-wrap[data-full-width="true"] .swiper-slide .content h2, 
				body .nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content h2, 
				body .full-width-content .vc_span12 .swiper-slide .content h2 {
					font-size: <?php if(!empty($nectar_options['nectar_slider_heading_font_size']) && $nectar_options['nectar_slider_heading_font_size'] != '-') echo intval($nectar_options['nectar_slider_heading_font_size'])*0.8 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.8) . 'px!important' ?>;
				}
			}

			@media only screen and (min-width: 690px) and (max-width: 999px) {
				body .nectar-slider-wrap[data-full-width="true"] .swiper-slide .content h2, 
				body .nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content h2, 
				body .full-width-content .vc_span12 .swiper-slide .content h2 {
					font-size: <?php if(!empty($nectar_options['nectar_slider_heading_font_size']) && $nectar_options['nectar_slider_heading_font_size'] != '-') echo intval($nectar_options['nectar_slider_heading_font_size'])*0.6 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.6) . 'px!important' ?>;
				}
			}

			@media only screen and (max-width: 690px) {
				body .nectar-slider-wrap[data-full-width="true"] .swiper-slide .content h2, 
				body .nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content h2, 
				body .full-width-content .vc_span12 .swiper-slide .content h2 {
					font-size: <?php if(!empty($nectar_options['nectar_slider_heading_font_size']) && $nectar_options['nectar_slider_heading_font_size'] != '-') echo intval($nectar_options['nectar_slider_heading_font_size'])*0.5 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo (intval($the_line_height)*0.5) . 'px!important' ?>;
				}
			}
	
	<?php } // attrs in use ?>	
	
	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Nectar/Home Slider Caption 
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['home_slider_caption_font_style']);
	( intval( substr($nectar_options['home_slider_caption_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['home_slider_caption_font_size'],0,-2)) + 19 .'px!important' : $line_height = null; 
	
	if( $nectar_options['home_slider_caption_font_family']['attrs_in_use'] ) {
	
			echo '#featured article .post-title h2 span, .swiper-slide .content p, body .vc_text_separator div { ';
				
				// Output font properties.
				nectar_output_font_props('home_slider_caption_font', $line_height, $nectar_options);
				
			echo ' }'; ?>
			
			<?php 
			
			  echo '#portfolio-filters-inline ul { line-height: '.esc_attr($line_height).'; }';
			  echo '.swiper-slide .content p.transparent-bg span { '; $nectar_slider_line_height_2 = intval(substr($nectar_options["home_slider_caption_font_size"],0,-2)) + 25; 
	   
			 if( !empty($line_height) ) { 
				 echo 'line-height:' . esc_attr($nectar_slider_line_height_2) .'px;'; 
			 } 
			 
			 // Store calculated line height.
	 		$the_line_height = nectar_font_line_height('home_slider_caption_font', $line_height, $nectar_options);
			 
			echo '}'; ?>

			@media only screen and (min-width: 1000px) and (max-width: 1300px) {
				.nectar-slider-wrap[data-full-width="true"] .swiper-slide .content p, 
				.nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content p, 
				.full-width-content .vc_span12 .swiper-slide .content p {
					font-size: <?php if(!empty($nectar_options['home_slider_caption_font_size']) && $nectar_options['home_slider_caption_font_size'] != '-') echo intval($nectar_options['home_slider_caption_font_size'])*0.8 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo intval($the_line_height)*0.8 . 'px!important' ?>;
				}
			}

			@media only screen and (min-width: 690px) and (max-width: 999px) {
				.nectar-slider-wrap[data-full-width="true"] .swiper-slide .content p, 
				.nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content p, 
				.full-width-content .vc_span12 .swiper-slide .content p {
					font-size: <?php if(!empty($nectar_options['home_slider_caption_font_size']) && $nectar_options['home_slider_caption_font_size'] != '-') echo intval($nectar_options['home_slider_caption_font_size'])*0.7 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo intval($the_line_height)*0.7 . 'px!important' ?>;
				}
			}

			@media only screen and (max-width: 690px) {
				body .nectar-slider-wrap[data-full-width="true"] .swiper-slide .content p, 
				body .nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content p, 
				body .full-width-content .vc_span12 .swiper-slide .content p {
					font-size: <?php if(!empty($nectar_options['home_slider_caption_font_size']) && $nectar_options['home_slider_caption_font_size'] != '-') echo intval($nectar_options['home_slider_caption_font_size'])*0.7 . 'px!important' ?>;
					line-height: <?php if($the_line_height) echo intval($the_line_height)*0.7 . 'px!important' ?>;
				}
			}

	<?php } // attrs in use ?>	


	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Testimonial Font
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['testimonial_font_style']);
	( intval( substr($nectar_options['testimonial_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['testimonial_font_size'],0,-2)) + 19 .'px!important' : $line_height = null; 
	
	if( $nectar_options['testimonial_font_family']['attrs_in_use'] ) {
		
			echo 'blockquote, 
			.testimonial_slider blockquote, 
			.testimonial_slider blockquote span, 
			.testimonial_slider[data-style="minimal"] blockquote span:not(.title), 
			.testimonial_slider[data-style="minimal"] blockquote,  
			.testimonial_slider[data-style="minimal"] .controls { '; 
				
				// Output font properties.
				nectar_output_font_props('testimonial_font', $line_height, $nectar_options);
				
			echo ' }'; ?>

	<?php } // attrs in use ?>	
	
	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Woo Product Title
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['nectar_woo_shop_product_title_font_style']);
	( intval( substr($nectar_options['nectar_woo_shop_product_title_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['nectar_woo_shop_product_title_font_size'],0,-2)) + 10 .'px!important' : $line_height = null;  
	
	if( $nectar_options['nectar_woo_shop_product_title_font_family']['attrs_in_use'] ) {
		
			echo '.woocommerce ul.products li.product .woocommerce-loop-product__title, 
			.woocommerce ul.products li.product h3, .woocommerce ul.products li.product h2,
			.woocommerce ul.products li.product h2, .woocommerce-page ul.products li.product h2 { '; 
				
				// Output font properties.
				nectar_output_font_props('nectar_woo_shop_product_title_font', $line_height, $nectar_options);
				
			echo ' }'; ?>
			
	<?php } // attrs in use ?>	
	

	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Woo Product Secondary
	/*-------------------------------------------------------------------------*/
	$styles = explode('-', $nectar_options['nectar_woo_shop_product_secondary_font_style']);
	( intval( substr($nectar_options['nectar_woo_shop_product_secondary_font_size'],0,-2) ) > 8 ) ? $line_height = intval(substr($nectar_options['nectar_woo_shop_product_secondary_font_size'],0,-2)) + 10 .'px!important' : $line_height = null; 
	
	if( $nectar_options['nectar_woo_shop_product_secondary_font_family']['attrs_in_use'] ) {
				
			echo '.woocommerce .material.product .product-wrap .product-add-to-cart .price .amount, 
			.woocommerce .material.product .product-wrap .product-add-to-cart a,
			.woocommerce .material.product .product-wrap .product-add-to-cart a > span, 
			.woocommerce .material.product .product-wrap .product-add-to-cart a.added_to_cart,
			html .woocommerce ul.products li.product.material .price, 
			.woocommerce ul.products li.product.material .price ins, 
			.woocommerce ul.products li.product.material .price ins .amount,
			.woocommerce-page ul.products li.product.material .price ins span, 
			.material.product .product-wrap .product-add-to-cart a span, 
			html .woocommerce ul.products .text_on_hover.product .add_to_cart_button,
			.woocommerce ul.products li.product .price, .woocommerce ul.products li.product .price ins, 
			.woocommerce ul.products li.product .price ins .amount, 
			html .woocommerce .material.product .product-wrap .product-add-to-cart a.added_to_cart,
			.text_on_hover.product a.added_to_cart, .products li.product.minimal .product-meta .price, 
			.products li.product.minimal .product-meta .amount { '; 
				
				// Output font properties.
				nectar_output_font_props('nectar_woo_shop_product_secondary_font', $line_height, $nectar_options);
				
			echo ' }'; ?>

		<?php } // attrs in use ?>	
	
	
	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Sidebar, Carousel & Nectar Button Header Font
	/*-------------------------------------------------------------------------*/
	$styles      = explode('-', $nectar_options['sidebar_footer_h_font_style']);
	$line_height = intval(substr($nectar_options['sidebar_footer_h_font_size'],0,-2)); 

	if( $nectar_options['sidebar_footer_h_font_family']['attrs_in_use'] ) {
				
			echo '#footer-outer .widget h4, 
      #sidebar h4, 
      #call-to-action .container a, 
      .uppercase, 
      .nectar-post-grid-wrap .load-more,
      .nectar-button, 
      .nectar-button.medium, 
      .nectar-button.small,
      .nectar-view-indicator span,
      .nectar-3d-transparent-button, 
      .swiper-slide .button a, 
      .play_button_with_text span[data-font*="btn"],
      body .widget_calendar table th, 
      body #footer-outer #footer-widgets .col .widget_calendar table th, 
      body:not([data-header-format="left-header"]) #top nav > ul > .megamenu > ul > li > a, 
      .carousel-heading h2, body .gform_wrapper .top_label .gfield_label, 
      body .vc_pie_chart .wpb_pie_chart_heading, 
      #infscr-loading div, #page-header-bg .author-section a, 
      .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, 
      .ascend input[type="submit"], .ascend button[type="submit"], 
      .material input[type="submit"], 
      .material button[type="submit"], 
      body.material #page-header-bg.fullscreen-header .inner-wrap >a, 
      #page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a,
      .widget h4, .text-on-hover-wrap .categories a, 
      .text_on_hover.product .add_to_cart_button, 
      .woocommerce-page .single_add_to_cart_button, 
      .woocommerce div[data-project-style="text_on_hover"] .cart .quantity input.qty, 
      .woocommerce-page #respond input#submit, 
      .meta_overlaid article.post .post-header h3, 
      .meta_overlaid article.post.quote .post-content h3, 
      .meta_overlaid article.post.link .post-content h3, 
      .meta_overlaid article .meta-author a, 
      .pricing-column.highlight h3 .highlight-reason,
      .blog-recent[data-style="minimal"] .col > span, 
      body .masonry.classic_enhanced .posts-container article .meta-category a, 
      body .masonry.classic_enhanced .posts-container article.wide_tall .meta-category a, 
      .blog-recent[data-style*="classic_enhanced"] .meta-category a, 
      .nectar-recent-posts-slider .container .strong, 
      .single .heading-title[data-header-style="default_minimal"] .meta-category a, 
      .nectar-fancy-box .link-text, 
      .woocommerce-account .woocommerce-form-login button.button, 
      .woocommerce-account .woocommerce-form-register button.button,
      .post-area.standard-minimal article.post .post-meta .date a, 
      .post-area.standard-minimal article.post .more-link span, 
      .nectar-slide-in-cart .widget_shopping_cart .buttons a, 
      .material.product .product-wrap .product-add-to-cart a .price .amount, 
      .material.product .product-wrap .product-add-to-cart a span, 
      ul.products li.material.product span.onsale,
      body[data-button-style="rounded"] #pagination > a, 
      html body #pagination > span, 
      .woocommerce nav.woocommerce-pagination ul li a, 
      html body nav.woocommerce-pagination ul li a, 
      html body nav.woocommerce-pagination ul li span, 
      .woocommerce .material.product .product-wrap .product-add-to-cart a.added_to_cart,
      .woocommerce-page ul.products li.product.material .price, 
      .woocommerce-page ul.products li.product.material .price ins span, 
      body[data-form-submit="see-through-2"] input[type=submit], 
      body[data-form-submit="see-through-2"] button[type=submit], 
      body[data-form-submit="see-through"] input[type=submit], 
      body[data-form-submit="see-through"] button[type=submit], 
      body[data-form-submit="regular"] input[type=submit] body[data-form-submit="regular"] button[type=submit], 
      .nectar_team_member_overlay .team_member_details .title, 
      body:not([data-header-format="left-header"]) #top nav > ul > .megamenu > ul > li > ul > li.has-ul > a, 
      .nectar_fullscreen_zoom_recent_projects .project-slide .project-info .normal-container > a,
      .nectar-hor-list-item .nectar-list-item-btn, 
      .nectar-category-grid-item .content span.subtext, 
      body .woocommerce .nectar-woo-flickity[data-controls="arrows-and-text"] .nectar-woo-carousel-top, 
      .products li.product.minimal .product-add-to-cart a, 
      .woocommerce div.product form.cart .button, 
      .nectar-quick-view-box .nectar-full-product-link, 
      .woocommerce-page .nectar-quick-view-box button[type="submit"].single_add_to_cart_button, 
      #header-outer .widget_shopping_cart a.button,
      .woocommerce .classic .product-wrap .product-add-to-cart .add_to_cart_button, 
      .text_on_hover.product .nectar_quick_view, 
      .woocommerce .classic .product-wrap .product-add-to-cart .button.product_type_variable, 
      .woocommerce.add_to_cart_inline a.button.add_to_cart_button, 
      .woocommerce .classic .product-wrap .product-add-to-cart .button.product_type_grouped, 
      .woocommerce-page .woocommerce p.return-to-shop a.wc-backward, 
      .yikes-easy-mc-form .yikes-easy-mc-submit-button { '; 
				
				// Output font properties.
				nectar_output_font_props('sidebar_footer_h_font', 'bypass', $nectar_options);
				
			echo ' }'; ?>
			
	<?php } // attrs in use ?>	


	<?php 
	/*-------------------------------------------------------------------------*/
	/*	Team member names & heading subtitles
	/*-------------------------------------------------------------------------*/
	$styles      = explode('-', $nectar_options['team_member_h_font_style']);
	$line_height = intval(substr($nectar_options['team_member_h_font_size'],0,-2)); 
	
	if( $nectar_options['team_member_h_font_family']['attrs_in_use'] ) {
			
			echo '.team-member h4, .row .col.section-title p, 
			.row .col.section-title span, #page-header-bg .subheader, 
			.nectar-milestone .subject, .testimonial_slider blockquote span { '; 
				
				// Output font properties.
				nectar_output_font_props('team_member_h_font', 'bypass', $nectar_options);
						
			echo '}'; 
			
			echo 'article.post .post-meta .month { line-height:'. ($line_height + -6) . 'px; }'; 
			
	 } // attrs in use 	
	
	
?>