#bannerCookies {
    position: fixed;
    z-index: 999;

    width: 100%;
    /*

    */
    padding: 1rem 0;
    
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);

    background: rgba(255, 255, 255, 1.00);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.25);

    display: flex;
    justify-content: center;

    opacity: 0;
    transition: "opacity 0.25s ease-in-out";
    pointer-events: none;
}

/*
#bannerCookies {
    display: none;
}
*/



#cookieBannerConsentText {
    padding: 0 1rem;
}


#cookieBannerConsentButtons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;

    padding: 1rem;
    width: fit-content;
    margin: 0 auto;
}



#btnConfigCookies {
    background: rgba(0, 0, 0, 0.15);
    color: white;
}
#btnAcceptCookies {
    background: var(--yellow);
    color: black;
    font-weight: 600;
}

#btnConfigCookies ,
#btnAcceptCookies{
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    border: 0;
}





@media (min-width: 1551px) {
}
@media (min-width: 1151px) and (max-width: 1550px) {
}
@media (min-width: 668px) and (max-width: 1150px) {
}
@media (max-width: 667px) {
    #cookieBannerConsentButtons {
        gap: 1rem;
    }
}



@media (max-width: 337px) {
    #cookieBannerConsentButtons {
        grid-template-columns: 1fr;
    }
}