footer {
    font-size: 80%;
    border-top: 1px solid #aaa;
    padding-top: 2em;


    .footer-titre {
        font-size:150%;
        font-weight: bold;
    }
    .nav-label, .menuselected {
        font-weight: normal;
    }
    .nav-transport{
        .nav-tabs{
            display:flex;
            flex-direction: row;
            align-items: center;
            justify-content: left;
            .active{
                background-color: var(--main-color);
            }
        }
    }
    .tab-pane{
            display : block;
    }
    .tab-pane[hidden] { display: none; }
    .footer-organisation {
        text-transform: uppercase;
        
    }
    .icon{
        width: 50px;
        height: 50px;
        margin-right: 8px;
    }
    .logo-partenaire{
        max-width: 180px;
        max-height: 100px;
        object-fit: contain;
    }
    .logopartenaires {
        padding-top: 2em;
    }
    a{
        cursor: pointer;
        color:black
    }
    a:hover{
        cursor: pointer;
        color:var(--main-color)
    }
    .footer-block {
        padding: 1.5em 1em;
        border-bottom: 1px solid #aaa;
    }   
    .footer-distances {
        padding-left:0;
        li {
            list-style: none;
        }
    }
    .footer-rs {
        padding-top:1.5em;
    }
    .subfooter {
        text-align: center;
        padding: 1em 0;
    }
    .footer-block > div > div >  ul > li {
        list-style: none;
    }
    @media screen and (min-width: 768px) {
        .footer{
            display : grid;
            grid-template-columns: repeat(4, 1fr);
            
        }
    }
    
}
/* cookie consent */
.cookie-modal {
    position: fixed;
    z-index: 9999;
    left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 100vh;
}
.cookie-modal__content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.cookie-modal__actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-around;
}
.cookie-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.05em;
}
.cookie-btn--accept { background: #4caf50; color: #000; }
.cookie-btn--refuse { background: #f44336; color: #000; }