#form-container{
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-radius: 10px;
	align-items: center;
	font-family: Montserrat;
	width: 900px;
	border: 1px solid gray;
	padding-bottom: 24px;
	background: white;
	color: #58585b;
}

#form-container .specialites{
	display: flex;
}

.form-step {
	display: none;
}
.form-step.active {
	display: flex;
	gap: 16px;
	flex-direction: column;
	/*height: 160px;*/
	align-items: center;
}

.title{
	font-size: 24px;
	font-weight: 800;
	line-height: 30px;
	padding-top: 8px;
	text-align: center;
}

.progress{
	height: 8px;
	width: 100%;
	display: flex;
	background: #D6D6D6;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
}

.progress-step:first-of-type{
	border-top-left-radius: 25px;
	background: darkgoldenrod;
}
.progress-step:last-of-type{
	border-top-right-radius: 25px;
	border: 0;
}

.progress-step{
	border-right: 1px solid gray;
	width: 100%;
}

.progress-step:hover{
	background: darkgoldenrod;
	transition: background 0.3s;
}

.specialite{
	display: flex;
	flex-direction: column;
	align-items: center;
	border: solid 1px #D9D9D9;
	border-radius: 10px;
	padding: 16px;
	gap: 10px;
	cursor: pointer;
}

.specialite .text{
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
}
.specialite .icon{
	width: 40px;
	height: 40px;
	font-size: 40px;
}

.specialites{
	display: flex;
	gap: 10px;
}

.specialite:hover, .specialite.active{
	background: #f9f6ef;
	border-color: darkgoldenrod;
	transition: background 0.3s;
	color: #B8860B;
}

.prevnext p{
	display: flex;
	width: 100%;
	height: 18px;
	justify-content: space-between;
}

.prevnext a{
	color: #767676;
	text-decoration: none;
	font-size: 14px;
}
.prevnext a:hover{
	font-weight: bold
}

#btn-continue{
	display: flex;
	width: auto;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	gap: 10px;
	padding: 16px 24px;
	border-radius: 50px;
	flex-shrink: 0;
	margin: auto;
	font-weight: bold;
	font-size: 16px;
	background-color: #22305C !important;
	color: #fff !important;
	border: 0;
	cursor: pointer;
}

.arrow{
	width:16px;
	height:16px;
	/*
	background-color: white;
	-webkit-mask-image: url(arrow.svg);
	mask: url(arrow.svg) no-repeat center / contain;
	*/
}

.form-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.form-group label {
	display: block;
	margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
	/*min-width: 400px;*/
	padding: 10px;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	color: #22305C;
	min-height: auto;
	margin-top: auto;
}

.form-group textarea{
	height: 110px;
	
}

@media only screen and (min-width: 540px) {
    .form-group textarea{
        min-width: 480px;
    }
}

.form-group input{
	padding-left: 36px;
}

#contact-phone{
	background: url("https://beaubourg-avocats.fr/wp-content/uploads/2024/07/phone.png") no-repeat;
}
#contact-email{
	background: url("https://beaubourg-avocats.fr/wp-content/uploads/2024/07/mail.png") no-repeat;
}


.form-group input{
	background-position-y: center !important;
	background-position-x: 10px !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
	color: #999999;
}

@media only screen and (max-width: 960px) {
	#form-container{
		width : auto;
	}
	
  #form-container .specialites {
    flex-wrap: wrap;
    padding: 8px;
    justify-content: center;
	}
	
	#form-container .specialite{
		padding: 8px;
		flex-direction: row;
	}
	
	.title {
    font-size: 20px;
	}
	
	.specialite .text{
	    font-size: 14px;
	}
	

}

.prevnext{
    width: 100%;
}

.form-steps{
    padding: 0 16px;
}

.wpcf7-submit{ 
    display: none !important;
}

.wpcf7-response-output{
    text-align : center;
}