#stations {
    margin: 50px;
    overflow: visible;
}

#titre_map {
    display: flex;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    flex-direction: column;
}

button {
    font-family: roboto;
}

#around_me,
#return {
    margin: 10px auto;
    cursor: pointer;
    width: 130px;
    height: 30px;
    font-size: 1em;
    border: 1px solid #97732e;
    border-radius: 20px;
    background-color: #26639b;
    color: #FFF;
}

#return {
    display: none;
}

#around_me:hover,
#return:hover {
    background-color: #97732e;
    border-color: #26639b;
}

#map_container {
    display: flex;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    margin: 0 auto;
}

#map {
    height: 750px;
    width: 900px;
    margin: 30px auto;
    overflow: visible;
    border: 1px solid #26639b;
    border-radius: 20px;
}

#details_station {
    height: auto;
    width: 450px;
    margin: auto auto auto 20px;
    border: 1px solid #26639b;
    border-radius: 20px;
    text-align: center;
}

#details_station h3 {
    font-size: 1.5em;
    color: #97732e;
    text-decoration: underline;
    margin-top: 10px;
    margin-bottom: 0;
}

#details_station p {
    color: #26639b;
    margin-top: 0;
}

#bloc_details {
    text-align: left;
    margin: 40px 20px;
}

#btn_resa {
    display: none;
    margin: 0 auto 10px auto;
    cursor: pointer;
    width: 100px;
    height: 30px;
    font-size: 1em;
    border: 1px solid #97732e;
    border-radius: 20px;
    background-color: #26639b;
    color: #FFF;
}

#btn_resa:hover {
    background-color: #97732e;
    border-color: #26639b;
}

#zone_canvas {
    display: none;
}

#zone_canvas p {
    margin: 10px auto 5px auto;
    color: #97732e
}


/* Boutons "Effacer", "Annuler" et "Valider" */

#zone_canvas button {
    margin: 10px 5px;
    padding: auto;
    text-align: center;
    cursor: pointer;
    width: 80px;
    height: 30px;
    font-size: 1em;
    border: 1px solid #97732e;
    border-radius: 20px;
    background-color: #26639b;
    color: #FFF;
}

#zone_canvas button:hover {
    background-color: #97732e;
    border-color: #26639b;
}

#canvas {
    width: 280px;
    height: 150px;
    border: 5px solid #26639b;
    border-radius: 20px;
    margin: auto;
}

#info_resa {
    display: none;
}

#btn_annul_resa {
    margin: 10px 10px;
    cursor: pointer;
    width: 80px;
    height: 30px;
    font-size: 0.6em;
    border: 1px solid #FFF;
    border-radius: 20px;
    background-color: #97732e;
    color: #FFF;
}

#btn_annul_resa:hover {
    background-color: red;
}


/* --------------------------- MEDIA QUERIES MAP -------------------------- */

@media all and (max-width: 1024px) {
    #map_container {
        flex-direction: column;
    }
    #map {
        width: 100%;
        margin: 30px auto;
    }
    #details_station {
        margin: auto;
    }
    #canvas {
        margin: auto;
        width: 400px;
    }
}

@media all and (max-width: 800px) {
    #map {
        height: 600px;
    }
    #around_me {
        font-size: 0.8em;
    }
}

@media all and (max-width: 640px) {
    #map {
        height: 500px;
    }
    #details_station {
        max-width: 300px;
    }
    #canvas {
        max-width: 250px;
    }
}