/*======================================================
    COOKIE CONSENT
======================================================*/

.cookie-consent{
    position:fixed;
    left:24px;
    right:24px;
    bottom:24px;
    z-index:999999;

    max-width:720px;
    margin:0 auto;

    padding:24px;

    border-radius:26px;

    background:rgba(13,13,15,.84);
    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(26px);
    -webkit-backdrop-filter:blur(26px);

    box-shadow:
        0 30px 90px rgba(0,0,0,.55),
        inset 0 1px rgba(255,255,255,.12);

    color:#fff;

    opacity:0;
    visibility:hidden;
    transform:translateY(18px);

    transition:.35s ease;
}

.cookie-consent.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.cookie-consent h3{
    margin:0 0 10px;

    color:#B87333;

    font-size:1.05rem;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.cookie-consent p{
    margin:0 0 18px;

    color:rgba(255,255,255,.76);

    font-size:.9rem;
    line-height:1.65;
}

.cookie-consent p a{
    color:#B87333;
    text-decoration:none;
}

.cookie-consent p a:hover{
    text-decoration:underline;
}

.cookie-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.cookie-btn{
    border:none;
    cursor:pointer;

    padding:12px 20px;

    border-radius:999px;

    font-size:.78rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;

    transition:.25s ease;
}

.cookie-btn.accept{
    background:#B87333;
    color:#fff;
}

.cookie-btn.necessary{
    background:rgba(255,255,255,.08);
    color:#fff;
    border:1px solid rgba(255,255,255,.14);
}

.cookie-btn:hover{
    transform:translateY(-2px);
}

@media(max-width:640px){

    .cookie-consent{
        left:14px;
        right:14px;
        bottom:14px;
        padding:22px;
        border-radius:22px;
    }

    .cookie-actions{
        flex-direction:column;
    }

    .cookie-btn{
        width:100%;
    }

}