/* START hero*/
.hero {
    height: 60vh;
}

.hero .uniformSpacing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media screen and (max-width:850px){
    .hero {
        height: auto;
        min-height: 70vh;
    }
}
/* END hero*/

/* START listingMap */
.listingMap .uniformSpacing{
    display: flex;
    max-height: 80vh;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: var(--basicRadius);
}

.listingMap .uniformSpacing .maps{
    width: 70%;
}

.listingMap .uniformSpacing .listingEntreprise{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 2.5em;
    border-top-left-radius: var(--basicRadius);
    border-bottom-left-radius: var(--basicRadius);
    padding: 1.5em 2.5em;
    max-height: 80vh;
    overflow-y: auto;
}

.listingMap .listingEntreprise .element{
    display: flex;
    gap: 1em;
}

.listingMap .listingEntreprise .element img{
    width: 2em;
    height: 2em;
}


.listingMap .listingEntreprise .element > div{
    display: flex;
    flex-direction: column;
    gap: .75em;
}

.listingMap .listingEntreprise .element > div .horaire{
    display: flex;
    flex-direction: column;
    gap: .2em;
}

.listingMap .maps #map {
    width: 100%;
    height: 100%;
    border-bottom-right-radius: var(--basicRadius);
    border-top-right-radius: var(--basicRadius);
}

.listingMap .maps #map .custom-marker {
    background-image: url('/pages/restaurants/upload/original/pins-map-mexi-kebab.png'); /* icône de ton choix */
    background-size: cover;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}
@media screen and (max-width:1300px){
    .listingMap .listingEntreprise .element{
        flex-direction: column;
    }

    .listingMap .uniformSpacing .listingEntreprise{
        padding: 1.5em 1.5em;
    }
}


@media screen and (max-width:800px){
    .listingMap .uniformSpacing{
        flex-direction: column;
    }
    .listingMap .uniformSpacing .listingEntreprise,
    .listingMap .uniformSpacing .maps{
        width: 100%;
    }

    .listingMap .uniformSpacing{
        max-height: 90vh;
    }

    .listingMap .uniformSpacing .listingEntreprise{
        max-height: 40vh;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .listingMap .uniformSpacing .maps{
        height: 50vh;
    }

    .listingMap .maps #map{
        border-radius: var(--basicRadius);
    }

    .listingMap .listingEntreprise .element{
        flex-direction: row;
        width: calc((100% - 2.5em) / 2);
    }
}

@media screen and (max-width:550px){
    .listingMap .listingEntreprise .element{
        flex-direction: row;
        width: 100%;
    }
}


/* END listingMap */
