/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.containerLocalisation {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
    margin: auto;
}

.text-sectionLocalisation h3 {
    font-size: 1.5em;
    font-weight: 500;
    margin-top: 0.75em;
    margin-bottom: 0em;
}

.text-sectionLocalisation {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.mapLocalisation {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-height: 1000px;
}

.mapLocalisation iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .containerLocalisation {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 1rem;
    }

    .mapLocalisation {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        height: 400px !important; /* <--- Forcé */
        max-height: none;
        -webkit-box-flex: 0;
            -ms-flex: none;
                flex: none;
    }

    .mapLocalisation iframe {
        height: 100% !important; /* <--- Forcé ici aussi */
        display: block;
    }

    .text-sectionLocalisation {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
}