.lgpd-consent-popup {
    display: flex;
    position: fixed;
    z-index: 99;
    background-color: #f7f3f3;
    padding: 10px;
    width: 100%;
    left: 0;
    bottom: 0;
    font-family: sans-serif;
    color: #333;
    font-size: 14px;
    animation: 1.8s ease lgpd-consent-popup-animation;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.lgpd-consent-popup a {
    color: #333;
    text-decoration: underline;
}
.lgpd-consent-popup p {
    width: 90%;
    max-width: 600px;
}

.lgpd-consent-popup-button {
    margin-left: 5px;
    color: #FFF;
    background-color: #333;
    padding: 6px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
}

@keyframes lgpd-consent-popup-animation {
    from {
        bottom: -100%;
    }
    to {
        bottom: 0;
    }
}