/** 
 (useCssVariablesGlobalRootReplace = true) 
 *
 *	ALERT! 
 *		Only global variables may be declared and must be placed inside the :root section! 
 *		Other native CSS Variable / CSS Custom Properties functionality like 
 *		    the possibility of changing the variables locally (local scope), 
 *		    declaring variables inline, 
 *		    var() fallbacks etc 
 *		will not work with this set up!
 *		The variables will be extracted and be physically replaced where they are use in the css 
 *		so that older browsers that do not support CSS Variables will see the same result when the 
 *		CSS file is generated on the live site.
 *
 */

body.debug{
	/* visibility: visible; */
}

:root{
	/** = START === COLOR KEY === */

		/** TEXT BODY - (TEXT color:body text) */
		--color-text-body: #2b3f4e;
	
		/** TEXT HEADING */
		--color-text-heading: #192733;
	
		/** LINK - (link, button, link gradient,button border) */
		--color-link:		#04406b;
		--color-link-dark:	#033356;
	
		/** PRICE - (Pricing, some titles, button, button border) */
		--color-price:		#c22421;
		--color-price-dark:	#b61d1a;
	
		/** ALERT - (button, button gradient, button border) */
		--color-alert:		#ff5400;
		--color-alert-dark:	#ff3200;
	
		/** WARNING ERROR */
		--color-warning:		#ef2c02;
		--color-warning-dark:	#e10f01;

		/** RATING */
		--color-rating:			#ffbf05;
		--color-rating-dark:	#ffb204;

		/** BASE - (active state) */
		--color-base:		#0f70b7;
		--color-base-dark:	#0c5aa9;
	
		/** DARKGRAY - (Usually same as TEXT BODY) */
		--color-darkgray:		#2b3f4e;
		--color-darkgray-dark:	#22323e;
	
		/** MIDGRAY - (menu, menu gradient) */
		--color-midgray:		#7c99af;
		--color-midgray-dark:	#63859f;
	
		/** LIGHTGRAY - (body bg, dotted heading border, search-text, search-text input border bg etc) */
		--color-lightgray:		#e9f3fb;
		--color-lightgray-dark:	#daebf8;

		/** PRIMARY BACKGROUND - dark text on light background or light text on dark background ('Dark Mode') */
		--color-background-text: #fff;
		/* --color-background-text: #000; */
	
		/** ACCENT - (CTA 'Call to action': button, button border, gradient) */
		--color-accent:			#04406b;
		--color-accent-dark:	#033356;
	
		/** COMPLEMENTARY 1 - (button, button gradient, button border) */
		--color-1:		#2ea8ff;
		--color-1-dark:	#2597ff;
	
		/** COMPLEMENTARY 2 - (button, button gradient, button border) */
		--color-2:		#ffbf05;
		--color-2-dark:	#ffb204;

		/** SLOGAN - (button, button gradient, button border) */
		--color-text-slogan: 				#0f70b7;
		--color-background-slogan:			#b8def9;
		--color-background-slogan-dark:		#aad7f8;


		/** SEARCH ENGINE - (button, button gradient, button border) */
		--color-text-search-engine: 				#033356;
		/* --color-background-search-engine:			#2ea8ff; */
		--color-background-search-engine:			#f3edee;
		--color-background-search-engine-dark:		#2597ff;



		--color-print-text-body:		var(--color-text-body);
		--color-print-text-heading:		var(--color-text-heading);
		--color-print-link:				var(--color-link);
		--color-print-rating:			var(--color-rating);
		--color-print-lightgray:		var(--color-lightgray);
		--color-print-lightgray-dark:	var(--color-lightgray-dark);


	/** = END === color KEY === */

	/** = START === font KEY === */

		/** FONT BODY - (TEXT color:body text) */		

		/* --font-family-body: 'Cambay',sans-serif; */
		/* --font-weight-body: 400; */
		/* --font-weight-body: 700; */		
		--font-family-body: 'Open Sans',sans-serif;		
		--font-weight-body: 300;
		/* --font-weight-body: 400; */

		/* --font-family-body-bold: 'Cambay',sans-serif; */
		/* --font-weight-body-bold: 700; */
		--font-family-body-bold: 'Open Sans',sans-serif;
		/* --font-weight-body-bold: 400; */
		--font-weight-body-bold: 600;

		/** FONT HEADING */
		/* --font-family-heading: 'Ubuntu',sans-serif; */
		/* --font-weight-heading: 400; */
		/* --font-weight-heading: 500; */

		--font-family-heading: 'Maven Pro',sans-serif;
		--font-weight-heading: 500;
		/* --font-weight-heading: 600; */		
		/* --text-transform-heading: uppercase; */
		--text-transform-heading: none;


		/** FONT HEADING V2 */
		--font-family-heading-2: 'Maven Pro',sans-serif;
		--font-weight-heading-2: 500;
		--text-transform-heading-2: uppercase;


		/** FONT SLOGAN */
		--font-family-slogan: 'Maven Pro',sans-serif;
		--font-weight-slogan: 500;
		/* --font-weight-slogan: 600; */
		--font-style-slogan:normal;		
		--text-transform-slogan: uppercase;
		/* --text-transform-slogan: none; */


		/** FONT QUOTATION */
		--font-family-quotation: cursive;
		--font-weight-quotation: 400;
		--font-style-quotation:italic;
		--text-transform-quotation: none;

	/** = END === font KEY === */	

	
}