#lgpd-container {
    padding: 0;
    z-index: 99999;
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.lgpd-elements {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 15px 30px;
    margin: 0 auto;
}

.lgpd-texto {
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue", sans-serif;
}

.lgpd-area-botoes {
    display: flex;
    margin-left: 10px;
}

.lgpd-area-botoes a {
    cursor: pointer;
    font-size: 13px;
    font-weight: 400px;
    border-radius: 3px;
    text-decoration: none;
    outline: none;
    font-family: -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue", sans-serif;
    padding: 8.5px 10px;
    color: inherit;
    white-space: nowrap;
    height: auto;
}

.lgpd-area-botoes a+a {
    margin-left: 10px;
}

@media screen and (max-width: 800px) {
    .lgpd-elements {
        flex-direction: column;
    }

    .lgpd-area-botoes {
        margin: 10px 0 0 0;
    }
}

@media screen and (max-width: 300px) {
    .lgpd-area-botoes {
        flex-direction: column;
        margin: 0;
        width: 100%;
    }

    .lgpd-area-botoes a {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin: 10px 0 0 0 !important;
    }
}