.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 32rem;
    background-color: #fff;
    color: #515750;
    border-radius: 1rem;
    padding: 22px;
    text-align: left;
    box-shadow: 0 4px 8rem #26292630;
    display: none;
    z-index: 9999;
}

.titulo-cookie{
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    padding-bottom: 1rem;
    color: #131313;
}

.banner-text{
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #515750;
}

.cookie-banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.close-banner {
    cursor: pointer;
    font-size: 30px;
    position: absolute;
    top: -10px;
    right: 0;
    color: #131313 !important;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
}
.cookie-buttons button, .cookie-buttons a {
    padding: 12px 18px;
    cursor: pointer;
    color: #fff;
    /* background: #e52d59; */
    border: none;
    border-radius: 4px;
    font-family: 'Open Sans';
    font-size: .9rem;
}
.cookie-buttons a {
    background: none;
    text-decoration: underline;
}

.accept-cookies{
    background: #ee4816;
}

.decline-cookies{
    background: #131313;
}

.cookie-link{
    color: #0073aa !important;
    text-decoration: underline !important;
}
.cookie-link:hover{
    color: #003a55 !important;
}

@media (max-width: 560px) {
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        max-width: 100%;
        border-radius: 1rem 1rem 0 0;
        z-index: 9999;
    }

    .cookie-buttons {
        display: flex;
        gap: 12px;
        justify-content: normal;
        align-items: normal;
        flex-direction: column;
        max-width: 100%;
    }

    .cookie-link {
        text-align: center;
    }
    
}