.cookie-consent[hidden],
.cookie-preferences[hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;

    background: #ffffff;
    border-top: 1px solid #dddddd;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);
}

.cookie-consent__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-consent__content {
    flex: 1;
}

.cookie-consent__content h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.cookie-consent__content p {
    margin: 5px 0;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-consent button,
.cookie-preferences button {
    cursor: pointer;
    padding: 10px 16px;
    border: 1px solid #555555;
    background: #ffffff;
    font: inherit;
}

#cookie-accept-all,
#cookie-save-preferences {
    background: #f08300;
    border-color: #f08300;
    color: #ffffff;
}


/* Preferências */

.cookie-preferences {
    position: fixed;
    z-index: 100000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 20px;

    background: rgba(0, 0, 0, 0.55);

    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-preferences__dialog {
    position: relative;

    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;

    background: #ffffff;
    padding: 30px;
}

.cookie-preferences__close {
    position: absolute;
    right: 15px;
    top: 15px;

    border: 0 !important;
    padding: 5px 10px !important;
    font-size: 24px !important;
}

.cookie-preferences__option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    padding: 20px 0;
    border-bottom: 1px solid #dddddd;
}

.cookie-preferences__option p {
    margin: 5px 0 0;
}

.cookie-preferences__buttons {
    margin-top: 25px;
    text-align: right;
}


@media (max-width: 800px) {

    .cookie-consent__inner {
        display: block;
    }

    .cookie-consent__actions {
        margin-top: 15px;
    }

    .cookie-consent__actions button {
        width: 100%;
    }

}