#map {
    width: 100%;
    height: 500px;
}

/*
.distributeurs{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-content: center;
}
*/

.distributeur{
    background-color: #DDA02C;
    transition: 0.5s all ease;
    cursor: pointer;
    padding: 30px 20px;
    margin-bottom: 15px;
    text-align: center;
}

.distributeur div{
    font-family: "Poppins";
    font-size: 14px;
    font-weight: normal;
    color: #fff;
}
.distributeur .nom{
    text-transform: uppercase;
}
.distributeur.show .nom{
    color: black;
    margin-bottom: 10px;
}
.distributeur div a{
    color: #fff;
    text-decoration: none;
}
.distributeur div a:hover{
    text-decoration: underline;
}
.distributeur .description{
    margin-top: 10px;
    color: black;
    display: block;
}

/* masque les textes et on les affiche au clic */
.distributeur{
    background-color: rgba(221, 160, 44, 0.6);
}
.distributeur:hover, .distributeur.show{
    background-color: #DDA02C;
}
.distributeur .texte{
    display: none;
    transition: 0.5s all ease;
}

#map-footer {
    width: 100%;
    height: 244px;
    border-radius: 30px;
}

.gm-ui-hover-effect {
    display: none !important;
}