/*
	CART > VIEW > NAV
*/
.step-wrapper {
	display: flex; display: -webkit-flex; 
	flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
	justify-content: center; -webkit-justify-content: center;
	width: 100%;
	background: #f5f5f5;
	border: 1px solid #dedede;
	border-top: none;
}
	.step-wrapper .step {
		display: block;
		font-family: 'DIN Bold';
		font-size: 15px;
		line-height: 1.0;
		color: #8e8888;
		padding: 9px 25px;
		border-right: 1px solid #dedede;
	}
		.step-wrapper .step:last-child {
			border-right: none;
		}
		.step-wrapper .step.is-active {
			background-color: #c53521;
			border-right: 1px solid #c53521;
			color: #FFF;
		}
		.step-wrapper .step.is-done {
			color: #c53521;
		}


.ancre-nav {
	position: fixed;
	top: 150px;
	right: 100px;
	width: 14px;
	display: flex; display: -webkit-flex; 
	flex-flow: column; -webkit-flex-flow: column;
	justify-content: space-around; -webkit-justify-content: space-around;
	background: url('../../_img/modules/ancre-bg.png') repeat-y top center;
	z-index: 1000;
}
	.ancre-nav a {
		width: 14px;
		height: 14px;
		background: url('../../_img/modules/ancre-white.png') no-repeat top left;
		display: block;
		margin: 0;
		margin-bottom: 8px;
		position: relative;
		z-index: 1001;
	}
		.ancre-nav a.active {
			background: url('../../_img/modules/ancre-orange.png') no-repeat top left;
		}

		.ancre-nav a:last-child {
			margin-bottom: 0px;
		}