
.nb-cookie-banner{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:99999;
    padding:12px 14px;
    padding-bottom:max(12px,env(safe-area-inset-bottom,0px));
    background:rgba(5,11,17,.98);
    border-top:1px solid #26384a;
    box-shadow:0 -10px 30px rgba(0,0,0,.35);
}
.nb-cookie-banner[hidden]{display:none!important}
.nb-cookie-inner{
    width:min(1180px,calc(100% - 20px));
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}
.nb-cookie-copy{max-width:780px}
.nb-cookie-copy strong{
    display:block;
    color:#fff;
    font-size:15px;
    margin-bottom:3px;
}
.nb-cookie-copy p{
    margin:0 0 4px;
    color:#aebdca;
    font-size:13px;
    line-height:1.45;
}
.nb-cookie-copy a{
    color:#dbe7ef;
    font-size:12px;
}
.nb-cookie-actions{
    display:flex;
    flex:0 0 auto;
    gap:8px;
}
.nb-cookie-actions .btn{
    min-height:42px;
    white-space:nowrap;
}
@media(max-width:720px){
    .nb-cookie-inner{
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:9px;
    }
    .nb-cookie-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
    }
    .nb-cookie-actions .btn{
        width:100%;
        white-space:normal;
    }
}
@media(max-width:390px){
    .nb-cookie-actions{grid-template-columns:1fr}
}
