.cookie-banner{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.55);
    z-index:999999;
}

.cookie-box{

    width:90%;
    max-width:520px;

    background:#fff;

    border-radius:16px;

    padding:35px;

    box-shadow:0 15px 45px rgba(0,0,0,.25);

    text-align:center;

    font-family:Gabarito,sans-serif;

}

.cookie-box h2{

    margin-top:0;

    color:#253757;

}

.cookie-box p{

    color:#555;

    line-height:1.6;

}

.cookie-box a{

    color:#2060f6;

    font-weight:600;

    text-decoration:none;

}

.cookie-buttons{

    margin-top:30px;

    display:flex;

    gap:15px;

    justify-content:center;

    flex-wrap:wrap;

}

.cookie-buttons button{

    border:none;

    padding:14px 28px;

    border-radius:10px;

    cursor:pointer;

    font-size:16px;

    transition:.25s;

}

#acceptCookies{

    background:#2060f6;

    color:white;

}

#acceptCookies:hover{

    background:#1748ba;

}

#declineCookies{

    background:#ececec;

}

#declineCookies:hover{

    background:#d8d8d8;

}