.wizard {
	background: #00a19a;
	color: #fff;
	padding: 20px 0 80px;
	min-height: calc(100vh - 100px);
	display: flex;
}

@media screen and (min-width: 1024px) {
	.wizard {
		min-height: 640px;
		padding: 20px;
	}
}

.wizard__inner {
	position: relative;
	opacity: 1;
	transition: opacity 0.4s;
	margin:0px auto;
}

.wizard.fade .wizard__inner {
	opacity: 0;
}

@media screen and (min-width: 1024px) {
	.wizard__inner {
		padding: 30px;
	}

	.wizard__inner::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		border: 1px solid #fff;
		border-radius: 7px;
		pointer-events: none;
	}
}

.step-nums {
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-justify-content: center;
	-webkit-align-items: flex-end;

	justify-content: center;
	align-items: flex-end;
}

@media screen and (min-width: 1024px) {
	.step-nums {
		margin: 0 auto 40px;
	}
}

.step-nums__num {
	font-size: 1.4rem;
	text-align: center;
	margin: 0 5px;
	text-transform: uppercase;
}

.step-nums__num::after {
	content: "";
	display: block;
	width: 74px;
	height: 5px;
	border-radius: 3px;
	background: #fff;
	margin: 5px 0 0;
}

.step-nums__num.active ~ .step-nums__num {
	opacity: 0.5;
}

.wizard__heading {
	color: #fff;
	text-align: center;
	font-size: 3.6rem;
	max-width: 100%;
	margin: 0.5em auto;
}

@media screen and (min-width: 1024px) {
	.wizard__heading {
		font-size: 4.8rem;
		margin: 1em auto;
	}
}

.wizard__subheading {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 1em auto;
	text-align: center;
	color: #fff;
}

@media screen and (min-width: 1024px) {
	.wizard__subheading {
		font-size: 2.4rem;
		margin: 1em auto 1.3em;
	}

	.wizard__heading + .wizard__subheading {
		margin-top: -0.8em;
	}
}

.wizard__back {
	position: absolute;
	left: 0;
	bottom: -60px;

	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-justify-content: flex-start;
	-webkit-align-items: center;


	
	justify-content: flex-start;
	align-items: center;
	text-transform: uppercase;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}

@media screen and (min-width: 1024px) {
	.wizard__back {
		bottom: auto;
		left: 20px;
		top: 40px;
	}
}

.wizard__back img {
	margin: 0 10px 0 0;
}

.wizard__inputs {
	max-width: 320px;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.wizard__inputs--twin {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 30px;
		max-width: 630px;
	}
}

.wizard__btn {
	text-align: center;
}

.wizard__btn .btn {
	min-width: 320px;
}
