/* Cookie banner */
.cookie-consent-banner { position: fixed; bottom: 0; left: 0; z-index: 3; box-sizing: border-box; width: 100%; display: none; background: #f8f8f8;}
.cookie-consent-banner__inner { max-width: 960px; margin: 0 auto; padding: 32px 0; }
.cookie-consent-banner__copy { margin-bottom: 16px; }
.cookie-consent-banner__header { margin-bottom: 8px; font-family: sans-serif, arial; font-weight: normal; font-size: 16px; line-height: 24px; }
.cookie-consent-banner__description { font-family: sans-serif, arial; font-weight: normal; color: #838F93; font-size: 16px; line-height: 24px; }
.btn.btn-link{
    text-decoration: none;
    color: rgb(11, 11, 11);
}

.cookie-consent-banner__actions{
    text-align: right;
}

@media only screen and (max-width: 600px) {
    .cookie-consent-banner__actions {
        width: 100%;
        display: table;
        text-align: center;
    }
     .cookie-consent-banner__actions > button.btn{
            width: 100%;
            margin-bottom: 8px;
        }
        .cookie-consent-banner__inner{
            padding: 1em;
        }
}
#cookies_btn_show_banner{
    display: block;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
}

