#recontact {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    top: 0;
    display: none;
    left:0;
}

#recontact > .recontact-leave {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
#recontact .recontact-content {
    position: absolute;
    z-index: 2;
    background:  white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1110px;
    max-width: 90%;
    display: flex;
    align-items: center;
}
#recontact label{
    text-align: left;
}
#recontact .recontact-content-text  {
    padding: 20px;
    width: 100%;
}
#recontact .recontact-content-image  {
    flex: 1 0 55%;
}
#recontact .recontact-content-image img {
    height: auto;
    width: 100%;
}


@media (max-width: 767px) {
    #recontact .recontact-content-image  {
        display: none;
    }
}

#recontact .icon-croix-fermer {
    position: absolute;
    right: 20px;
    top: 20px;
    height: 24px;
    width: 24px;
    cursor: pointer;
    background: url('/themes/classic/assets/img/Icon material-close.svg') no-repeat center;
}