.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 18px;
    width: 100%;
    max-width: calc(100% - 36px);
    background: #F2F2F2;
    z-index: 9999;
    padding: 24px 24px;
    display: none;
    max-height: 100vh;
}
.cookie-banner .Container{
    max-width:1510px;
    margin:0 auto;
    width:100%;
}
.cookie-banner h4 {
    font: normal 700 20px/1.33em 'Oxygen',sans-serif;
    color: var(--color--bleu-energie);
    margin: 0;
}
.cookie-banner p {
    font: normal 400 16px/1.5em 'Oxygen',sans-serif;
    color: #333333;
    margin: 16px 0;
}
.cookie-banner p a:not(.btn) {
    color: #333333;
    font-weight:700;
    text-decoration: underline;
}
.cookie-banner .btn{
    background:var(--color--bleu-energie);
    color:#fff;
    text-transform: uppercase;
    text-decoration: none;
    display:inline-flex;
    height:49px;
    padding:0 32px;
    align-items: center;
    border-radius: var(--border-radius--button);
    font: normal 700 16px/1.5em 'Oxygen',sans-serif;
}
.cookie-banner .btn:hover{
    background: var(--color--noir-bleute);
}
body.showCookieBar .cookie-banner {
    display: block;
}
