/** 
 (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: #283842;
	
		/** TEXT HEADING */
		--color-text-heading: #172229;
	
		/** LINK - (link, button, link gradient,button border) */
		--color-link:		#005180;
		--color-link-dark:	#004167;
	
		/** PRICE - (Pricing, some titles, button, button border) */
		--color-price:		#ee4b1f;
		--color-price-dark:	#eb3c19;
	
		/** ALERT - (button, button gradient, button border) */
		--color-alert:		#0b8291;
		--color-alert-dark:	#09697b;
	
		/** WARNING ERROR */
		--color-warning:		#ee0909;
		--color-warning-dark:	#ce0606;

		/** RATING */
		--color-rating:			#f1be12;
		--color-rating-dark:	#eeb10e;

		/** BASE - (active state) */
		--color-base:		#003562;
		--color-base-dark:	#002a4e;
	
		/** DARKGRAY - (Usually same as TEXT BODY) */
		--color-darkgray:		#283842;
		--color-darkgray-dark:	#202d35;
	
		/** MIDGRAY - (menu, menu gradient) */
		--color-midgray:		#778f9e;
		--color-midgray-dark:	#5f798b;
	
		/** LIGHTGRAY - (body bg, dotted heading border, search-text, search-text input border bg etc) */
		--color-lightgray:		#f8f9fa;
		--color-lightgray-dark:	#eceff2;

		/** 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:			#246af5;
		--color-accent-dark:	#1d55f3;
	
		/** COMPLEMENTARY 1 - (button, button gradient, button border) */
		--color-1:		#1e5489;
		--color-1-dark:	#184371;
	
		/** COMPLEMENTARY 2 - (button, button gradient, button border) */
		--color-2:		#f1be12;
		--color-2-dark:	#eeb10e;


		/** BASE - (active state) */
		--color-base2:		#00a1ff;
		--color-base2-dark:	#008eff;

		--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: 'Open Sans',sans-serif;
		--font-weight-body: 300;

		--font-family-body-bold: 'Open Sans',sans-serif;
		--font-weight-body-bold: 600;

		/** FONT HEADING */
		--font-family-heading: 'Raleway', sans-serif;
		/* --font-weight-heading: 600; */
		--font-weight-heading: 700;
		--text-transform-heading: uppercase;
		/* --text-transform-heading: none; */


		/** FONT HEADING 1 */
		--font-family-heading-1: 'Raleway', sans-serif;
		/* --font-weight-heading-1: 800; */
			--font-weight-heading-1: 900;
		--text-transform-heading-1: uppercase;
		/* --text-transform-heading-1: none; */

		/** FONT HEADING 2 */
		--font-family-heading-2: 'Raleway', sans-serif;
		--font-weight-heading-2: 700;
		--text-transform-heading-2: none;

		/** FONT QUOTATION */
		--font-family-quotation:'Dancing Script',cursive;
		--font-weight-quotation: 600;
		/* --font-style-quotation:italic; */
		--font-style-quotation:normal;
		--text-transform-quotation: none;

		/** FONT BUTTON */
		/* --font-family-button: var(--font-family-heading); */
		/* --font-weight-button: var(--font-weight-heading); */
		/* --text-transform-button: var(--text-transform-heading); */
		--font-family-button: var(--font-family-body-bold);
		--font-weight-button: var(--font-weight-body-bold);
/* 		--text-transform-button: uppercase; */
		--text-transform-button: none;



	/** = END === font KEY === */	

	
}