body{
	background-color: $body-bg;
	min-height: 100vh;
	overflow-x: hidden;
	@extend .regular;
	@extend .black;
	font-size: 16px;
}

#front{
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	justify-content: space-between;
}

a{
	color: $white;
}

a.black{
	color: $black;
}

%header{
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	height: $header-desktop-height;
	width: 100%;

	.logo{
		img{
			height: 42px;
		}
	}
}

$barreHeight: 5px;

.barre{
	margin-left: 2px;
	margin-bottom: 3px;
	width: 36px;
	height: $barreHeight;
	background-color: $black;

	&.short{
		width: 27px;

		&.right{
			&:after{
				margin-left: 27px;
			}
		}
	}

	&.medium{
		width: 32px;

		&.right{
			&:after{
				margin-left: 32px;
			}
		}
	}

	&.left{
		&:before{
			content:'';
			position: absolute;
			border-style: solid;
			width: 3px;
			border-width: 0 0 $barreHeight 2px;
			border-color: transparent transparent $black transparent;
			margin-left: -2px;
		}
	}

	&.right{
		&:after{
			content:'';
			position: absolute;
			border-style: solid;
			width: 3px;
			margin-left: 36px;
			border-width: $barreHeight 2px 0 0;
			border-color: $black transparent transparent transparent;
		}
	}
}


.breadcrumb{
	margin-bottom: 55px!important;

	.element{
		a{
			padding: 10px 0;
			color: $black;

			&:after{
				content: '>';
				display: block;
				padding: 0 7px;
			}
		}

		&:last-child a{
			text-decoration: underline;

			&:after{
				content:'';
			}
		}

	}
}
