.contact-form-block {
	padding-top: var(--contact-form-mt-mobile, 0);
	padding-bottom: var(--contact-form-mb-mobile, 0);
	display: flex;
    flex-direction: column;
	width: 100%;
    min-height: 100vh;
    background: radial-gradient(50% 50% at 50% 50%, #1F2946 0%, #121730 100%);
    align-items: center;
    justify-content: center;
}

@media (min-width: 851px) {
	.contact-form-block {
		padding-top: var(--contact-form-mt-desktop, 0);
		padding-bottom: var(--contact-form-mb-desktop, 0);
	}
}
.contact-inner{
    display: flex;
    width: 100%;
    padding: 0 var(--gutters);
    justify-content: space-between;
}
.contact-form-wrapper, .contact-form-info{
    display: flex;
    flex-direction: column;
    width: 45%;
}
.contact-form-wrapper .contact-form-text{
    padding-bottom: 2rem;
}
.contact-form-line{
    display: flex;
    width: 5%;
    position: relative;
}
.contact-form-line::before{
    content: '';
    display: flex;
    width: 1px;
    height: 100%;
    background-color: var(--wp--preset--color--white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(5deg);
}

.contact-form-info .inpool-btn{
    margin-top: 2rem;
}

.contact-form-label-wrapper{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2rem;
}
.contact-form-label{
    color: var(--wp--preset--color--bleu-inpool);
    font-size: 16px;
    font-weight: 600;
    line-height: 24.517px; 
}
.contact-form-phone, .contact-form-horraires{
    color: var(--wp--preset--color--beige);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    margin: 0;
}
.contact-form{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.contact-wrapper{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.contact-label{
    display: flex;
    flex-direction: column;
    width: 48%;
    color: var(--wp--preset--color--beige)!important;
}
.contact-label-title p{
    color: var(--wp--preset--color--beige);
    font-size: 16px;
    font-weight: 600;
    line-height: 24.517px;
    margin: 0 0 0.5rem 0;
}
.contact-label p{
    display: flex;
    width: 100%;
    color: var(--wp--preset--color--beige);
}
.wpcf7-form-control-wrap{
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--wp--preset--color--beige);
}
.wpcf7-form-control-wrap input{
    display: flex;
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--wp--preset--color--beige);
    color: var(--wp--preset--color--beige)!important;
}
.contact-wrapper.message{
    flex-direction: column;
}
.textarea-container{
    display: flex;
    width: 100%;
    margin-top: 1rem;
}
.contact-form-block textarea{
    display: flex;
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--wp--preset--color--beige);
    color: var(--wp--preset--color--beige);
}
button.inpool-btn{
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--wp--preset--color--bleu-fonce);
    line-height: 1;
    padding: 0;
    display: flex;
}
button.inpool-btn:hover{
    cursor: pointer;
}
button.inpool-btn p{
    margin: 0;
}
.wpcf7-response-output{
    color: red;
}
.contact-form-mobile-btn{
    display: none;
}
@media (max-width: 576px) {
    .contact-inner{
        flex-direction: column;
        gap: 1rem;
    }
    .contact-form-wrapper, .contact-form-info{
        width: 100%;
    }
    .contact-form-line{
        display: none;
    }
    .contact-form-info .contact-form-text{
        display: none;
    }
    .contact-form-info .inpool-btn{
        display: none;
    }
    .contact-form-mobile-btn{
        display: flex;
        justify-content: center;
        padding: 0 var(--gutters);
    }
    .contact-form-mobile-btn .contact-form-link{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 1rem;
        background-color: var(--wp--preset--color--bleu-inpool);
        color: var(--wp--preset--color--background);
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 40px;
        text-align: center;
    }
}