.footer-container {
    text-align: center;
    background-color: #cdb693;
}

.footer-infos-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #cdb693;
}

.loc-num-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loc-num-container img {
    width: 100%;
    height: auto;
    pointer-events: none;
}

.loc-num-container a {
    text-decoration: none;
    margin: 15px;
    padding: 10px 25px;
    font-size: 17px;
    color: #cdb693;
    border: 2px solid #cdb693;
    border-radius: 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all .4s ease-in-out;
}

.loc-num-container a:hover {
    text-decoration: underline;
    color: white;
    border: 2px solid white;
    background-color: #cdb693;
}

.social-container {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px;
}

.social-container h1 {
    font-family: "Lilita One", cursive;
    font-size: 2.5rem;
    text-align: center;
    margin: 0 20px 20px 20px;
}

.btn {
    clear: both;
    display: inline-block;
    white-space: nowrap;
    font-size: 13px;
    margin: 2px;
    border-radius: 30px;
    border-right: 5px solid #010101;
    background-color: #cdb693;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.35);
    overflow: hidden;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    transition: all .3s ease-in-out;
}

.btn:hover {
    background-color: white;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.45);
}

.btn:focus {
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
}

.btn > span,
.btn-icon > i {
    float: left;
    padding: 13px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    line-height: 1em;
}

.btn > span {
    padding:14px 18px 16px;
    white-space:nowrap;
    color:#FFF;
}

.btn:hover > span,
.btn:hover > span:hover,
.btn:hover > i ~ span {
    color: #cdb693;
}

.btn-icon > i {
    position: relative;
    width: auto;
    height: auto;
    text-align: center;
    font-size: 17px;
    border-radius: 5px 0 0 5px;
    color: #fff;
    background-color: #010101;
}

.btn-icon > i:after {
    content: "";
    position: absolute;
    top: 13px;
    right: -15px;
    border: 8px solid;
    border-color: transparent transparent transparent #010101;
}

.btn-icon:hover > i,.btn-icon:focus > i {
    color:#FFF;
}

.btn-icon > span {
    width: 110px;
    height: auto;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0 5px 5px 0;
}

.maps-container {
    position: relative;
    width: auto;
    height: auto;
    display: none;
}

.google-localisation {
    border: 5px solid white;
    border-radius: 20px;
}

.maps-placeholder {
    position: relative;
    width: 1015px;
    height: 300px;
    display: none;
    justify-items: center;
    align-content: center;
    font-size: 20px;
    padding: 20px;
    border: 5px solid white;
    border-radius: 20px;
    color: #e8eaed;
    background-color: rgb(100, 100, 100);
}

.maps-placeholder img {
    width: 45px;
    height: 45px;
}

.img-cookie-off,
.msg-attente {
    display: none;
}

.msg-refus {
    display: none;
    margin-top: 10px;
}

.maps-container.active,
.maps-placeholder.active,
.msg-refus.active,
.img-cookie-off.active,
.msg-attente.active {
    display: block;
}

.mentions-legales-lien,
.politique-confidentialite-lien {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.mentions-legales-lien:hover,
.politique-confidentialite-lien:hover {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .footer-infos-container {
        flex-direction: column;
    }

    .loc-num-container img {
        width: 90%;
        margin-bottom: 20px;
    }

    .maps-container {
        width: 100%;
    }

    .google-localisation {
        width: 90%;
        margin-top: 15px;
    }

    .maps-placeholder {
        width: 90%;
    }
}