main {
	min-height: calc(100vh - 240px);
}

#form_appointment {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 380px;
	margin: auto;
	background-color: #fff;
	width: 60%;
	transition: ease all 0.75s;
	font-family: Helvetica, sans-serif;
}

#form_appointment legend {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	padding: 0 10px;
}

#form_appointment > fieldset {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	background-color: #fff;
	min-height: 380px;
	width: 100%;
	transition: ease all 0.75s;
	font-family: Helvetica, sans-serif;
	border: none;
}

#form_appointment fieldset:last-of-type > div {
	display: flex;
	justify-content: center;
	align-items: center;
}

#form_appointment > fieldset {
	display: none;
}

#form_appointment fieldset > div:not(#appointment_text) {
	display: flex;
	flex-direction: column;
	width: 290px;
}

#form_appointment fieldset > div > p {
	font-size: 20px;
	font-weight: 700;
	margin: 10px 0;
	text-align: center;
}

#form_appointment fieldset > div:last-of-type {
	margin-bottom: 20px;
}

#insurance_glass_radio {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

#insurance_glass_radio > div {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#form_appointment fieldset > div:not(#file_upload) > label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	background-color: #E52322;
	color: white;
	font-size: 15px;
	margin-top: 10px;
	margin-bottom: 5px;
	border-radius: 50px;
	padding: 5px 10px;
}

#form_appointment input:not([type="radio"]):not([type="file"]) {
	height: 36px;
	width: 290px;
	font-size: 18px;
	margin-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid #000;
	border-radius: 5px;
}

#form_appointment input:focus {
	outline: none;
}

#form_appointment input[type="radio"] {
	height: 20px;
	width: 20px;
	margin: 5px;
}

#insurance_glass fieldset > div {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 0;
	background-color: #fff;
	width: 290px;
	transition: ease all 0.75s;
	font-family: Helvetica, sans-serif;
}

#comment fieldset label,
#appointment_type fieldset label {
	width: 290px;
}

#comment textarea {
	height: 100px;
	width: 290px;
	font-size: 18px;
	margin-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid #000;
	border-radius: 5px;
	resize: none;
}

#form_appointment > div > div {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 0;
	background-color: #fff;
	width: 290px;
	transition: ease all 0.75s;
	font-family: Helvetica, sans-serif;
}

#form_appointment > div > button {
	height: 36px;
	width: 290px;
	font-size: 18px;
	margin: 20px 0;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid #000;
	border-radius: 5px;
	background-color: #E52322;
	color: white;
}

#form_appointment > div > button:hover {
	background-color: #E52322;
	color: white;
}

#stepContainer {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	width: 290px;
	transition: ease all 0.75s;
	font-family: Helvetica, sans-serif;
	text-align: center;
	margin: 0 auto;
}

/* Make circles that indicate the steps of the form: */
.step {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbbbbb;
	border: none;
	border-radius: 50%;
	display: inline-block;
	opacity: 0.5;
}

/* Mark the active step: */
.step.active {
	opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
	background-color: #04AA6D;

}

/* Bouton Import fichier */
#file_upload {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 60px;
	min-width: 250px;
}

#file_upload > input {
	position: absolute;
	width: 250px;
	height: 45px;
	overflow: hidden;
	opacity: 0;
	z-index: 1;
}

#file_upload > input:focus + label {
	outline: #000 dotted 1px;
	-webkit-focus-ring-color: auto 5px;
}

#file_upload > input + label {
	display: inline-block;
	padding: 10px 20px;
	font-size: 20px;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	text-overflow: ellipsis;
	overflow: hidden;
	height: 45px;
	max-width: 250px;
	background-color: #000;
	color: #f1e5e6;
	border-radius: 10px;
}

#file_upload > input + label svg {
	height: 17px;
	width: 20px;
	margin-top: -4px;
	margin-right: 4px;
	vertical-align: middle;
	fill: currentColor;
}