/*
Shows progress through a multi-step process

```html
<ul class="steps">
	<li class="steps__step steps__current"><span class="steps__icon">1</span> What's wrong</li>
	<li class="steps__step"               ><span class="steps__icon">2</span> Where & when</li>
	<li class="steps__step"               ><span class="steps__icon">3</span> Your details</li>
	<li class="steps__step"               ><span class="steps__icon">4</span> Review & confirm</li>
</ul>
```
*/

.steps {
	padding: 0;
	margin: 46px 0;
	display: flex;
}

ul.steps {
	margin: 46px auto;
	max-width: 850px;
}

@media (max-width: 480px) {
	.steps,
	ul.steps {
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

.steps__step {
	box-sizing: border-box;
	position: relative;
	padding: 0 16px;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	flex: 1 1 auto;
}

li.steps__step {
	list-style: none;
}

/* Override for main.css:1757 */
li.steps__step.steps__step {
	list-style: none;
	padding: 0 16px;
	line-height: 1.15;
	flex: 1;
}

.steps__step::before {
	content: '';
	position: absolute;
	display: block;
	top: 24px;
	left: 0;
	width: 100%;
	height: 2px;
	z-index: 0;
	background-color: #000;
}

.steps__step:first-child::before {
	width: 50%;
	left: 50%;
}

.steps__step:last-child::before {
	width: 50%;
}

.steps__icon {
	margin-right: 10px;
	height: 48px;
	width: 48px;
	border-radius: 50%;
	text-align: center;
	font-size: 25px;
	line-height: 48px;
	position: relative;
	display: block;
	margin: 0 auto 16px auto;
	border: 2px solid transparent;
}

.steps__incomplete .steps__icon {
	border-color: black;
	background: #fff;
}

.steps__complete .steps__icon {
	color: #fff;
	background: #63666a;
}

.steps__current .steps__icon {
	color: #fff;
	background: #000;
}

@media screen and (max-width: 480px) {
	.steps__step {
		font-size: 18px;
	}
	li.steps__step.steps__step {
		padding: 0;
	}
}

@media screen and (max-width: 360px) {
	.steps__step {
		font-size: 16px;
	}
}
