.filter{
	display: block;
    position: fixed;
    z-index: 9999999;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 20, 20, 0.20);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}
.filter.active{
	opacity: 1;
	pointer-events: all;
	transition:  all 0.3s;
}
.popup-configurateur, .popup-exist-project{
	position: fixed;
	display: inline-flex;
	padding: 43px 96px;
	flex-direction: column;
	align-items: center;
	gap: 23px;
	z-index: 99999999;
    top: 50%;
    left: 50%;
    background-color: white;
    transform: translate(-50%, -50%);
	border-radius: 0px;
	width: 1016px;
	opacity: 0;
	pointer-events: none;
	transition:  all 0.3s;
}

.popup-configurateur.active, .popup-exist-project.active{
	opacity: 1;
	pointer-events: all;
	transition:  all 0.3s;
}

.popup-configurateur .close, .popup-exist-project .close{
	position: absolute;
    left: -10%;
    top: calc(50% - 12px);
	cursor: pointer;
}

.head-popup-configurateur{
	display: flex;
	padding: 0px 175px;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	align-self: stretch;
}

.popup-configurateur h2,
.title-configurateur{
	color: #151414!important;
	text-align: center!important;
	font-size: 30px!important;
	font-style: normal!important;
	font-weight: 750!important;
	line-height: 140%!important; /* 42px */
	letter-spacing: -1.2px!important;
	margin: 0px!important;
}
.popup-configurateur h2::before,
.title-configurateur::before{
	display: none!important;
}
.popup-exist-project h2{
	color: #151414;
	text-align: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 750;
	line-height: 140%; /* 42px */
	letter-spacing: -1.2px;
	margin: 0px;
}
.text-configurateur{
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	color: #151414;
	margin: 0px;
}

.content-gamme-configurateur{
	display: flex;
	align-items: flex-start;
	gap: 22px;
}
.card-configurateur{
	width: 260px;
}
.content-img-configurateur{
    width: 100%;
    height: 130px;
	border-radius: 0px 0px 0px 0px;
	overflow: hidden;
}
.content-img-configurateur img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.content-text-configurateur{
	border-radius: 0px 0px 0px 0px;
	border: 1px solid #D9D9D9;
	display: flex;
	width: 100%;
	padding: 14px 12px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.content-text-configurateur h3,
.title-card-configurateur{
	color: #151414!important;
	text-align: center!important;
	font-size: 25px!important;
	font-style: normal!important;
	font-weight: 650!important;
	line-height: 113.4%!important;
	letter-spacing: -1px!important;
	margin: 0px!important;
}

.content-text-configurateur h3::before,
.title-card-configurateur::before{
	display: none!important;
}

.content-text-configurateur p{
	color: #151414;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0px;
}

.content-text-configurateur a{
	background: var(--wp--preset--color--red);
    color: var(--wp--preset--color--white);
	border: solid 1px var(--wp--preset--color--red);
	display: flex;
	padding: 9px 12px;
	align-items: flex-start;
	gap: 10px;
	border-radius: 0px;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	color: white;
	transition: all 0.3s;
	text-decoration: none;
}
.content-text-configurateur a:hover{
	transition: all 0.3s;
	color: var(--wp--preset--color--red) !important;
	background: white;
}
.content-btn-configurateur{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 23px;
}

.content-btn-configurateur a:first-child{
	background: var(--wp--preset--color--black);
    color: var(--wp--preset--color--white);
	border: solid 1px var(--wp--preset--color--black);
	display: flex;
	padding: 9px 12px;
	align-items: flex-start;
	gap: 10px;
	border-radius: 0px;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	transition: all 0.3s;
	text-decoration: none;
}

.content-btn-configurateur a:first-child:hover{
	transition: all 0.3s;
	color: var(--wp--preset--color--black) !important;
	background: white;
}

.content-btn-configurateur button{
	background: var(--wp--preset--color--white);
    color: var(--wp--preset--color--black);
	border: solid 1px var(--wp--preset--color--black);
	display: flex;
	padding: 9px 12px;
	align-items: flex-start;
	gap: 10px;
	border-radius: 0px;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	transition: all 0.3s;
	text-decoration: none;
}

.content-btn-configurateur button:hover{
	transition: all 0.3s;
	color: var(--wp--preset--color--white) !important;
	background: var(--wp--preset--color--black);
}

.popup-exist-project input[type="text"]{
	color: #9C9C9C;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 113.4%; /* 17.01px */
	letter-spacing: -0.6px;
	padding: 11px 10px;
	align-items: center;
	gap: 10px;
	border-radius: 0px;
	border: 1px solid #9C9C9C;
	outline: none;
	font-family: var(--wp--preset--font-family--dm-sans);
	display: flex;
	width: 342px;
	padding: 11px 10px;
	align-items: center;
	gap: 10px;
}

.popup-exist-project form,
.content-form-configurateur{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 9px;
}

#formConfigurateur{
	display: flex;
    flex-direction: column;
    align-items: center;
}

#error-message{
	color: var(--wp--preset--color--red)!important;
	font-family: var(--wp--preset--font-family--dm-sans);
    font-size: var(--wp--preset--font-size--text);
    font-weight: 400;
    line-height: var(--wp--custom--typography--line-height--text);
	margin: 0px;
}

.popup-exist-project input[type="text"]::placeholder{
	color: #9C9C9C;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 113.4%; /* 17.01px */
}

.popup-exist-project input[type="submit"]{
	background: var(--wp--preset--color--black);
    color: var(--wp--preset--color--white);
	border: solid 1px var(--wp--preset--color--black);
	display: flex;
	padding: 9px 12px;
	align-items: flex-start;
	gap: 10px;
	border-radius: 0px;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	transition: all 0.3s;
	text-decoration: none;
}
.popup-exist-project input[type="submit"]:hover{
	transition: all 0.3s;
	color: var(--wp--preset--color--black) !important;
	background: white;
}

@media screen and (min-width: 0px) and (max-width: 1020px) {
	.popup-configurateur, .popup-exist-project{
		width: 90%;
		padding: 43px 20px;
	}
	.head-popup-configurateur{
		padding: 0px;
	}
	.popup-exist-project form{
		flex-wrap: wrap;
	}
	.popup-exist-project input[type="text"]{
		width: 250px;
	}
	.card-configurateur {
		width: 244px;
		flex-shrink: 0;
	}
	.content-text-configurateur h3,
	.title-card-configurateur{
		font-size: 18px;
	}
	.smartphone-content{
		overflow: hidden;
		width: 100%;
	}
	.content-gamme-configurateur {
		overflow: scroll;
	}
}
