.form-patient {
	text-align: center;
	position: relative;
	margin-top: 20px
}

.form-patient fieldset {
	background: white;
	border: 0 none;
	border-radius: 0.5rem;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding-bottom: 20px;
	position: relative
}

.finish {
	text-align: center
}

.form-patient fieldset:not(:first-of-type) {
	display: none
}

.form-patient button.next-step,
.form-patient button.previous-step,
.form-patient button.finish-step,
.form-patient button.btn-outline-secondary {
  padding: 10px 50px !important;
}

.text {
	color: #2F8D46;
	font-weight: normal
}

#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	color: lightgrey;
	display: flex;
	justify-content: space-around;
}

#progressbar .active {
	color: #2F8D46;
}

#progressbar li {
	list-style-type: none;
	font-size: 15px;
	float: left;
	position: relative;
	font-weight: 400
}

#progressbar .step:before {
	content: "";
}

/* #progressbar #step2:before {
	content: "2"
}

#progressbar #step3:before {
	content: "3"
}

#progressbar #step4:before {
	content: "4"
} */

#progressbar li:before {
	width: 45px;
	height: 45px;
	line-height: 40px;
	display: block;
	font-size: 20px;
	color: #ffffff;
	background: lightgray;
	border-radius: 50%;
	margin: 0 auto 10px auto;
	padding: 2px
}

#progressbar li:after {
	content: '';
	height: 2px;
	background: lightgray;
	position: absolute;
	left: 0;
	top: 25px;
	z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
	background: #2F8D46;
	color: white;
  content: "\2713";
}

.progress {
	height: 5px;
  margin-top: -86px;
  margin-bottom: 25px;
}

.progress-bar {
	background-color: #2F8D46;
  height: 5px;
}


/* MOBILE */
@media (max-width: 1200px) {
	#progressbar {
		padding: 0px;
	}
	#progressbar li {
		font-size: 8pt;
	}
	#progressbar li:before {
		width: 30px;
		height: 30px;
		line-height: 25px;
	}
	.progress {
		height: 5px;
	  margin-top: -71px;
	  margin-left: 27px !important;
	  margin-bottom: 25px;
	}
	#form-patient fieldset button {
		font-size: 9pt;
	}
}
