.edc_resultats_container {
    display: flex;
    align-items: flex-start;
    margin-bottom: -200px;
}

.edc_resultats_text {
    background-image: linear-gradient(90deg,#0044c3,#002399);
    text-align: left;
    padding: 20px 80px 50px 130px;
    border-radius: 15px;
    flex: 1;
}

.edc_resultats_subtitle, .edc_resultats_listing {
    color:white;
}

.edc_resultats_text .alignleft {
    text-align: left;
}

.edc_resultats_subtitle {
    margin-top: 10px;
}

.edc_resultats_listing {
    padding: 10px 0;
    text-align: justify;
}

.edc_resultats_item {
    display: block !important;
}

.edc_resultats_item::before {
    -webkit-mask: url('/wp-content/uploads/2023/04/list_check.svg') no-repeat !important;
    mask: url('/wp-content/uploads/2023/04/list_check.svg') no-repeat !important;
    background-color: var(--color_vert1) !important;
    width: 40px !important;
}

.edc_resultats_image {
    z-index: 2;
    margin-right: -80px;
    margin-top: 115px;
    opacity: 0;
    transform: scale(0.9);
    transition: 0.7s;
}

.edc_resultats_image.animated {
    opacity: 1;
    transform: scale(1);
}

.edc_resultats_image img {
    max-height: 650px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);
}

.edc_resultats_item.liste_puce_check::after {
    background-color: var(--color_vert1) !important;
}



@media screen and (max-width: 991px) {

    .edc_resultats_image img {
        max-width: 300px;
    }

    .edc_resultats_image {
        margin-top: 70px;
    }

}

@media screen and (max-width: 767px) {

    .edc_resultats_container {
        flex-wrap: wrap;
    }

    .edc_resultats_text {
        width: 100%;
        flex: unset;
        padding-left: 30px;
    }

    .edc_resultats_image {
        margin-top: -20px;
        margin-left: 20px;
        margin-bottom: -50px;
    }

    .edc_resultats_text {
        padding-top: 50px;
    }

}

@media screen and (max-width: 480px) {

    .edc_resultats_container {
        justify-content: center;
    }

    .edc_resultats_image {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

}