/* .............................................................................
CONFIGS
................................................................................

EXPLICATION DES FICHIERS :
- Dev : assets/css/
- Prod : task "grunt buildcss" pour builder le CSS build/css/main.css


COULEURS :
- Voir les vars plus bas.


TRANSITION :
- cubic-bezier(0.4, 0, 0.2, 1)


NAMING CONVENTIONS :
- Blocks = section d'une page, ex : .bMain, .bBoxesList.
- Items = partie importante reutilisable, ex : .iBox, .iAccordion.
- Text = style precis pour texte, ex : .tBig, .tUpper


REFERENCES :
Desktop-first :
@media (max-width:1999px) {}    124.99rem
@media (max-width:1499px) {}    93rem
@media (max-width:1199px) {}    75rem
@media (max-width:991px) {}     62rem
@media (max-width:736px) {}     46rem

Mobile-first :
@media (min-width:737px) {}     46.01rem
@media (min-width:992px) {}     62.01rem
@media (min-width:1200px) {}    75.01rem
@media (min-width:1500px) {}    93.01rem
@media (min-width:2000px) {}    125rem
*/


/*
COLORS */
:root {
	/* Main colors */
	--color-base: #808080;
	--color-base-on-dark: #FFF;
	--color-orange: #f7941d;
	--color-green: #006350;
	--color-blue: #4234DF;
	--color-blue-2: #4234DE;
	--color-blue-strong: #1D3DBA;
	--color-yellow: #FFDF33;
	--color-green-light: #3BAE49;
	--color-orange-crush: #FF9829;

	/* BG */
	--color-bg-base: #fff;
}



/*
BASE WIDTHS
L'application des valeurs est dans base.css. */
:root {
	--width-std: 9.5vw;

	--width-std-left: var(--width-std);
	--width-std-right: var(--width-std);
}

	/* Ultra large, on restreint la largeur maximale */
	@media (min-width:125rem) {
		:root {
			--width-std: 9.5rem;
		}
	}

	/* Mobile */
	@media (max-width:46rem) {
		:root {
			--width-std: 8vw;
		}
	}



/*
BASE SPACINGS
L'application des valeurs est dans site-blocks.css. */
:root {
	--base-spacing-top: 7em;
	--base-spacing-bottom: 7em;
}

	@media (max-width:62rem) {
		:root {
			--base-spacing-top: 5.5em;
			--base-spacing-bottom: 5.5em;
		}
	}

	@media (max-width:46rem) {
		:root {
			--base-spacing-top: 4em;
			--base-spacing-bottom: 4em;
		}
	}