
/* IMPORT : RESET & FONTS
----------------------------------------------------------- */

@import url("reset.css");

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,400i,600,600i,700,700i');



/* GLOBAL : LAYOUT 
----------------------------------------------------------- */


body {
	background-color: rgba(245,245,245,1);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 100%;
	line-height: 1.5;
	color: rgb(30,30,30);
}

#stage {
	display: flex;
	flex: 1;
	position: relative;
	width: 100%;
	min-height: 100vh;
}

body.state--toolbar #stage {
	padding-top: 3.5rem;
}

.flex--center {
	justify-content: center;
	align-items: center;
}

	/* Navigation / Content */

	#navigation,
	#content {
		position: relative;
	}

	.column--left,
	.column--right {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		flex: 1;
	}
	
	.column--left {
		flex: 0 0 22rem;
	}
	
	.column--right {
		flex: 1;
	}
	
	.column--center {
		display: block;
		position: relative;
		width: 100%;
		margin: 0 auto;
		max-width: 60rem;
	}
	
	.column-wrapper {
		flex: 1;
	}
	
	


/* LOGIN
----------------------------------------------------------- */

section#login {
	display: block;
	position: relative;
}
		
	#login__logo {
		display: block;
		position: absolute;
		top: -5.5rem;
		left: 50%;
		transform: translate(-50%,0);
		width: 10rem;
	}





/* HEADER (???)
----------------------------------------------------------- */

#header {
	display: flex;
	flex: 1;
	position: relative;
	width: 100%;
}

body.login #header {
	position: fixed;
	top: 0;
}







.hidden {
	display: none;
}



/* GLOBAL : CONTAINER
----------------------------------------------------------- */


.container {
	display: block;
	position: relative;
	width: 100%;
	padding: 0 2rem;
}

.c-sticky-top {
	position: -webkit-sticky;
	position: sticky;
	top: 3.5rem;
}

.c-sticky-bottom {
	position: -webkit-sticky;
	position: sticky;
	bottom: 2rem;
}





/* GLOBAL : TYPO 
----------------------------------------------------------- */

strong {
	font-weight: 600;
}

.heading-xl {
	display: block;
	font-size: 3rem;
	font-weight: 600;
	padding: 1.5rem 0;
}

.heading-l {
	display: block;
	font-weight: 600;
	font-size: 2rem;
}

.heading-m {
	display: block;
	font-weight: 600;
	font-size: 1.5rem;
}

.heading-s {
	display: block;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8125rem;
	line-height: 1.5rem;
	padding: 1rem 0;
	color: #888;
}

label {
	display: block;
	font-weight: 500;
	font-size: 0.8125rem;
	margin-bottom: 0.25rem;
	color: #888;
}






/* GLOBAL : LINKS & NAVIGATION
----------------------------------------------------------- */

a {
	color: #444;
	transition: color 300ms ease;
}

a:hover {
	color: #9DBD1E;
}





/* GLOBAL : RESPONSIVENESS
----------------------------------------------------------- */


/* 1240PX (S) */

@media screen and (max-width: 77.5em) {
	
	.column--left {
		display: none;
	}
	
	.column--right {
		width: 100%;
	}
	
}


/* 1120PX (S) */

@media screen and (max-width: 70em) {
	
	html {
		font-size: 90% !important;
	}
	
}




